PterodactylSyntax: add license headers

+4
Sources/PterodactylSyntax/Cursor.swift
···
+
// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
+
//
+
// SPDX-License-Identifier: MPL-2.0
+
import Foundation
public struct Cursor: Sendable {
+4
Sources/PterodactylSyntax/SyntaxTree.swift
···
+
// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
+
//
+
// SPDX-License-Identifier: MPL-2.0
+
import Foundation
public struct SyntaxTree: Codable, Sendable {
+4
Sources/PterodactylSyntax/Token.swift
···
+
// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
+
//
+
// SPDX-License-Identifier: MPL-2.0
+
import Foundation
public struct Token: Codable {
+4
Sources/PterodactylSyntax/Types.swift
···
+
// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
+
//
+
// SPDX-License-Identifier: MPL-2.0
+
import Foundation
public enum TokenKind: Codable, Equatable, Sendable {
+4
Sources/PterodactylSyntax/Utf16Position.swift
···
+
// SPDX-FileCopyrightText: 2025 The Project Pterodactyl Developers
+
//
+
// SPDX-License-Identifier: MPL-2.0
+
import Foundation
public struct Utf16Position: Equatable, Comparable, Sendable {