this repo has no description
www.jonmsterling.com/01HC/
1import Foundation
2
3public struct Token: Codable {
4 public let kind: TokenKind
5 public let text: String
6 public let utf16Length: Int
7
8 init(kind: TokenKind, text: String) {
9 self.kind = kind
10 self.text = text
11 self.utf16Length = text.utf16.count
12 }
13}
14
15extension Token: Sendable {}