this repo has no description
www.jonmsterling.com/01HC/
1// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
2//
3// SPDX-License-Identifier: MPL-2.0
4
5import Foundation
6
7public enum TokenKind: Codable, Equatable, Sendable {
8 case eof
9}
10
11public enum SyntaxTreeKind: Codable, Equatable, Sendable {
12 case error
13}
14
15public struct TokenMetadata: Codable, Equatable, Sendable {
16}
17
18public struct SyntaxTreeMetadata: Codable, Equatable, Sendable {
19
20}