// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers // // SPDX-License-Identifier: MPL-2.0 import Foundation public enum TokenKind: Codable, Equatable, Sendable { case eof } public enum SyntaxTreeKind: Codable, Equatable, Sendable { case error } public struct TokenMetadata: Codable, Equatable, Sendable { } public struct SyntaxTreeMetadata: Codable, Equatable, Sendable { }