From ede76df1cf34f9ed776cfb8051ac58fe1cd09f38 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 15:03:31 -0400 Subject: [PATCH 1/9] Migrate from Mint to mise for tool management [ci skip] Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/SyntaxKit.yml | 24 +++------------------- .mise.toml | 4 ++++ Mintfile | 3 --- Scripts/lint.sh | 36 ++++++++------------------------- 4 files changed, 15 insertions(+), 52 deletions(-) create mode 100644 .mise.toml delete mode 100644 Mintfile diff --git a/.github/workflows/SyntaxKit.yml b/.github/workflows/SyntaxKit.yml index 9df2099c..dfe2e1c1 100644 --- a/.github/workflows/SyntaxKit.yml +++ b/.github/workflows/SyntaxKit.yml @@ -306,31 +306,13 @@ jobs: # build-windows, build-macos-full, and build-android are skipped on feature branches; # !failure() allows this job to proceed past skipped (not failed) dependencies. if: ${{ !cancelled() && !failure() && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }} - runs-on: ubuntu-latest + runs-on: macos-latest needs: [build-ubuntu, build-macos, build-windows, build-macos-full, build-android] - env: - MINT_PATH: .mint/lib - MINT_LINK_PATH: .mint/bin steps: - uses: actions/checkout@v6 - - name: Cache mint - id: cache-mint - uses: actions/cache@v5 - env: - cache-name: cache + - uses: jdx/mise-action@v4 with: - path: | - .mint - Mint - key: ${{ runner.os }}-mint-${{ hashFiles('**/Mintfile') }} - restore-keys: | - ${{ runner.os }}-mint- - - name: Install mint - if: steps.cache-mint.outputs.cache-hit == '' - run: | - git clone https://github.com/yonaskolb/Mint.git - cd Mint - swift run mint install yonaskolb/mint + cache: true - name: Lint run: ./Scripts/lint.sh diff --git a/.mise.toml b/.mise.toml new file mode 100644 index 00000000..45b0a185 --- /dev/null +++ b/.mise.toml @@ -0,0 +1,4 @@ +[tools] +swiftlint = "latest" +periphery = "latest" +swift-format = "latest" diff --git a/Mintfile b/Mintfile deleted file mode 100644 index 43865374..00000000 --- a/Mintfile +++ /dev/null @@ -1,3 +0,0 @@ -swiftlang/swift-format@600.0.0 -realm/SwiftLint@0.58.2 -peripheryapp/periphery@3.0.1 diff --git a/Scripts/lint.sh b/Scripts/lint.sh index fea08ac8..366aecaf 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -27,57 +27,37 @@ else PACKAGE_DIR="${SRCROOT}" fi -# Detect OS and set paths accordingly -if [ "$(uname)" = "Darwin" ]; then - DEFAULT_MINT_PATH="/opt/homebrew/bin/mint" -elif [ "$(uname)" = "Linux" ] && [ -n "$GITHUB_ACTIONS" ]; then - DEFAULT_MINT_PATH="$GITHUB_WORKSPACE/Mint/.mint/bin/mint" -elif [ "$(uname)" = "Linux" ]; then - DEFAULT_MINT_PATH="/usr/local/bin/mint" -else - echo "Unsupported operating system" - exit 1 -fi - -# Use environment MINT_CMD if set, otherwise use default path -MINT_CMD=${MINT_CMD:-$DEFAULT_MINT_PATH} - -export MINT_PATH="$PACKAGE_DIR/.mint" -MINT_ARGS="-n -m $PACKAGE_DIR/Mintfile --silent" -MINT_RUN="$MINT_CMD run $MINT_ARGS" - if [ "$LINT_MODE" = "NONE" ]; then exit elif [ "$LINT_MODE" = "STRICT" ]; then SWIFTFORMAT_OPTIONS="--strict --configuration .swift-format" SWIFTLINT_OPTIONS="--strict" STRINGSLINT_OPTIONS="--config .strict.stringslint.yml" -else +else SWIFTFORMAT_OPTIONS="--configuration .swift-format" SWIFTLINT_OPTIONS="" STRINGSLINT_OPTIONS="--config .stringslint.yml" fi pushd $PACKAGE_DIR -run_command $MINT_CMD bootstrap -m Mintfile if [ -z "$CI" ]; then - run_command $MINT_RUN swift-format format $SWIFTFORMAT_OPTIONS --recursive --parallel --in-place Sources Tests - run_command $MINT_RUN swiftlint --fix + run_command swift-format format $SWIFTFORMAT_OPTIONS --recursive --parallel --in-place Sources Tests + run_command swiftlint --fix fi if [ -z "$FORMAT_ONLY" ]; then - run_command $MINT_RUN swift-format lint --configuration .swift-format --recursive --parallel $SWIFTFORMAT_OPTIONS Sources Tests - run_command $MINT_RUN swiftlint lint $SWIFTLINT_OPTIONS + run_command swift-format lint --configuration .swift-format --recursive --parallel $SWIFTFORMAT_OPTIONS Sources Tests + run_command swiftlint lint $SWIFTLINT_OPTIONS fi $PACKAGE_DIR/Scripts/header.sh -d $PACKAGE_DIR/Sources -c "Leo Dion" -o "BrightDigit" -p "SyntaxKit" -run_command $MINT_RUN swiftlint lint $SWIFTLINT_OPTIONS -run_command $MINT_RUN swift-format lint --recursive --parallel $SWIFTFORMAT_OPTIONS Sources Tests +run_command swiftlint lint $SWIFTLINT_OPTIONS +run_command swift-format lint --recursive --parallel $SWIFTFORMAT_OPTIONS Sources Tests if [ -z "$CI" ]; then - run_command $MINT_RUN periphery scan $PERIPHERY_OPTIONS --disable-update-check + run_command periphery scan $PERIPHERY_OPTIONS --disable-update-check fi From 31fea1a4475c5ccf10c03cbfaa87126a93a45483 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 15:40:08 -0400 Subject: [PATCH 2/9] Address PR feedback: pin versions, fix registries, restore ubuntu runner [ci skip] Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/SyntaxKit.yml | 2 +- .mise.toml | 6 +++--- Scripts/lint.sh | 1 + 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/SyntaxKit.yml b/.github/workflows/SyntaxKit.yml index dfe2e1c1..798806b4 100644 --- a/.github/workflows/SyntaxKit.yml +++ b/.github/workflows/SyntaxKit.yml @@ -306,7 +306,7 @@ jobs: # build-windows, build-macos-full, and build-android are skipped on feature branches; # !failure() allows this job to proceed past skipped (not failed) dependencies. if: ${{ !cancelled() && !failure() && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }} - runs-on: macos-latest + runs-on: ubuntu-latest needs: [build-ubuntu, build-macos, build-windows, build-macos-full, build-android] steps: - uses: actions/checkout@v6 diff --git a/.mise.toml b/.mise.toml index 45b0a185..599c750d 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,4 +1,4 @@ [tools] -swiftlint = "latest" -periphery = "latest" -swift-format = "latest" +swiftlint = "0.63.2" +periphery = "3.7.2" +"asdf:eelcokoelewijn/asdf-swift-format" = "602.0.0" diff --git a/Scripts/lint.sh b/Scripts/lint.sh index 366aecaf..f0dd740f 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -40,6 +40,7 @@ else fi pushd $PACKAGE_DIR +mise install if [ -z "$CI" ]; then run_command swift-format format $SWIFTFORMAT_OPTIONS --recursive --parallel --in-place Sources Tests From e7ce1abee418082391b0d342b7d5f870cbb69902 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 16:37:42 -0400 Subject: [PATCH 3/9] Activate mise env in lint.sh so tools are on PATH Co-Authored-By: Claude Sonnet 4.6 --- Scripts/lint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/Scripts/lint.sh b/Scripts/lint.sh index f0dd740f..ac3974ad 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -41,6 +41,7 @@ fi pushd $PACKAGE_DIR mise install +eval "$(mise env)" if [ -z "$CI" ]; then run_command swift-format format $SWIFTFORMAT_OPTIONS --recursive --parallel --in-place Sources Tests From 6f540306fc43132beb5e22dbebcfccdbbdd8818e Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 16:40:02 -0400 Subject: [PATCH 4/9] Skip mise install in CI and apply formatting fixes Co-Authored-By: Claude Sonnet 4.6 --- Scripts/lint.sh | 4 +++- Sources/DocumentationHarness/CodeBlock.swift | 2 +- Sources/DocumentationHarness/CodeBlockExtraction.swift | 2 +- Sources/DocumentationHarness/CodeBlockExtractor.swift | 5 +++-- Sources/DocumentationHarness/CodeBlockExtractorError.swift | 2 +- Sources/DocumentationHarness/CodeBlockType.swift | 2 +- .../DocumentationHarness/CodeBlockValidationParameters.swift | 2 +- Sources/DocumentationHarness/CodeSyntaxValidator.swift | 2 +- Sources/DocumentationHarness/CompilationResult.swift | 2 +- Sources/DocumentationHarness/DocumentationValidator.swift | 2 +- Sources/DocumentationHarness/FileManager+Documentation.swift | 2 +- Sources/DocumentationHarness/FileSearchError.swift | 2 +- Sources/DocumentationHarness/FileSearcher.swift | 2 +- Sources/DocumentationHarness/PackageValidator.swift | 2 +- Sources/DocumentationHarness/SyntaxValidator.swift | 2 +- Sources/DocumentationHarness/TestType.swift | 2 +- Sources/DocumentationHarness/ValidationError.swift | 2 +- Sources/DocumentationHarness/ValidationParameters.swift | 2 +- Sources/DocumentationHarness/ValidationResult.swift | 2 +- Sources/DocumentationHarness/Validator.swift | 2 +- Sources/SyntaxKit/Attributes/Attribute.swift | 2 +- Sources/SyntaxKit/Attributes/AttributeInfo.swift | 2 +- Sources/SyntaxKit/Attributes/Trivia+Comments.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift | 2 +- Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift | 2 +- Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift | 2 +- Sources/SyntaxKit/Collections/Array+LiteralValue.swift | 2 +- Sources/SyntaxKit/Collections/ArrayLiteral.swift | 2 +- .../SyntaxKit/Collections/CodeBlock+DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift | 2 +- Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryExpr.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryLiteral.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/PatternCodeBlock.swift | 2 +- .../SyntaxKit/Collections/PatternConvertableCollection.swift | 2 +- Sources/SyntaxKit/Collections/Tuple.swift | 2 +- Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift | 2 +- Sources/SyntaxKit/Collections/TupleAssignment.swift | 2 +- Sources/SyntaxKit/Collections/TupleLiteralArray.swift | 2 +- Sources/SyntaxKit/Collections/TuplePattern.swift | 2 +- Sources/SyntaxKit/ControlFlow/Do.swift | 2 +- Sources/SyntaxKit/ControlFlow/For.swift | 2 +- Sources/SyntaxKit/ControlFlow/Guard.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+Body.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+Conditions.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+ElseBody.swift | 2 +- Sources/SyntaxKit/ControlFlow/If.swift | 2 +- Sources/SyntaxKit/ControlFlow/Switch.swift | 2 +- Sources/SyntaxKit/ControlFlow/SwitchCase.swift | 2 +- Sources/SyntaxKit/ControlFlow/SwitchLet.swift | 2 +- Sources/SyntaxKit/ControlFlow/While.swift | 2 +- Sources/SyntaxKit/Core/AccessModifier.swift | 2 +- Sources/SyntaxKit/Core/CaptureReferenceType.swift | 2 +- Sources/SyntaxKit/Core/CodeBlock.swift | 2 +- Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift | 2 +- Sources/SyntaxKit/Core/Keyword+AccessModifier.swift | 2 +- Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift | 2 +- Sources/SyntaxKit/Core/Line+Trivia.swift | 2 +- Sources/SyntaxKit/Core/Line.swift | 2 +- Sources/SyntaxKit/Core/PatternConvertible.swift | 2 +- Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift | 2 +- Sources/SyntaxKit/Core/String+TypeRepresentable.swift | 2 +- Sources/SyntaxKit/Core/TypeRepresentable.swift | 2 +- Sources/SyntaxKit/Declarations/Class.swift | 2 +- Sources/SyntaxKit/Declarations/Enum.swift | 2 +- Sources/SyntaxKit/Declarations/Extension.swift | 2 +- Sources/SyntaxKit/Declarations/Import.swift | 2 +- Sources/SyntaxKit/Declarations/Init.swift | 2 +- Sources/SyntaxKit/Declarations/Protocol.swift | 2 +- Sources/SyntaxKit/Declarations/Struct+Public.swift | 2 +- Sources/SyntaxKit/Declarations/Struct.swift | 2 +- Sources/SyntaxKit/Declarations/TypeAlias.swift | 2 +- .../Tutorials/Resources/QuickStartDemo.swift | 2 +- Sources/SyntaxKit/ErrorHandling/Catch.swift | 2 +- Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift | 2 +- Sources/SyntaxKit/ErrorHandling/Throw.swift | 2 +- Sources/SyntaxKit/Expressions/Assignment.swift | 2 +- Sources/SyntaxKit/Expressions/Call.swift | 2 +- Sources/SyntaxKit/Expressions/CaptureInfo.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Body.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Capture.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Signature.swift | 2 +- Sources/SyntaxKit/Expressions/Closure.swift | 2 +- Sources/SyntaxKit/Expressions/ClosureParameter.swift | 2 +- .../Expressions/ClosureParameterBuilderResult.swift | 2 +- Sources/SyntaxKit/Expressions/ClosureType.swift | 2 +- Sources/SyntaxKit/Expressions/ConditionalOp.swift | 2 +- Sources/SyntaxKit/Expressions/FunctionCallExp.swift | 2 +- Sources/SyntaxKit/Expressions/Infix+Comparison.swift | 2 +- Sources/SyntaxKit/Expressions/Infix.swift | 2 +- Sources/SyntaxKit/Expressions/Literal+Convenience.swift | 2 +- Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift | 2 +- .../SyntaxKit/Expressions/Literal+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Expressions/Literal.swift | 2 +- Sources/SyntaxKit/Expressions/LiteralValue.swift | 2 +- Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift | 2 +- Sources/SyntaxKit/Expressions/OptionalChainingExp.swift | 2 +- Sources/SyntaxKit/Expressions/PlusAssign.swift | 2 +- Sources/SyntaxKit/Expressions/PropertyAccessExp.swift | 2 +- Sources/SyntaxKit/Expressions/PropertyAccessible.swift | 2 +- Sources/SyntaxKit/Expressions/ReferenceExp.swift | 2 +- Sources/SyntaxKit/Expressions/Return.swift | 2 +- Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift | 2 +- Sources/SyntaxKit/Functions/Function+Effects.swift | 2 +- Sources/SyntaxKit/Functions/Function+Modifiers.swift | 2 +- Sources/SyntaxKit/Functions/Function+Syntax.swift | 2 +- Sources/SyntaxKit/Functions/Function.swift | 2 +- .../SyntaxKit/Functions/FunctionParameterSyntax+Init.swift | 2 +- Sources/SyntaxKit/Functions/FunctionRequirement.swift | 2 +- Sources/SyntaxKit/Parameters/Parameter.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterExp.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift | 2 +- Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Patterns/LetBindingPattern.swift | 2 +- Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Patterns/String+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Utilities/Break.swift | 2 +- Sources/SyntaxKit/Utilities/Case.swift | 2 +- Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift | 2 +- Sources/SyntaxKit/Utilities/CodeBlockable.swift | 2 +- Sources/SyntaxKit/Utilities/CommentBuilderResult.swift | 2 +- Sources/SyntaxKit/Utilities/Continue.swift | 2 +- Sources/SyntaxKit/Utilities/Default.swift | 2 +- Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift | 2 +- Sources/SyntaxKit/Utilities/EnumCase.swift | 2 +- Sources/SyntaxKit/Utilities/Fallthrough.swift | 2 +- Sources/SyntaxKit/Utilities/Group.swift | 2 +- Sources/SyntaxKit/Utilities/Let.swift | 2 +- Sources/SyntaxKit/Utilities/Parenthesized.swift | 2 +- Sources/SyntaxKit/Utilities/PropertyRequirement.swift | 2 +- Sources/SyntaxKit/Utilities/Then.swift | 2 +- Sources/SyntaxKit/Variables/AttributeArguments.swift | 2 +- Sources/SyntaxKit/Variables/ComputedProperty.swift | 2 +- Sources/SyntaxKit/Variables/Variable+Attributes.swift | 2 +- .../SyntaxKit/Variables/Variable+LiteralInitializers.swift | 2 +- Sources/SyntaxKit/Variables/Variable+Modifiers.swift | 2 +- Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift | 2 +- Sources/SyntaxKit/Variables/Variable.swift | 2 +- Sources/SyntaxKit/Variables/VariableExp.swift | 2 +- Sources/SyntaxKit/Variables/VariableKind.swift | 2 +- Sources/SyntaxParser/SourceRange.swift | 2 +- Sources/SyntaxParser/SyntaxParser.swift | 2 +- Sources/SyntaxParser/SyntaxResponse.swift | 2 +- Sources/SyntaxParser/TreeNode.swift | 2 +- Sources/TokenVisitor/String.swift | 2 +- Sources/TokenVisitor/StructureProperty.swift | 2 +- Sources/TokenVisitor/StructureValue.swift | 2 +- Sources/TokenVisitor/Syntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable.swift | 2 +- .../SyntaxClassifiable/AttributeListSyntax.swift | 2 +- .../SyntaxClassifiable/CatchClauseListSyntax.swift | 2 +- .../SyntaxClassifiable/CodeBlockItemListSyntax.swift | 2 +- .../SyntaxClassifiable/ConditionElementListSyntax.swift | 2 +- .../SyntaxClassifiable/DeclModifierListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift | 2 +- .../SyntaxClassifiable/FunctionParameterListSyntax.swift | 2 +- .../SyntaxClassifiable/IdentifierPatternSyntax.swift | 2 +- .../SyntaxClassifiable/IdentifierTypeSyntax.swift | 2 +- .../SyntaxClassifiable/LabeledExprListSyntax.swift | 2 +- .../SyntaxClassifiable/PatternBindingListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift | 2 +- .../SyntaxClassifiable/SwitchCaseItemListSyntax.swift | 2 +- .../SyntaxClassifiable/SwitchCaseListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxType.swift | 2 +- Sources/TokenVisitor/Token.swift | 2 +- Sources/TokenVisitor/TokenVisitor.swift | 2 +- Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift | 2 +- Sources/TokenVisitor/TreeNodeProtocol.swift | 2 +- Sources/TokenVisitor/TriviaPiece.swift | 2 +- Sources/skit/Skit.swift | 2 +- Tests/SyntaxDocTests/Settings.swift | 4 ++-- 183 files changed, 188 insertions(+), 185 deletions(-) diff --git a/Scripts/lint.sh b/Scripts/lint.sh index ac3974ad..49d8c50d 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -40,7 +40,9 @@ else fi pushd $PACKAGE_DIR -mise install +if [ -z "$CI" ]; then + mise install +fi eval "$(mise env)" if [ -z "$CI" ]; then diff --git a/Sources/DocumentationHarness/CodeBlock.swift b/Sources/DocumentationHarness/CodeBlock.swift index 7c61d0c6..00124dee 100644 --- a/Sources/DocumentationHarness/CodeBlock.swift +++ b/Sources/DocumentationHarness/CodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockExtraction.swift b/Sources/DocumentationHarness/CodeBlockExtraction.swift index 49bd47d8..c742e7cf 100644 --- a/Sources/DocumentationHarness/CodeBlockExtraction.swift +++ b/Sources/DocumentationHarness/CodeBlockExtraction.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockExtractor.swift b/Sources/DocumentationHarness/CodeBlockExtractor.swift index 8af306ae..51cc82a5 100644 --- a/Sources/DocumentationHarness/CodeBlockExtractor.swift +++ b/Sources/DocumentationHarness/CodeBlockExtractor.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation @@ -31,5 +31,6 @@ /// - Parameter content: The markdown content to parse /// - Returns: Array of extracted code blocks /// - Throws: CodeBlockExtractorError if extraction fails -package typealias CodeBlockExtractor = @Sendable (String) throws(CodeBlockExtractorError) -> +package typealias CodeBlockExtractor = + @Sendable (String) throws(CodeBlockExtractorError) -> [CodeBlock] diff --git a/Sources/DocumentationHarness/CodeBlockExtractorError.swift b/Sources/DocumentationHarness/CodeBlockExtractorError.swift index 828a36e1..5eac86e2 100644 --- a/Sources/DocumentationHarness/CodeBlockExtractorError.swift +++ b/Sources/DocumentationHarness/CodeBlockExtractorError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockType.swift b/Sources/DocumentationHarness/CodeBlockType.swift index 3f35f3b2..08435090 100644 --- a/Sources/DocumentationHarness/CodeBlockType.swift +++ b/Sources/DocumentationHarness/CodeBlockType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockValidationParameters.swift b/Sources/DocumentationHarness/CodeBlockValidationParameters.swift index b9506fb8..e13c0619 100644 --- a/Sources/DocumentationHarness/CodeBlockValidationParameters.swift +++ b/Sources/DocumentationHarness/CodeBlockValidationParameters.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeSyntaxValidator.swift b/Sources/DocumentationHarness/CodeSyntaxValidator.swift index ce1e047f..e14d1285 100644 --- a/Sources/DocumentationHarness/CodeSyntaxValidator.swift +++ b/Sources/DocumentationHarness/CodeSyntaxValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CompilationResult.swift b/Sources/DocumentationHarness/CompilationResult.swift index b0d82ea5..d6da20d3 100644 --- a/Sources/DocumentationHarness/CompilationResult.swift +++ b/Sources/DocumentationHarness/CompilationResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/DocumentationValidator.swift b/Sources/DocumentationHarness/DocumentationValidator.swift index 5b909631..cdc1a627 100644 --- a/Sources/DocumentationHarness/DocumentationValidator.swift +++ b/Sources/DocumentationHarness/DocumentationValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileManager+Documentation.swift b/Sources/DocumentationHarness/FileManager+Documentation.swift index f20427e2..0d6c4383 100644 --- a/Sources/DocumentationHarness/FileManager+Documentation.swift +++ b/Sources/DocumentationHarness/FileManager+Documentation.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileSearchError.swift b/Sources/DocumentationHarness/FileSearchError.swift index d6c997ef..ad4e7e87 100644 --- a/Sources/DocumentationHarness/FileSearchError.swift +++ b/Sources/DocumentationHarness/FileSearchError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileSearcher.swift b/Sources/DocumentationHarness/FileSearcher.swift index d3e5e0e4..4a059867 100644 --- a/Sources/DocumentationHarness/FileSearcher.swift +++ b/Sources/DocumentationHarness/FileSearcher.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/PackageValidator.swift b/Sources/DocumentationHarness/PackageValidator.swift index 92e126de..b10107cd 100644 --- a/Sources/DocumentationHarness/PackageValidator.swift +++ b/Sources/DocumentationHarness/PackageValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/SyntaxValidator.swift b/Sources/DocumentationHarness/SyntaxValidator.swift index bd7b8f1c..f57a89d3 100644 --- a/Sources/DocumentationHarness/SyntaxValidator.swift +++ b/Sources/DocumentationHarness/SyntaxValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/TestType.swift b/Sources/DocumentationHarness/TestType.swift index 4bd1200d..40dcfe0b 100644 --- a/Sources/DocumentationHarness/TestType.swift +++ b/Sources/DocumentationHarness/TestType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationError.swift b/Sources/DocumentationHarness/ValidationError.swift index 209df092..d16a113f 100644 --- a/Sources/DocumentationHarness/ValidationError.swift +++ b/Sources/DocumentationHarness/ValidationError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationParameters.swift b/Sources/DocumentationHarness/ValidationParameters.swift index 04049a30..83af938a 100644 --- a/Sources/DocumentationHarness/ValidationParameters.swift +++ b/Sources/DocumentationHarness/ValidationParameters.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationResult.swift b/Sources/DocumentationHarness/ValidationResult.swift index 8a514cf8..be9c55ab 100644 --- a/Sources/DocumentationHarness/ValidationResult.swift +++ b/Sources/DocumentationHarness/ValidationResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/Validator.swift b/Sources/DocumentationHarness/Validator.swift index 1fa27877..b01a2e41 100644 --- a/Sources/DocumentationHarness/Validator.swift +++ b/Sources/DocumentationHarness/Validator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/Attribute.swift b/Sources/SyntaxKit/Attributes/Attribute.swift index bca85db2..ec97159c 100644 --- a/Sources/SyntaxKit/Attributes/Attribute.swift +++ b/Sources/SyntaxKit/Attributes/Attribute.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/AttributeInfo.swift b/Sources/SyntaxKit/Attributes/AttributeInfo.swift index c78488bd..f6abde02 100644 --- a/Sources/SyntaxKit/Attributes/AttributeInfo.swift +++ b/Sources/SyntaxKit/Attributes/AttributeInfo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/Trivia+Comments.swift b/Sources/SyntaxKit/Attributes/Trivia+Comments.swift index 362bd4e4..dc008c00 100644 --- a/Sources/SyntaxKit/Attributes/Trivia+Comments.swift +++ b/Sources/SyntaxKit/Attributes/Trivia+Comments.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift index 19e0856c..e07fc1ca 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift index b2e69983..914fdf6b 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift index 5e938053..c6a0b425 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift index 61470654..ec525560 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift index a5636b0e..f19bb6f8 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift index 9faccb55..1744372f 100644 --- a/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift index d8be3dd7..4ebdf4d0 100644 --- a/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift index 426e94e3..d48906d6 100644 --- a/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Array+LiteralValue.swift b/Sources/SyntaxKit/Collections/Array+LiteralValue.swift index 3bcc16c3..a77f5ca9 100644 --- a/Sources/SyntaxKit/Collections/Array+LiteralValue.swift +++ b/Sources/SyntaxKit/Collections/Array+LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/ArrayLiteral.swift b/Sources/SyntaxKit/Collections/ArrayLiteral.swift index 8301a55e..e97be405 100644 --- a/Sources/SyntaxKit/Collections/ArrayLiteral.swift +++ b/Sources/SyntaxKit/Collections/ArrayLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift b/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift index 5f190af6..8a38ca05 100644 --- a/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift b/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift index 6e0e219f..8762235c 100644 --- a/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift +++ b/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift b/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift index 3cb73d9e..c0b2b566 100644 --- a/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift +++ b/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryExpr.swift b/Sources/SyntaxKit/Collections/DictionaryExpr.swift index 1b896afe..ac6f1d95 100644 --- a/Sources/SyntaxKit/Collections/DictionaryExpr.swift +++ b/Sources/SyntaxKit/Collections/DictionaryExpr.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryLiteral.swift b/Sources/SyntaxKit/Collections/DictionaryLiteral.swift index 2703cb0d..6f2cb29b 100644 --- a/Sources/SyntaxKit/Collections/DictionaryLiteral.swift +++ b/Sources/SyntaxKit/Collections/DictionaryLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryValue.swift b/Sources/SyntaxKit/Collections/DictionaryValue.swift index 5389e5ae..088682eb 100644 --- a/Sources/SyntaxKit/Collections/DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift b/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift index bac3e3ac..5462c5eb 100644 --- a/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/PatternCodeBlock.swift b/Sources/SyntaxKit/Collections/PatternCodeBlock.swift index 3cf1a5f5..7734ea72 100644 --- a/Sources/SyntaxKit/Collections/PatternCodeBlock.swift +++ b/Sources/SyntaxKit/Collections/PatternCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift b/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift index 612bfcfb..8b01e258 100644 --- a/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift +++ b/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Tuple.swift b/Sources/SyntaxKit/Collections/Tuple.swift index de529201..df42ff32 100644 --- a/Sources/SyntaxKit/Collections/Tuple.swift +++ b/Sources/SyntaxKit/Collections/Tuple.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift b/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift index 2606a419..a84f9bc4 100644 --- a/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift +++ b/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleAssignment.swift b/Sources/SyntaxKit/Collections/TupleAssignment.swift index 0a832d3a..42b93649 100644 --- a/Sources/SyntaxKit/Collections/TupleAssignment.swift +++ b/Sources/SyntaxKit/Collections/TupleAssignment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleLiteralArray.swift b/Sources/SyntaxKit/Collections/TupleLiteralArray.swift index d7ebf24c..6e045d84 100644 --- a/Sources/SyntaxKit/Collections/TupleLiteralArray.swift +++ b/Sources/SyntaxKit/Collections/TupleLiteralArray.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TuplePattern.swift b/Sources/SyntaxKit/Collections/TuplePattern.swift index 09019768..d7016601 100644 --- a/Sources/SyntaxKit/Collections/TuplePattern.swift +++ b/Sources/SyntaxKit/Collections/TuplePattern.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Do.swift b/Sources/SyntaxKit/ControlFlow/Do.swift index 40e6deb1..a9c4228a 100644 --- a/Sources/SyntaxKit/ControlFlow/Do.swift +++ b/Sources/SyntaxKit/ControlFlow/Do.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/For.swift b/Sources/SyntaxKit/ControlFlow/For.swift index 838908b2..2b790170 100644 --- a/Sources/SyntaxKit/ControlFlow/For.swift +++ b/Sources/SyntaxKit/ControlFlow/For.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Guard.swift b/Sources/SyntaxKit/ControlFlow/Guard.swift index ee163a50..47e12576 100644 --- a/Sources/SyntaxKit/ControlFlow/Guard.swift +++ b/Sources/SyntaxKit/ControlFlow/Guard.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+Body.swift b/Sources/SyntaxKit/ControlFlow/If+Body.swift index 9ff8bd96..f6c5611f 100644 --- a/Sources/SyntaxKit/ControlFlow/If+Body.swift +++ b/Sources/SyntaxKit/ControlFlow/If+Body.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift b/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift index 844d100e..c98e80e7 100644 --- a/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift +++ b/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+Conditions.swift b/Sources/SyntaxKit/ControlFlow/If+Conditions.swift index 4b410d13..144331ef 100644 --- a/Sources/SyntaxKit/ControlFlow/If+Conditions.swift +++ b/Sources/SyntaxKit/ControlFlow/If+Conditions.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift b/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift index fdabcecd..a4b373bc 100644 --- a/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift +++ b/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If.swift b/Sources/SyntaxKit/ControlFlow/If.swift index 5faff9d6..0bdc5da5 100644 --- a/Sources/SyntaxKit/ControlFlow/If.swift +++ b/Sources/SyntaxKit/ControlFlow/If.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Switch.swift b/Sources/SyntaxKit/ControlFlow/Switch.swift index 00d75d84..b1327a6b 100644 --- a/Sources/SyntaxKit/ControlFlow/Switch.swift +++ b/Sources/SyntaxKit/ControlFlow/Switch.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/SwitchCase.swift b/Sources/SyntaxKit/ControlFlow/SwitchCase.swift index dc08c721..25a3b038 100644 --- a/Sources/SyntaxKit/ControlFlow/SwitchCase.swift +++ b/Sources/SyntaxKit/ControlFlow/SwitchCase.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/SwitchLet.swift b/Sources/SyntaxKit/ControlFlow/SwitchLet.swift index 34d496d2..83cacb29 100644 --- a/Sources/SyntaxKit/ControlFlow/SwitchLet.swift +++ b/Sources/SyntaxKit/ControlFlow/SwitchLet.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/While.swift b/Sources/SyntaxKit/ControlFlow/While.swift index 501aba5f..611d8253 100644 --- a/Sources/SyntaxKit/ControlFlow/While.swift +++ b/Sources/SyntaxKit/ControlFlow/While.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/AccessModifier.swift b/Sources/SyntaxKit/Core/AccessModifier.swift index dee542cf..210a367b 100644 --- a/Sources/SyntaxKit/Core/AccessModifier.swift +++ b/Sources/SyntaxKit/Core/AccessModifier.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/CaptureReferenceType.swift b/Sources/SyntaxKit/Core/CaptureReferenceType.swift index fa3f9e3c..f64d44f1 100644 --- a/Sources/SyntaxKit/Core/CaptureReferenceType.swift +++ b/Sources/SyntaxKit/Core/CaptureReferenceType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/CodeBlock.swift b/Sources/SyntaxKit/Core/CodeBlock.swift index c0471945..a09318c2 100644 --- a/Sources/SyntaxKit/Core/CodeBlock.swift +++ b/Sources/SyntaxKit/Core/CodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift b/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift index 920d8656..eee4edbc 100644 --- a/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift +++ b/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift b/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift index c071ef9d..9c6a2549 100644 --- a/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift +++ b/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift b/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift index b23b12a7..7c8ec1cb 100644 --- a/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift +++ b/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Line+Trivia.swift b/Sources/SyntaxKit/Core/Line+Trivia.swift index 522a36f5..e400af11 100644 --- a/Sources/SyntaxKit/Core/Line+Trivia.swift +++ b/Sources/SyntaxKit/Core/Line+Trivia.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Line.swift b/Sources/SyntaxKit/Core/Line.swift index 11cd3158..7bd3c89c 100644 --- a/Sources/SyntaxKit/Core/Line.swift +++ b/Sources/SyntaxKit/Core/Line.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/PatternConvertible.swift b/Sources/SyntaxKit/Core/PatternConvertible.swift index 81eac53d..27fbacea 100644 --- a/Sources/SyntaxKit/Core/PatternConvertible.swift +++ b/Sources/SyntaxKit/Core/PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift b/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift index fb26580a..f22d7712 100644 --- a/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift +++ b/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/String+TypeRepresentable.swift b/Sources/SyntaxKit/Core/String+TypeRepresentable.swift index b4cbcad0..4a2231c3 100644 --- a/Sources/SyntaxKit/Core/String+TypeRepresentable.swift +++ b/Sources/SyntaxKit/Core/String+TypeRepresentable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/TypeRepresentable.swift b/Sources/SyntaxKit/Core/TypeRepresentable.swift index 84ba86c7..4d6fc254 100644 --- a/Sources/SyntaxKit/Core/TypeRepresentable.swift +++ b/Sources/SyntaxKit/Core/TypeRepresentable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Class.swift b/Sources/SyntaxKit/Declarations/Class.swift index 430facba..2b6c03fc 100644 --- a/Sources/SyntaxKit/Declarations/Class.swift +++ b/Sources/SyntaxKit/Declarations/Class.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Enum.swift b/Sources/SyntaxKit/Declarations/Enum.swift index cb7e12bc..d915fd1e 100644 --- a/Sources/SyntaxKit/Declarations/Enum.swift +++ b/Sources/SyntaxKit/Declarations/Enum.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Extension.swift b/Sources/SyntaxKit/Declarations/Extension.swift index a9faf08d..8c883289 100644 --- a/Sources/SyntaxKit/Declarations/Extension.swift +++ b/Sources/SyntaxKit/Declarations/Extension.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Import.swift b/Sources/SyntaxKit/Declarations/Import.swift index 7448c539..2a94b716 100644 --- a/Sources/SyntaxKit/Declarations/Import.swift +++ b/Sources/SyntaxKit/Declarations/Import.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Init.swift b/Sources/SyntaxKit/Declarations/Init.swift index e692ef78..4adb18dc 100644 --- a/Sources/SyntaxKit/Declarations/Init.swift +++ b/Sources/SyntaxKit/Declarations/Init.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Protocol.swift b/Sources/SyntaxKit/Declarations/Protocol.swift index 93392a50..d93abf4c 100644 --- a/Sources/SyntaxKit/Declarations/Protocol.swift +++ b/Sources/SyntaxKit/Declarations/Protocol.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Struct+Public.swift b/Sources/SyntaxKit/Declarations/Struct+Public.swift index b7ce7167..cedbd78a 100644 --- a/Sources/SyntaxKit/Declarations/Struct+Public.swift +++ b/Sources/SyntaxKit/Declarations/Struct+Public.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Struct.swift b/Sources/SyntaxKit/Declarations/Struct.swift index 8ba953bc..caaec042 100644 --- a/Sources/SyntaxKit/Declarations/Struct.swift +++ b/Sources/SyntaxKit/Declarations/Struct.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/TypeAlias.swift b/Sources/SyntaxKit/Declarations/TypeAlias.swift index 7a794b0f..4b6fe9b9 100644 --- a/Sources/SyntaxKit/Declarations/TypeAlias.swift +++ b/Sources/SyntaxKit/Declarations/TypeAlias.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift b/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift index 17c42a08..92b66f85 100644 --- a/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift +++ b/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/Catch.swift b/Sources/SyntaxKit/ErrorHandling/Catch.swift index 652118c7..1797179f 100644 --- a/Sources/SyntaxKit/ErrorHandling/Catch.swift +++ b/Sources/SyntaxKit/ErrorHandling/Catch.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift b/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift index 5457b64b..f1340c08 100644 --- a/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift +++ b/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/Throw.swift b/Sources/SyntaxKit/ErrorHandling/Throw.swift index 647f0b15..51f92416 100644 --- a/Sources/SyntaxKit/ErrorHandling/Throw.swift +++ b/Sources/SyntaxKit/ErrorHandling/Throw.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Assignment.swift b/Sources/SyntaxKit/Expressions/Assignment.swift index 94153cf6..4cfb55cd 100644 --- a/Sources/SyntaxKit/Expressions/Assignment.swift +++ b/Sources/SyntaxKit/Expressions/Assignment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Call.swift b/Sources/SyntaxKit/Expressions/Call.swift index db2163c8..f7b951a9 100644 --- a/Sources/SyntaxKit/Expressions/Call.swift +++ b/Sources/SyntaxKit/Expressions/Call.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/CaptureInfo.swift b/Sources/SyntaxKit/Expressions/CaptureInfo.swift index 01cf9b84..69f4847f 100644 --- a/Sources/SyntaxKit/Expressions/CaptureInfo.swift +++ b/Sources/SyntaxKit/Expressions/CaptureInfo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Body.swift b/Sources/SyntaxKit/Expressions/Closure+Body.swift index e1df2acf..cc5cb2b8 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Body.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Body.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Capture.swift b/Sources/SyntaxKit/Expressions/Closure+Capture.swift index 66a77bb0..04d6807a 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Capture.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Capture.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Signature.swift b/Sources/SyntaxKit/Expressions/Closure+Signature.swift index 1da5a372..03b75d35 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Signature.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Signature.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure.swift b/Sources/SyntaxKit/Expressions/Closure.swift index 2b1d7ab9..8941f030 100644 --- a/Sources/SyntaxKit/Expressions/Closure.swift +++ b/Sources/SyntaxKit/Expressions/Closure.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureParameter.swift b/Sources/SyntaxKit/Expressions/ClosureParameter.swift index 19e53225..49a919c9 100644 --- a/Sources/SyntaxKit/Expressions/ClosureParameter.swift +++ b/Sources/SyntaxKit/Expressions/ClosureParameter.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift b/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift index f0af279d..6e0a8b94 100644 --- a/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift +++ b/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureType.swift b/Sources/SyntaxKit/Expressions/ClosureType.swift index ba5cd5c9..e2fb1779 100644 --- a/Sources/SyntaxKit/Expressions/ClosureType.swift +++ b/Sources/SyntaxKit/Expressions/ClosureType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ConditionalOp.swift b/Sources/SyntaxKit/Expressions/ConditionalOp.swift index 2c622368..d2c55899 100644 --- a/Sources/SyntaxKit/Expressions/ConditionalOp.swift +++ b/Sources/SyntaxKit/Expressions/ConditionalOp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/FunctionCallExp.swift b/Sources/SyntaxKit/Expressions/FunctionCallExp.swift index 821b9207..5f3a8782 100644 --- a/Sources/SyntaxKit/Expressions/FunctionCallExp.swift +++ b/Sources/SyntaxKit/Expressions/FunctionCallExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Infix+Comparison.swift b/Sources/SyntaxKit/Expressions/Infix+Comparison.swift index 97f49de8..fa88f6a9 100644 --- a/Sources/SyntaxKit/Expressions/Infix+Comparison.swift +++ b/Sources/SyntaxKit/Expressions/Infix+Comparison.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Infix.swift b/Sources/SyntaxKit/Expressions/Infix.swift index 3d04ae60..534c29c2 100644 --- a/Sources/SyntaxKit/Expressions/Infix.swift +++ b/Sources/SyntaxKit/Expressions/Infix.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+Convenience.swift b/Sources/SyntaxKit/Expressions/Literal+Convenience.swift index 1e89f93e..2a0e5815 100644 --- a/Sources/SyntaxKit/Expressions/Literal+Convenience.swift +++ b/Sources/SyntaxKit/Expressions/Literal+Convenience.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift b/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift index 3173b20b..be54e85a 100644 --- a/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift +++ b/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift b/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift index 116d163a..d0eda07a 100644 --- a/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift +++ b/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal.swift b/Sources/SyntaxKit/Expressions/Literal.swift index df93d0a4..1b5ddb1d 100644 --- a/Sources/SyntaxKit/Expressions/Literal.swift +++ b/Sources/SyntaxKit/Expressions/Literal.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/LiteralValue.swift b/Sources/SyntaxKit/Expressions/LiteralValue.swift index 0cb67765..16c09c8a 100644 --- a/Sources/SyntaxKit/Expressions/LiteralValue.swift +++ b/Sources/SyntaxKit/Expressions/LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift b/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift index 336143fa..4ce67d32 100644 --- a/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift +++ b/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift b/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift index 832b5385..c287679b 100644 --- a/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift +++ b/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PlusAssign.swift b/Sources/SyntaxKit/Expressions/PlusAssign.swift index 9fe5aeaa..ed3d6e00 100644 --- a/Sources/SyntaxKit/Expressions/PlusAssign.swift +++ b/Sources/SyntaxKit/Expressions/PlusAssign.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift b/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift index fe22de91..86dced06 100644 --- a/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift +++ b/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PropertyAccessible.swift b/Sources/SyntaxKit/Expressions/PropertyAccessible.swift index 54fec400..2faa69d2 100644 --- a/Sources/SyntaxKit/Expressions/PropertyAccessible.swift +++ b/Sources/SyntaxKit/Expressions/PropertyAccessible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ReferenceExp.swift b/Sources/SyntaxKit/Expressions/ReferenceExp.swift index 324f7fd2..5e78b3cf 100644 --- a/Sources/SyntaxKit/Expressions/ReferenceExp.swift +++ b/Sources/SyntaxKit/Expressions/ReferenceExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Return.swift b/Sources/SyntaxKit/Expressions/Return.swift index 4f2356ff..8ccbbf07 100644 --- a/Sources/SyntaxKit/Expressions/Return.swift +++ b/Sources/SyntaxKit/Expressions/Return.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift b/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift index 0c317481..da188940 100644 --- a/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift +++ b/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Effects.swift b/Sources/SyntaxKit/Functions/Function+Effects.swift index f7a1a9c7..7765f4c6 100644 --- a/Sources/SyntaxKit/Functions/Function+Effects.swift +++ b/Sources/SyntaxKit/Functions/Function+Effects.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Modifiers.swift b/Sources/SyntaxKit/Functions/Function+Modifiers.swift index cb1a7343..f50e427a 100644 --- a/Sources/SyntaxKit/Functions/Function+Modifiers.swift +++ b/Sources/SyntaxKit/Functions/Function+Modifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Syntax.swift b/Sources/SyntaxKit/Functions/Function+Syntax.swift index 78fc29e7..9a7d652a 100644 --- a/Sources/SyntaxKit/Functions/Function+Syntax.swift +++ b/Sources/SyntaxKit/Functions/Function+Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function.swift b/Sources/SyntaxKit/Functions/Function.swift index 3901f3f1..dabae9f7 100644 --- a/Sources/SyntaxKit/Functions/Function.swift +++ b/Sources/SyntaxKit/Functions/Function.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift b/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift index 018c38af..f6457082 100644 --- a/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift +++ b/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/FunctionRequirement.swift b/Sources/SyntaxKit/Functions/FunctionRequirement.swift index 2968d599..341dd80c 100644 --- a/Sources/SyntaxKit/Functions/FunctionRequirement.swift +++ b/Sources/SyntaxKit/Functions/FunctionRequirement.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/Parameter.swift b/Sources/SyntaxKit/Parameters/Parameter.swift index 50c7be83..1b154751 100644 --- a/Sources/SyntaxKit/Parameters/Parameter.swift +++ b/Sources/SyntaxKit/Parameters/Parameter.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift b/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift index a0590f3d..7b8cafc5 100644 --- a/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift +++ b/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterExp.swift b/Sources/SyntaxKit/Parameters/ParameterExp.swift index d55921d3..8cdf23c8 100644 --- a/Sources/SyntaxKit/Parameters/ParameterExp.swift +++ b/Sources/SyntaxKit/Parameters/ParameterExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift b/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift index 855a9694..e8aad4b9 100644 --- a/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift +++ b/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift index 99bd3af7..686672a4 100644 --- a/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/LetBindingPattern.swift b/Sources/SyntaxKit/Patterns/LetBindingPattern.swift index 81573b1a..f7da63c5 100644 --- a/Sources/SyntaxKit/Patterns/LetBindingPattern.swift +++ b/Sources/SyntaxKit/Patterns/LetBindingPattern.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift index d06396dd..9ac7bb79 100644 --- a/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift index c66d559c..6fd2da7f 100644 --- a/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Break.swift b/Sources/SyntaxKit/Utilities/Break.swift index 2607b059..cf1e33ed 100644 --- a/Sources/SyntaxKit/Utilities/Break.swift +++ b/Sources/SyntaxKit/Utilities/Break.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Case.swift b/Sources/SyntaxKit/Utilities/Case.swift index aa93f031..b403ded9 100644 --- a/Sources/SyntaxKit/Utilities/Case.swift +++ b/Sources/SyntaxKit/Utilities/Case.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift b/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift index 936d2169..d1dbbf4e 100644 --- a/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift +++ b/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CodeBlockable.swift b/Sources/SyntaxKit/Utilities/CodeBlockable.swift index bf36ce07..ac42259b 100644 --- a/Sources/SyntaxKit/Utilities/CodeBlockable.swift +++ b/Sources/SyntaxKit/Utilities/CodeBlockable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift b/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift index a3664447..798f2f17 100644 --- a/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift +++ b/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Continue.swift b/Sources/SyntaxKit/Utilities/Continue.swift index 93cde82a..4f1fe599 100644 --- a/Sources/SyntaxKit/Utilities/Continue.swift +++ b/Sources/SyntaxKit/Utilities/Continue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Default.swift b/Sources/SyntaxKit/Utilities/Default.swift index fe26eb0f..fc7b04cb 100644 --- a/Sources/SyntaxKit/Utilities/Default.swift +++ b/Sources/SyntaxKit/Utilities/Default.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift b/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift index 62bfc560..a2a99a73 100644 --- a/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift +++ b/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/EnumCase.swift b/Sources/SyntaxKit/Utilities/EnumCase.swift index 8668de57..808976bf 100644 --- a/Sources/SyntaxKit/Utilities/EnumCase.swift +++ b/Sources/SyntaxKit/Utilities/EnumCase.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Fallthrough.swift b/Sources/SyntaxKit/Utilities/Fallthrough.swift index 886e4db7..ce2d891c 100644 --- a/Sources/SyntaxKit/Utilities/Fallthrough.swift +++ b/Sources/SyntaxKit/Utilities/Fallthrough.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Group.swift b/Sources/SyntaxKit/Utilities/Group.swift index b81455b8..58a7187f 100644 --- a/Sources/SyntaxKit/Utilities/Group.swift +++ b/Sources/SyntaxKit/Utilities/Group.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Let.swift b/Sources/SyntaxKit/Utilities/Let.swift index 89633ea0..76000263 100644 --- a/Sources/SyntaxKit/Utilities/Let.swift +++ b/Sources/SyntaxKit/Utilities/Let.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Parenthesized.swift b/Sources/SyntaxKit/Utilities/Parenthesized.swift index c452553e..068c9d32 100644 --- a/Sources/SyntaxKit/Utilities/Parenthesized.swift +++ b/Sources/SyntaxKit/Utilities/Parenthesized.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/PropertyRequirement.swift b/Sources/SyntaxKit/Utilities/PropertyRequirement.swift index fcf89227..5620b9eb 100644 --- a/Sources/SyntaxKit/Utilities/PropertyRequirement.swift +++ b/Sources/SyntaxKit/Utilities/PropertyRequirement.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Then.swift b/Sources/SyntaxKit/Utilities/Then.swift index a9bb5002..ea85cee7 100644 --- a/Sources/SyntaxKit/Utilities/Then.swift +++ b/Sources/SyntaxKit/Utilities/Then.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/AttributeArguments.swift b/Sources/SyntaxKit/Variables/AttributeArguments.swift index 0fbf4f90..b911b95c 100644 --- a/Sources/SyntaxKit/Variables/AttributeArguments.swift +++ b/Sources/SyntaxKit/Variables/AttributeArguments.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/ComputedProperty.swift b/Sources/SyntaxKit/Variables/ComputedProperty.swift index 2a40eb4b..a9de0069 100644 --- a/Sources/SyntaxKit/Variables/ComputedProperty.swift +++ b/Sources/SyntaxKit/Variables/ComputedProperty.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+Attributes.swift b/Sources/SyntaxKit/Variables/Variable+Attributes.swift index 5f44527f..6f4f9541 100644 --- a/Sources/SyntaxKit/Variables/Variable+Attributes.swift +++ b/Sources/SyntaxKit/Variables/Variable+Attributes.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift b/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift index 85d0f057..5769bacf 100644 --- a/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift +++ b/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+Modifiers.swift b/Sources/SyntaxKit/Variables/Variable+Modifiers.swift index bfaf90d0..ef9ca428 100644 --- a/Sources/SyntaxKit/Variables/Variable+Modifiers.swift +++ b/Sources/SyntaxKit/Variables/Variable+Modifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift b/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift index a8f4c4a6..4f8e4d11 100644 --- a/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift +++ b/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable.swift b/Sources/SyntaxKit/Variables/Variable.swift index 7f637df9..7c2b83db 100644 --- a/Sources/SyntaxKit/Variables/Variable.swift +++ b/Sources/SyntaxKit/Variables/Variable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/VariableExp.swift b/Sources/SyntaxKit/Variables/VariableExp.swift index 249b52f3..70e55e9e 100644 --- a/Sources/SyntaxKit/Variables/VariableExp.swift +++ b/Sources/SyntaxKit/Variables/VariableExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/VariableKind.swift b/Sources/SyntaxKit/Variables/VariableKind.swift index 1072af50..375c84e5 100644 --- a/Sources/SyntaxKit/Variables/VariableKind.swift +++ b/Sources/SyntaxKit/Variables/VariableKind.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SourceRange.swift b/Sources/SyntaxParser/SourceRange.swift index f965f64a..2f8277db 100644 --- a/Sources/SyntaxParser/SourceRange.swift +++ b/Sources/SyntaxParser/SourceRange.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SyntaxParser.swift b/Sources/SyntaxParser/SyntaxParser.swift index 043947e1..be15e1e6 100644 --- a/Sources/SyntaxParser/SyntaxParser.swift +++ b/Sources/SyntaxParser/SyntaxParser.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SyntaxResponse.swift b/Sources/SyntaxParser/SyntaxResponse.swift index 0c29b826..03bd0c35 100644 --- a/Sources/SyntaxParser/SyntaxResponse.swift +++ b/Sources/SyntaxParser/SyntaxResponse.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/TreeNode.swift b/Sources/SyntaxParser/TreeNode.swift index 65280105..b5e9070e 100644 --- a/Sources/SyntaxParser/TreeNode.swift +++ b/Sources/SyntaxParser/TreeNode.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/String.swift b/Sources/TokenVisitor/String.swift index 4b1c9431..0596f1d1 100644 --- a/Sources/TokenVisitor/String.swift +++ b/Sources/TokenVisitor/String.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/StructureProperty.swift b/Sources/TokenVisitor/StructureProperty.swift index f90124d9..9c0e7223 100644 --- a/Sources/TokenVisitor/StructureProperty.swift +++ b/Sources/TokenVisitor/StructureProperty.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/StructureValue.swift b/Sources/TokenVisitor/StructureValue.swift index dea1d778..2d712d8c 100644 --- a/Sources/TokenVisitor/StructureValue.swift +++ b/Sources/TokenVisitor/StructureValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/Syntax.swift b/Sources/TokenVisitor/Syntax.swift index 7466f55a..b7c49860 100644 --- a/Sources/TokenVisitor/Syntax.swift +++ b/Sources/TokenVisitor/Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable.swift b/Sources/TokenVisitor/SyntaxClassifiable.swift index 4c9b213d..5c4d257c 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift index 301a6862..ffbcce65 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift index 6eaf0ab5..7b5bb5e9 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift index e6ead13e..a995662f 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift index 22c0b7d7..c05d48ed 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift index f80cb3b5..8aeff351 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift index d0ee3af3..52cee4b3 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift index 1f10ae1f..53e06948 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift index 8ecd6440..193e4abd 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift index 813e9618..77558f49 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift index cb37f9cf..4ca24bd8 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift index 1b15d161..ff5df70b 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift index 50ae2901..4fbf53ab 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift index 2f26c037..51921a87 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift index 375ffcbd..712fcd8d 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift index 966ed261..ea265fff 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift index 9553cbd4..6b3d0644 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift index 35541388..fd80582b 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxType.swift b/Sources/TokenVisitor/SyntaxType.swift index 377b159a..04ec81c1 100644 --- a/Sources/TokenVisitor/SyntaxType.swift +++ b/Sources/TokenVisitor/SyntaxType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/Token.swift b/Sources/TokenVisitor/Token.swift index 52ed0b68..1679c68f 100644 --- a/Sources/TokenVisitor/Token.swift +++ b/Sources/TokenVisitor/Token.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TokenVisitor.swift b/Sources/TokenVisitor/TokenVisitor.swift index e288dfbb..9a3b6191 100644 --- a/Sources/TokenVisitor/TokenVisitor.swift +++ b/Sources/TokenVisitor/TokenVisitor.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift b/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift index 035e572b..1a4c9262 100644 --- a/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift +++ b/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TreeNodeProtocol.swift b/Sources/TokenVisitor/TreeNodeProtocol.swift index 215a4be5..6564cd2b 100644 --- a/Sources/TokenVisitor/TreeNodeProtocol.swift +++ b/Sources/TokenVisitor/TreeNodeProtocol.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TriviaPiece.swift b/Sources/TokenVisitor/TriviaPiece.swift index edc54912..0d013ca9 100644 --- a/Sources/TokenVisitor/TriviaPiece.swift +++ b/Sources/TokenVisitor/TriviaPiece.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/skit/Skit.swift b/Sources/skit/Skit.swift index c69237a1..1066b5e2 100644 --- a/Sources/skit/Skit.swift +++ b/Sources/skit/Skit.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2025 BrightDigit. +// Copyright © 2026 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Tests/SyntaxDocTests/Settings.swift b/Tests/SyntaxDocTests/Settings.swift index f85ebaf6..8255864a 100644 --- a/Tests/SyntaxDocTests/Settings.swift +++ b/Tests/SyntaxDocTests/Settings.swift @@ -85,9 +85,9 @@ internal enum Settings { } } else { #if os(Android) // os(Android) is a valid Swift platform condition since Swift 5.9 - let resolvedPath = filePath + let resolvedPath = filePath #else - let resolvedPath = "Sources/SyntaxKit/" + filePath + let resolvedPath = "Sources/SyntaxKit/" + filePath #endif return Self.projectRoot.appendingPathComponent(resolvedPath) } From 936e7adc65031781c994331bff621bed551ea90b Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 16:42:42 -0400 Subject: [PATCH 5/9] Hardcode copyright year to 2025 in lint script Co-Authored-By: Claude Sonnet 4.6 --- Scripts/lint.sh | 2 +- Sources/DocumentationHarness/CodeBlock.swift | 2 +- Sources/DocumentationHarness/CodeBlockExtraction.swift | 2 +- Sources/DocumentationHarness/CodeBlockExtractor.swift | 2 +- Sources/DocumentationHarness/CodeBlockExtractorError.swift | 2 +- Sources/DocumentationHarness/CodeBlockType.swift | 2 +- .../DocumentationHarness/CodeBlockValidationParameters.swift | 2 +- Sources/DocumentationHarness/CodeSyntaxValidator.swift | 2 +- Sources/DocumentationHarness/CompilationResult.swift | 2 +- Sources/DocumentationHarness/DocumentationValidator.swift | 2 +- Sources/DocumentationHarness/FileManager+Documentation.swift | 2 +- Sources/DocumentationHarness/FileSearchError.swift | 2 +- Sources/DocumentationHarness/FileSearcher.swift | 2 +- Sources/DocumentationHarness/PackageValidator.swift | 2 +- Sources/DocumentationHarness/SyntaxValidator.swift | 2 +- Sources/DocumentationHarness/TestType.swift | 2 +- Sources/DocumentationHarness/ValidationError.swift | 2 +- Sources/DocumentationHarness/ValidationParameters.swift | 2 +- Sources/DocumentationHarness/ValidationResult.swift | 2 +- Sources/DocumentationHarness/Validator.swift | 2 +- Sources/SyntaxKit/Attributes/Attribute.swift | 2 +- Sources/SyntaxKit/Attributes/AttributeInfo.swift | 2 +- Sources/SyntaxKit/Attributes/Trivia+Comments.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift | 2 +- Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift | 2 +- Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift | 2 +- Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift | 2 +- Sources/SyntaxKit/Collections/Array+LiteralValue.swift | 2 +- Sources/SyntaxKit/Collections/ArrayLiteral.swift | 2 +- Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift | 2 +- Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryExpr.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryLiteral.swift | 2 +- Sources/SyntaxKit/Collections/DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift | 2 +- Sources/SyntaxKit/Collections/PatternCodeBlock.swift | 2 +- .../SyntaxKit/Collections/PatternConvertableCollection.swift | 2 +- Sources/SyntaxKit/Collections/Tuple.swift | 2 +- Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift | 2 +- Sources/SyntaxKit/Collections/TupleAssignment.swift | 2 +- Sources/SyntaxKit/Collections/TupleLiteralArray.swift | 2 +- Sources/SyntaxKit/Collections/TuplePattern.swift | 2 +- Sources/SyntaxKit/ControlFlow/Do.swift | 2 +- Sources/SyntaxKit/ControlFlow/For.swift | 2 +- Sources/SyntaxKit/ControlFlow/Guard.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+Body.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+Conditions.swift | 2 +- Sources/SyntaxKit/ControlFlow/If+ElseBody.swift | 2 +- Sources/SyntaxKit/ControlFlow/If.swift | 2 +- Sources/SyntaxKit/ControlFlow/Switch.swift | 2 +- Sources/SyntaxKit/ControlFlow/SwitchCase.swift | 2 +- Sources/SyntaxKit/ControlFlow/SwitchLet.swift | 2 +- Sources/SyntaxKit/ControlFlow/While.swift | 2 +- Sources/SyntaxKit/Core/AccessModifier.swift | 2 +- Sources/SyntaxKit/Core/CaptureReferenceType.swift | 2 +- Sources/SyntaxKit/Core/CodeBlock.swift | 2 +- Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift | 2 +- Sources/SyntaxKit/Core/Keyword+AccessModifier.swift | 2 +- Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift | 2 +- Sources/SyntaxKit/Core/Line+Trivia.swift | 2 +- Sources/SyntaxKit/Core/Line.swift | 2 +- Sources/SyntaxKit/Core/PatternConvertible.swift | 2 +- Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift | 2 +- Sources/SyntaxKit/Core/String+TypeRepresentable.swift | 2 +- Sources/SyntaxKit/Core/TypeRepresentable.swift | 2 +- Sources/SyntaxKit/Declarations/Class.swift | 2 +- Sources/SyntaxKit/Declarations/Enum.swift | 2 +- Sources/SyntaxKit/Declarations/Extension.swift | 2 +- Sources/SyntaxKit/Declarations/Import.swift | 2 +- Sources/SyntaxKit/Declarations/Init.swift | 2 +- Sources/SyntaxKit/Declarations/Protocol.swift | 2 +- Sources/SyntaxKit/Declarations/Struct+Public.swift | 2 +- Sources/SyntaxKit/Declarations/Struct.swift | 2 +- Sources/SyntaxKit/Declarations/TypeAlias.swift | 2 +- .../Documentation.docc/Tutorials/Resources/QuickStartDemo.swift | 2 +- Sources/SyntaxKit/ErrorHandling/Catch.swift | 2 +- Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift | 2 +- Sources/SyntaxKit/ErrorHandling/Throw.swift | 2 +- Sources/SyntaxKit/Expressions/Assignment.swift | 2 +- Sources/SyntaxKit/Expressions/Call.swift | 2 +- Sources/SyntaxKit/Expressions/CaptureInfo.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Body.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Capture.swift | 2 +- Sources/SyntaxKit/Expressions/Closure+Signature.swift | 2 +- Sources/SyntaxKit/Expressions/Closure.swift | 2 +- Sources/SyntaxKit/Expressions/ClosureParameter.swift | 2 +- .../SyntaxKit/Expressions/ClosureParameterBuilderResult.swift | 2 +- Sources/SyntaxKit/Expressions/ClosureType.swift | 2 +- Sources/SyntaxKit/Expressions/ConditionalOp.swift | 2 +- Sources/SyntaxKit/Expressions/FunctionCallExp.swift | 2 +- Sources/SyntaxKit/Expressions/Infix+Comparison.swift | 2 +- Sources/SyntaxKit/Expressions/Infix.swift | 2 +- Sources/SyntaxKit/Expressions/Literal+Convenience.swift | 2 +- Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift | 2 +- Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Expressions/Literal.swift | 2 +- Sources/SyntaxKit/Expressions/LiteralValue.swift | 2 +- Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift | 2 +- Sources/SyntaxKit/Expressions/OptionalChainingExp.swift | 2 +- Sources/SyntaxKit/Expressions/PlusAssign.swift | 2 +- Sources/SyntaxKit/Expressions/PropertyAccessExp.swift | 2 +- Sources/SyntaxKit/Expressions/PropertyAccessible.swift | 2 +- Sources/SyntaxKit/Expressions/ReferenceExp.swift | 2 +- Sources/SyntaxKit/Expressions/Return.swift | 2 +- Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift | 2 +- Sources/SyntaxKit/Functions/Function+Effects.swift | 2 +- Sources/SyntaxKit/Functions/Function+Modifiers.swift | 2 +- Sources/SyntaxKit/Functions/Function+Syntax.swift | 2 +- Sources/SyntaxKit/Functions/Function.swift | 2 +- Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift | 2 +- Sources/SyntaxKit/Functions/FunctionRequirement.swift | 2 +- Sources/SyntaxKit/Parameters/Parameter.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterExp.swift | 2 +- Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift | 2 +- Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Patterns/LetBindingPattern.swift | 2 +- Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Patterns/String+PatternConvertible.swift | 2 +- Sources/SyntaxKit/Utilities/Break.swift | 2 +- Sources/SyntaxKit/Utilities/Case.swift | 2 +- Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift | 2 +- Sources/SyntaxKit/Utilities/CodeBlockable.swift | 2 +- Sources/SyntaxKit/Utilities/CommentBuilderResult.swift | 2 +- Sources/SyntaxKit/Utilities/Continue.swift | 2 +- Sources/SyntaxKit/Utilities/Default.swift | 2 +- Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift | 2 +- Sources/SyntaxKit/Utilities/EnumCase.swift | 2 +- Sources/SyntaxKit/Utilities/Fallthrough.swift | 2 +- Sources/SyntaxKit/Utilities/Group.swift | 2 +- Sources/SyntaxKit/Utilities/Let.swift | 2 +- Sources/SyntaxKit/Utilities/Parenthesized.swift | 2 +- Sources/SyntaxKit/Utilities/PropertyRequirement.swift | 2 +- Sources/SyntaxKit/Utilities/Then.swift | 2 +- Sources/SyntaxKit/Variables/AttributeArguments.swift | 2 +- Sources/SyntaxKit/Variables/ComputedProperty.swift | 2 +- Sources/SyntaxKit/Variables/Variable+Attributes.swift | 2 +- Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift | 2 +- Sources/SyntaxKit/Variables/Variable+Modifiers.swift | 2 +- Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift | 2 +- Sources/SyntaxKit/Variables/Variable.swift | 2 +- Sources/SyntaxKit/Variables/VariableExp.swift | 2 +- Sources/SyntaxKit/Variables/VariableKind.swift | 2 +- Sources/SyntaxParser/SourceRange.swift | 2 +- Sources/SyntaxParser/SyntaxParser.swift | 2 +- Sources/SyntaxParser/SyntaxResponse.swift | 2 +- Sources/SyntaxParser/TreeNode.swift | 2 +- Sources/TokenVisitor/String.swift | 2 +- Sources/TokenVisitor/StructureProperty.swift | 2 +- Sources/TokenVisitor/StructureValue.swift | 2 +- Sources/TokenVisitor/Syntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift | 2 +- .../SyntaxClassifiable/CodeBlockItemListSyntax.swift | 2 +- .../SyntaxClassifiable/ConditionElementListSyntax.swift | 2 +- .../SyntaxClassifiable/DeclModifierListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift | 2 +- .../SyntaxClassifiable/FunctionParameterListSyntax.swift | 2 +- .../SyntaxClassifiable/IdentifierPatternSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift | 2 +- .../SyntaxClassifiable/PatternBindingListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift | 2 +- .../SyntaxClassifiable/SwitchCaseItemListSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift | 2 +- .../TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift | 2 +- Sources/TokenVisitor/SyntaxType.swift | 2 +- Sources/TokenVisitor/Token.swift | 2 +- Sources/TokenVisitor/TokenVisitor.swift | 2 +- Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift | 2 +- Sources/TokenVisitor/TreeNodeProtocol.swift | 2 +- Sources/TokenVisitor/TriviaPiece.swift | 2 +- Sources/skit/Skit.swift | 2 +- 182 files changed, 182 insertions(+), 182 deletions(-) diff --git a/Scripts/lint.sh b/Scripts/lint.sh index 49d8c50d..cb7774e8 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -55,7 +55,7 @@ if [ -z "$FORMAT_ONLY" ]; then run_command swiftlint lint $SWIFTLINT_OPTIONS fi -$PACKAGE_DIR/Scripts/header.sh -d $PACKAGE_DIR/Sources -c "Leo Dion" -o "BrightDigit" -p "SyntaxKit" +$PACKAGE_DIR/Scripts/header.sh -d $PACKAGE_DIR/Sources -c "Leo Dion" -o "BrightDigit" -p "SyntaxKit" -y 2025 run_command swiftlint lint $SWIFTLINT_OPTIONS run_command swift-format lint --recursive --parallel $SWIFTFORMAT_OPTIONS Sources Tests diff --git a/Sources/DocumentationHarness/CodeBlock.swift b/Sources/DocumentationHarness/CodeBlock.swift index 00124dee..7c61d0c6 100644 --- a/Sources/DocumentationHarness/CodeBlock.swift +++ b/Sources/DocumentationHarness/CodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockExtraction.swift b/Sources/DocumentationHarness/CodeBlockExtraction.swift index c742e7cf..49bd47d8 100644 --- a/Sources/DocumentationHarness/CodeBlockExtraction.swift +++ b/Sources/DocumentationHarness/CodeBlockExtraction.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockExtractor.swift b/Sources/DocumentationHarness/CodeBlockExtractor.swift index 51cc82a5..08646b85 100644 --- a/Sources/DocumentationHarness/CodeBlockExtractor.swift +++ b/Sources/DocumentationHarness/CodeBlockExtractor.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockExtractorError.swift b/Sources/DocumentationHarness/CodeBlockExtractorError.swift index 5eac86e2..828a36e1 100644 --- a/Sources/DocumentationHarness/CodeBlockExtractorError.swift +++ b/Sources/DocumentationHarness/CodeBlockExtractorError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockType.swift b/Sources/DocumentationHarness/CodeBlockType.swift index 08435090..3f35f3b2 100644 --- a/Sources/DocumentationHarness/CodeBlockType.swift +++ b/Sources/DocumentationHarness/CodeBlockType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeBlockValidationParameters.swift b/Sources/DocumentationHarness/CodeBlockValidationParameters.swift index e13c0619..b9506fb8 100644 --- a/Sources/DocumentationHarness/CodeBlockValidationParameters.swift +++ b/Sources/DocumentationHarness/CodeBlockValidationParameters.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CodeSyntaxValidator.swift b/Sources/DocumentationHarness/CodeSyntaxValidator.swift index e14d1285..ce1e047f 100644 --- a/Sources/DocumentationHarness/CodeSyntaxValidator.swift +++ b/Sources/DocumentationHarness/CodeSyntaxValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/CompilationResult.swift b/Sources/DocumentationHarness/CompilationResult.swift index d6da20d3..b0d82ea5 100644 --- a/Sources/DocumentationHarness/CompilationResult.swift +++ b/Sources/DocumentationHarness/CompilationResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/DocumentationValidator.swift b/Sources/DocumentationHarness/DocumentationValidator.swift index cdc1a627..5b909631 100644 --- a/Sources/DocumentationHarness/DocumentationValidator.swift +++ b/Sources/DocumentationHarness/DocumentationValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileManager+Documentation.swift b/Sources/DocumentationHarness/FileManager+Documentation.swift index 0d6c4383..f20427e2 100644 --- a/Sources/DocumentationHarness/FileManager+Documentation.swift +++ b/Sources/DocumentationHarness/FileManager+Documentation.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileSearchError.swift b/Sources/DocumentationHarness/FileSearchError.swift index ad4e7e87..d6c997ef 100644 --- a/Sources/DocumentationHarness/FileSearchError.swift +++ b/Sources/DocumentationHarness/FileSearchError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/FileSearcher.swift b/Sources/DocumentationHarness/FileSearcher.swift index 4a059867..d3e5e0e4 100644 --- a/Sources/DocumentationHarness/FileSearcher.swift +++ b/Sources/DocumentationHarness/FileSearcher.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/PackageValidator.swift b/Sources/DocumentationHarness/PackageValidator.swift index b10107cd..92e126de 100644 --- a/Sources/DocumentationHarness/PackageValidator.swift +++ b/Sources/DocumentationHarness/PackageValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/SyntaxValidator.swift b/Sources/DocumentationHarness/SyntaxValidator.swift index f57a89d3..bd7b8f1c 100644 --- a/Sources/DocumentationHarness/SyntaxValidator.swift +++ b/Sources/DocumentationHarness/SyntaxValidator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/TestType.swift b/Sources/DocumentationHarness/TestType.swift index 40dcfe0b..4bd1200d 100644 --- a/Sources/DocumentationHarness/TestType.swift +++ b/Sources/DocumentationHarness/TestType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationError.swift b/Sources/DocumentationHarness/ValidationError.swift index d16a113f..209df092 100644 --- a/Sources/DocumentationHarness/ValidationError.swift +++ b/Sources/DocumentationHarness/ValidationError.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationParameters.swift b/Sources/DocumentationHarness/ValidationParameters.swift index 83af938a..04049a30 100644 --- a/Sources/DocumentationHarness/ValidationParameters.swift +++ b/Sources/DocumentationHarness/ValidationParameters.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/ValidationResult.swift b/Sources/DocumentationHarness/ValidationResult.swift index be9c55ab..8a514cf8 100644 --- a/Sources/DocumentationHarness/ValidationResult.swift +++ b/Sources/DocumentationHarness/ValidationResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/DocumentationHarness/Validator.swift b/Sources/DocumentationHarness/Validator.swift index b01a2e41..1fa27877 100644 --- a/Sources/DocumentationHarness/Validator.swift +++ b/Sources/DocumentationHarness/Validator.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/Attribute.swift b/Sources/SyntaxKit/Attributes/Attribute.swift index ec97159c..bca85db2 100644 --- a/Sources/SyntaxKit/Attributes/Attribute.swift +++ b/Sources/SyntaxKit/Attributes/Attribute.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/AttributeInfo.swift b/Sources/SyntaxKit/Attributes/AttributeInfo.swift index f6abde02..c78488bd 100644 --- a/Sources/SyntaxKit/Attributes/AttributeInfo.swift +++ b/Sources/SyntaxKit/Attributes/AttributeInfo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Attributes/Trivia+Comments.swift b/Sources/SyntaxKit/Attributes/Trivia+Comments.swift index dc008c00..362bd4e4 100644 --- a/Sources/SyntaxKit/Attributes/Trivia+Comments.swift +++ b/Sources/SyntaxKit/Attributes/Trivia+Comments.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift index e07fc1ca..19e0856c 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlock+ExprSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift index 914fdf6b..b2e69983 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlock+Generate.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift index c6a0b425..5e938053 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift index ec525560..61470654 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift b/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift index f19bb6f8..a5636b0e 100644 --- a/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift +++ b/Sources/SyntaxKit/CodeBlocks/CodeBlockItemSyntax.Item.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift index 1744372f..9faccb55 100644 --- a/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/CommentedCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift index 4ebdf4d0..d8be3dd7 100644 --- a/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/EmptyCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift b/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift index d48906d6..426e94e3 100644 --- a/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift +++ b/Sources/SyntaxKit/CodeBlocks/ExprCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Array+LiteralValue.swift b/Sources/SyntaxKit/Collections/Array+LiteralValue.swift index a77f5ca9..3bcc16c3 100644 --- a/Sources/SyntaxKit/Collections/Array+LiteralValue.swift +++ b/Sources/SyntaxKit/Collections/Array+LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/ArrayLiteral.swift b/Sources/SyntaxKit/Collections/ArrayLiteral.swift index e97be405..8301a55e 100644 --- a/Sources/SyntaxKit/Collections/ArrayLiteral.swift +++ b/Sources/SyntaxKit/Collections/ArrayLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift b/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift index 8a38ca05..5f190af6 100644 --- a/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/CodeBlock+DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift b/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift index 8762235c..6e0e219f 100644 --- a/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift +++ b/Sources/SyntaxKit/Collections/CodeBlockableLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift b/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift index c0b2b566..3cb73d9e 100644 --- a/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift +++ b/Sources/SyntaxKit/Collections/Dictionary+LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryExpr.swift b/Sources/SyntaxKit/Collections/DictionaryExpr.swift index ac6f1d95..1b896afe 100644 --- a/Sources/SyntaxKit/Collections/DictionaryExpr.swift +++ b/Sources/SyntaxKit/Collections/DictionaryExpr.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryLiteral.swift b/Sources/SyntaxKit/Collections/DictionaryLiteral.swift index 6f2cb29b..2703cb0d 100644 --- a/Sources/SyntaxKit/Collections/DictionaryLiteral.swift +++ b/Sources/SyntaxKit/Collections/DictionaryLiteral.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/DictionaryValue.swift b/Sources/SyntaxKit/Collections/DictionaryValue.swift index 088682eb..5389e5ae 100644 --- a/Sources/SyntaxKit/Collections/DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift b/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift index 5462c5eb..bac3e3ac 100644 --- a/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift +++ b/Sources/SyntaxKit/Collections/Literal+DictionaryValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/PatternCodeBlock.swift b/Sources/SyntaxKit/Collections/PatternCodeBlock.swift index 7734ea72..3cf1a5f5 100644 --- a/Sources/SyntaxKit/Collections/PatternCodeBlock.swift +++ b/Sources/SyntaxKit/Collections/PatternCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift b/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift index 8b01e258..612bfcfb 100644 --- a/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift +++ b/Sources/SyntaxKit/Collections/PatternConvertableCollection.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/Tuple.swift b/Sources/SyntaxKit/Collections/Tuple.swift index df42ff32..de529201 100644 --- a/Sources/SyntaxKit/Collections/Tuple.swift +++ b/Sources/SyntaxKit/Collections/Tuple.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift b/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift index a84f9bc4..2606a419 100644 --- a/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift +++ b/Sources/SyntaxKit/Collections/TupleAssignment+AsyncSet.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleAssignment.swift b/Sources/SyntaxKit/Collections/TupleAssignment.swift index 42b93649..0a832d3a 100644 --- a/Sources/SyntaxKit/Collections/TupleAssignment.swift +++ b/Sources/SyntaxKit/Collections/TupleAssignment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TupleLiteralArray.swift b/Sources/SyntaxKit/Collections/TupleLiteralArray.swift index 6e045d84..d7ebf24c 100644 --- a/Sources/SyntaxKit/Collections/TupleLiteralArray.swift +++ b/Sources/SyntaxKit/Collections/TupleLiteralArray.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Collections/TuplePattern.swift b/Sources/SyntaxKit/Collections/TuplePattern.swift index d7016601..09019768 100644 --- a/Sources/SyntaxKit/Collections/TuplePattern.swift +++ b/Sources/SyntaxKit/Collections/TuplePattern.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Do.swift b/Sources/SyntaxKit/ControlFlow/Do.swift index a9c4228a..40e6deb1 100644 --- a/Sources/SyntaxKit/ControlFlow/Do.swift +++ b/Sources/SyntaxKit/ControlFlow/Do.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/For.swift b/Sources/SyntaxKit/ControlFlow/For.swift index 2b790170..838908b2 100644 --- a/Sources/SyntaxKit/ControlFlow/For.swift +++ b/Sources/SyntaxKit/ControlFlow/For.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Guard.swift b/Sources/SyntaxKit/ControlFlow/Guard.swift index 47e12576..ee163a50 100644 --- a/Sources/SyntaxKit/ControlFlow/Guard.swift +++ b/Sources/SyntaxKit/ControlFlow/Guard.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+Body.swift b/Sources/SyntaxKit/ControlFlow/If+Body.swift index f6c5611f..9ff8bd96 100644 --- a/Sources/SyntaxKit/ControlFlow/If+Body.swift +++ b/Sources/SyntaxKit/ControlFlow/If+Body.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift b/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift index c98e80e7..844d100e 100644 --- a/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift +++ b/Sources/SyntaxKit/ControlFlow/If+CodeBlockItem.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+Conditions.swift b/Sources/SyntaxKit/ControlFlow/If+Conditions.swift index 144331ef..4b410d13 100644 --- a/Sources/SyntaxKit/ControlFlow/If+Conditions.swift +++ b/Sources/SyntaxKit/ControlFlow/If+Conditions.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift b/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift index a4b373bc..fdabcecd 100644 --- a/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift +++ b/Sources/SyntaxKit/ControlFlow/If+ElseBody.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/If.swift b/Sources/SyntaxKit/ControlFlow/If.swift index 0bdc5da5..5faff9d6 100644 --- a/Sources/SyntaxKit/ControlFlow/If.swift +++ b/Sources/SyntaxKit/ControlFlow/If.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/Switch.swift b/Sources/SyntaxKit/ControlFlow/Switch.swift index b1327a6b..00d75d84 100644 --- a/Sources/SyntaxKit/ControlFlow/Switch.swift +++ b/Sources/SyntaxKit/ControlFlow/Switch.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/SwitchCase.swift b/Sources/SyntaxKit/ControlFlow/SwitchCase.swift index 25a3b038..dc08c721 100644 --- a/Sources/SyntaxKit/ControlFlow/SwitchCase.swift +++ b/Sources/SyntaxKit/ControlFlow/SwitchCase.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/SwitchLet.swift b/Sources/SyntaxKit/ControlFlow/SwitchLet.swift index 83cacb29..34d496d2 100644 --- a/Sources/SyntaxKit/ControlFlow/SwitchLet.swift +++ b/Sources/SyntaxKit/ControlFlow/SwitchLet.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ControlFlow/While.swift b/Sources/SyntaxKit/ControlFlow/While.swift index 611d8253..501aba5f 100644 --- a/Sources/SyntaxKit/ControlFlow/While.swift +++ b/Sources/SyntaxKit/ControlFlow/While.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/AccessModifier.swift b/Sources/SyntaxKit/Core/AccessModifier.swift index 210a367b..dee542cf 100644 --- a/Sources/SyntaxKit/Core/AccessModifier.swift +++ b/Sources/SyntaxKit/Core/AccessModifier.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/CaptureReferenceType.swift b/Sources/SyntaxKit/Core/CaptureReferenceType.swift index f64d44f1..fa3f9e3c 100644 --- a/Sources/SyntaxKit/Core/CaptureReferenceType.swift +++ b/Sources/SyntaxKit/Core/CaptureReferenceType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/CodeBlock.swift b/Sources/SyntaxKit/Core/CodeBlock.swift index a09318c2..c0471945 100644 --- a/Sources/SyntaxKit/Core/CodeBlock.swift +++ b/Sources/SyntaxKit/Core/CodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift b/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift index eee4edbc..920d8656 100644 --- a/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift +++ b/Sources/SyntaxKit/Core/ExprCodeBlockBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift b/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift index 9c6a2549..c071ef9d 100644 --- a/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift +++ b/Sources/SyntaxKit/Core/Keyword+AccessModifier.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift b/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift index 7c8ec1cb..b23b12a7 100644 --- a/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift +++ b/Sources/SyntaxKit/Core/Keyword+CaptureReferenceType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Line+Trivia.swift b/Sources/SyntaxKit/Core/Line+Trivia.swift index e400af11..522a36f5 100644 --- a/Sources/SyntaxKit/Core/Line+Trivia.swift +++ b/Sources/SyntaxKit/Core/Line+Trivia.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/Line.swift b/Sources/SyntaxKit/Core/Line.swift index 7bd3c89c..11cd3158 100644 --- a/Sources/SyntaxKit/Core/Line.swift +++ b/Sources/SyntaxKit/Core/Line.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/PatternConvertible.swift b/Sources/SyntaxKit/Core/PatternConvertible.swift index 27fbacea..81eac53d 100644 --- a/Sources/SyntaxKit/Core/PatternConvertible.swift +++ b/Sources/SyntaxKit/Core/PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift b/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift index f22d7712..fb26580a 100644 --- a/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift +++ b/Sources/SyntaxKit/Core/PatternConvertibleBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/String+TypeRepresentable.swift b/Sources/SyntaxKit/Core/String+TypeRepresentable.swift index 4a2231c3..b4cbcad0 100644 --- a/Sources/SyntaxKit/Core/String+TypeRepresentable.swift +++ b/Sources/SyntaxKit/Core/String+TypeRepresentable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Core/TypeRepresentable.swift b/Sources/SyntaxKit/Core/TypeRepresentable.swift index 4d6fc254..84ba86c7 100644 --- a/Sources/SyntaxKit/Core/TypeRepresentable.swift +++ b/Sources/SyntaxKit/Core/TypeRepresentable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Class.swift b/Sources/SyntaxKit/Declarations/Class.swift index 2b6c03fc..430facba 100644 --- a/Sources/SyntaxKit/Declarations/Class.swift +++ b/Sources/SyntaxKit/Declarations/Class.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Enum.swift b/Sources/SyntaxKit/Declarations/Enum.swift index d915fd1e..cb7e12bc 100644 --- a/Sources/SyntaxKit/Declarations/Enum.swift +++ b/Sources/SyntaxKit/Declarations/Enum.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Extension.swift b/Sources/SyntaxKit/Declarations/Extension.swift index 8c883289..a9faf08d 100644 --- a/Sources/SyntaxKit/Declarations/Extension.swift +++ b/Sources/SyntaxKit/Declarations/Extension.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Import.swift b/Sources/SyntaxKit/Declarations/Import.swift index 2a94b716..7448c539 100644 --- a/Sources/SyntaxKit/Declarations/Import.swift +++ b/Sources/SyntaxKit/Declarations/Import.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Init.swift b/Sources/SyntaxKit/Declarations/Init.swift index 4adb18dc..e692ef78 100644 --- a/Sources/SyntaxKit/Declarations/Init.swift +++ b/Sources/SyntaxKit/Declarations/Init.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Protocol.swift b/Sources/SyntaxKit/Declarations/Protocol.swift index d93abf4c..93392a50 100644 --- a/Sources/SyntaxKit/Declarations/Protocol.swift +++ b/Sources/SyntaxKit/Declarations/Protocol.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Struct+Public.swift b/Sources/SyntaxKit/Declarations/Struct+Public.swift index cedbd78a..b7ce7167 100644 --- a/Sources/SyntaxKit/Declarations/Struct+Public.swift +++ b/Sources/SyntaxKit/Declarations/Struct+Public.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/Struct.swift b/Sources/SyntaxKit/Declarations/Struct.swift index caaec042..8ba953bc 100644 --- a/Sources/SyntaxKit/Declarations/Struct.swift +++ b/Sources/SyntaxKit/Declarations/Struct.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Declarations/TypeAlias.swift b/Sources/SyntaxKit/Declarations/TypeAlias.swift index 4b6fe9b9..7a794b0f 100644 --- a/Sources/SyntaxKit/Declarations/TypeAlias.swift +++ b/Sources/SyntaxKit/Declarations/TypeAlias.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift b/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift index 92b66f85..17c42a08 100644 --- a/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift +++ b/Sources/SyntaxKit/Documentation.docc/Tutorials/Resources/QuickStartDemo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/Catch.swift b/Sources/SyntaxKit/ErrorHandling/Catch.swift index 1797179f..652118c7 100644 --- a/Sources/SyntaxKit/ErrorHandling/Catch.swift +++ b/Sources/SyntaxKit/ErrorHandling/Catch.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift b/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift index f1340c08..5457b64b 100644 --- a/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift +++ b/Sources/SyntaxKit/ErrorHandling/CatchBuilder.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/ErrorHandling/Throw.swift b/Sources/SyntaxKit/ErrorHandling/Throw.swift index 51f92416..647f0b15 100644 --- a/Sources/SyntaxKit/ErrorHandling/Throw.swift +++ b/Sources/SyntaxKit/ErrorHandling/Throw.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Assignment.swift b/Sources/SyntaxKit/Expressions/Assignment.swift index 4cfb55cd..94153cf6 100644 --- a/Sources/SyntaxKit/Expressions/Assignment.swift +++ b/Sources/SyntaxKit/Expressions/Assignment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Call.swift b/Sources/SyntaxKit/Expressions/Call.swift index f7b951a9..db2163c8 100644 --- a/Sources/SyntaxKit/Expressions/Call.swift +++ b/Sources/SyntaxKit/Expressions/Call.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/CaptureInfo.swift b/Sources/SyntaxKit/Expressions/CaptureInfo.swift index 69f4847f..01cf9b84 100644 --- a/Sources/SyntaxKit/Expressions/CaptureInfo.swift +++ b/Sources/SyntaxKit/Expressions/CaptureInfo.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Body.swift b/Sources/SyntaxKit/Expressions/Closure+Body.swift index cc5cb2b8..e1df2acf 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Body.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Body.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Capture.swift b/Sources/SyntaxKit/Expressions/Closure+Capture.swift index 04d6807a..66a77bb0 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Capture.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Capture.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure+Signature.swift b/Sources/SyntaxKit/Expressions/Closure+Signature.swift index 03b75d35..1da5a372 100644 --- a/Sources/SyntaxKit/Expressions/Closure+Signature.swift +++ b/Sources/SyntaxKit/Expressions/Closure+Signature.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Closure.swift b/Sources/SyntaxKit/Expressions/Closure.swift index 8941f030..2b1d7ab9 100644 --- a/Sources/SyntaxKit/Expressions/Closure.swift +++ b/Sources/SyntaxKit/Expressions/Closure.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureParameter.swift b/Sources/SyntaxKit/Expressions/ClosureParameter.swift index 49a919c9..19e53225 100644 --- a/Sources/SyntaxKit/Expressions/ClosureParameter.swift +++ b/Sources/SyntaxKit/Expressions/ClosureParameter.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift b/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift index 6e0a8b94..f0af279d 100644 --- a/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift +++ b/Sources/SyntaxKit/Expressions/ClosureParameterBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ClosureType.swift b/Sources/SyntaxKit/Expressions/ClosureType.swift index e2fb1779..ba5cd5c9 100644 --- a/Sources/SyntaxKit/Expressions/ClosureType.swift +++ b/Sources/SyntaxKit/Expressions/ClosureType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ConditionalOp.swift b/Sources/SyntaxKit/Expressions/ConditionalOp.swift index d2c55899..2c622368 100644 --- a/Sources/SyntaxKit/Expressions/ConditionalOp.swift +++ b/Sources/SyntaxKit/Expressions/ConditionalOp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/FunctionCallExp.swift b/Sources/SyntaxKit/Expressions/FunctionCallExp.swift index 5f3a8782..821b9207 100644 --- a/Sources/SyntaxKit/Expressions/FunctionCallExp.swift +++ b/Sources/SyntaxKit/Expressions/FunctionCallExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Infix+Comparison.swift b/Sources/SyntaxKit/Expressions/Infix+Comparison.swift index fa88f6a9..97f49de8 100644 --- a/Sources/SyntaxKit/Expressions/Infix+Comparison.swift +++ b/Sources/SyntaxKit/Expressions/Infix+Comparison.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Infix.swift b/Sources/SyntaxKit/Expressions/Infix.swift index 534c29c2..3d04ae60 100644 --- a/Sources/SyntaxKit/Expressions/Infix.swift +++ b/Sources/SyntaxKit/Expressions/Infix.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+Convenience.swift b/Sources/SyntaxKit/Expressions/Literal+Convenience.swift index 2a0e5815..1e89f93e 100644 --- a/Sources/SyntaxKit/Expressions/Literal+Convenience.swift +++ b/Sources/SyntaxKit/Expressions/Literal+Convenience.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift b/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift index be54e85a..3173b20b 100644 --- a/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift +++ b/Sources/SyntaxKit/Expressions/Literal+ExprCodeBlock.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift b/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift index d0eda07a..116d163a 100644 --- a/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift +++ b/Sources/SyntaxKit/Expressions/Literal+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Literal.swift b/Sources/SyntaxKit/Expressions/Literal.swift index 1b5ddb1d..df93d0a4 100644 --- a/Sources/SyntaxKit/Expressions/Literal.swift +++ b/Sources/SyntaxKit/Expressions/Literal.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/LiteralValue.swift b/Sources/SyntaxKit/Expressions/LiteralValue.swift index 16c09c8a..0cb67765 100644 --- a/Sources/SyntaxKit/Expressions/LiteralValue.swift +++ b/Sources/SyntaxKit/Expressions/LiteralValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift b/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift index 4ce67d32..336143fa 100644 --- a/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift +++ b/Sources/SyntaxKit/Expressions/NegatedPropertyAccessExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift b/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift index c287679b..832b5385 100644 --- a/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift +++ b/Sources/SyntaxKit/Expressions/OptionalChainingExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PlusAssign.swift b/Sources/SyntaxKit/Expressions/PlusAssign.swift index ed3d6e00..9fe5aeaa 100644 --- a/Sources/SyntaxKit/Expressions/PlusAssign.swift +++ b/Sources/SyntaxKit/Expressions/PlusAssign.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift b/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift index 86dced06..fe22de91 100644 --- a/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift +++ b/Sources/SyntaxKit/Expressions/PropertyAccessExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/PropertyAccessible.swift b/Sources/SyntaxKit/Expressions/PropertyAccessible.swift index 2faa69d2..54fec400 100644 --- a/Sources/SyntaxKit/Expressions/PropertyAccessible.swift +++ b/Sources/SyntaxKit/Expressions/PropertyAccessible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/ReferenceExp.swift b/Sources/SyntaxKit/Expressions/ReferenceExp.swift index 5e78b3cf..324f7fd2 100644 --- a/Sources/SyntaxKit/Expressions/ReferenceExp.swift +++ b/Sources/SyntaxKit/Expressions/ReferenceExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Expressions/Return.swift b/Sources/SyntaxKit/Expressions/Return.swift index 8ccbbf07..4f2356ff 100644 --- a/Sources/SyntaxKit/Expressions/Return.swift +++ b/Sources/SyntaxKit/Expressions/Return.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift b/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift index da188940..0c317481 100644 --- a/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift +++ b/Sources/SyntaxKit/Functions/Function+EffectSpecifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Effects.swift b/Sources/SyntaxKit/Functions/Function+Effects.swift index 7765f4c6..f7a1a9c7 100644 --- a/Sources/SyntaxKit/Functions/Function+Effects.swift +++ b/Sources/SyntaxKit/Functions/Function+Effects.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Modifiers.swift b/Sources/SyntaxKit/Functions/Function+Modifiers.swift index f50e427a..cb1a7343 100644 --- a/Sources/SyntaxKit/Functions/Function+Modifiers.swift +++ b/Sources/SyntaxKit/Functions/Function+Modifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function+Syntax.swift b/Sources/SyntaxKit/Functions/Function+Syntax.swift index 9a7d652a..78fc29e7 100644 --- a/Sources/SyntaxKit/Functions/Function+Syntax.swift +++ b/Sources/SyntaxKit/Functions/Function+Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/Function.swift b/Sources/SyntaxKit/Functions/Function.swift index dabae9f7..3901f3f1 100644 --- a/Sources/SyntaxKit/Functions/Function.swift +++ b/Sources/SyntaxKit/Functions/Function.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift b/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift index f6457082..018c38af 100644 --- a/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift +++ b/Sources/SyntaxKit/Functions/FunctionParameterSyntax+Init.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Functions/FunctionRequirement.swift b/Sources/SyntaxKit/Functions/FunctionRequirement.swift index 341dd80c..2968d599 100644 --- a/Sources/SyntaxKit/Functions/FunctionRequirement.swift +++ b/Sources/SyntaxKit/Functions/FunctionRequirement.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/Parameter.swift b/Sources/SyntaxKit/Parameters/Parameter.swift index 1b154751..50c7be83 100644 --- a/Sources/SyntaxKit/Parameters/Parameter.swift +++ b/Sources/SyntaxKit/Parameters/Parameter.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift b/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift index 7b8cafc5..a0590f3d 100644 --- a/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift +++ b/Sources/SyntaxKit/Parameters/ParameterBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterExp.swift b/Sources/SyntaxKit/Parameters/ParameterExp.swift index 8cdf23c8..d55921d3 100644 --- a/Sources/SyntaxKit/Parameters/ParameterExp.swift +++ b/Sources/SyntaxKit/Parameters/ParameterExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift b/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift index e8aad4b9..855a9694 100644 --- a/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift +++ b/Sources/SyntaxKit/Parameters/ParameterExpBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift index 686672a4..99bd3af7 100644 --- a/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/Int+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/LetBindingPattern.swift b/Sources/SyntaxKit/Patterns/LetBindingPattern.swift index f7da63c5..81573b1a 100644 --- a/Sources/SyntaxKit/Patterns/LetBindingPattern.swift +++ b/Sources/SyntaxKit/Patterns/LetBindingPattern.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift index 9ac7bb79..d06396dd 100644 --- a/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/Range+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift b/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift index 6fd2da7f..c66d559c 100644 --- a/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift +++ b/Sources/SyntaxKit/Patterns/String+PatternConvertible.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Break.swift b/Sources/SyntaxKit/Utilities/Break.swift index cf1e33ed..2607b059 100644 --- a/Sources/SyntaxKit/Utilities/Break.swift +++ b/Sources/SyntaxKit/Utilities/Break.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Case.swift b/Sources/SyntaxKit/Utilities/Case.swift index b403ded9..aa93f031 100644 --- a/Sources/SyntaxKit/Utilities/Case.swift +++ b/Sources/SyntaxKit/Utilities/Case.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift b/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift index d1dbbf4e..936d2169 100644 --- a/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift +++ b/Sources/SyntaxKit/Utilities/CodeBlock+Comment.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CodeBlockable.swift b/Sources/SyntaxKit/Utilities/CodeBlockable.swift index ac42259b..bf36ce07 100644 --- a/Sources/SyntaxKit/Utilities/CodeBlockable.swift +++ b/Sources/SyntaxKit/Utilities/CodeBlockable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift b/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift index 798f2f17..a3664447 100644 --- a/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift +++ b/Sources/SyntaxKit/Utilities/CommentBuilderResult.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Continue.swift b/Sources/SyntaxKit/Utilities/Continue.swift index 4f1fe599..93cde82a 100644 --- a/Sources/SyntaxKit/Utilities/Continue.swift +++ b/Sources/SyntaxKit/Utilities/Continue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Default.swift b/Sources/SyntaxKit/Utilities/Default.swift index fc7b04cb..fe26eb0f 100644 --- a/Sources/SyntaxKit/Utilities/Default.swift +++ b/Sources/SyntaxKit/Utilities/Default.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift b/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift index a2a99a73..62bfc560 100644 --- a/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift +++ b/Sources/SyntaxKit/Utilities/EnumCase+Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/EnumCase.swift b/Sources/SyntaxKit/Utilities/EnumCase.swift index 808976bf..8668de57 100644 --- a/Sources/SyntaxKit/Utilities/EnumCase.swift +++ b/Sources/SyntaxKit/Utilities/EnumCase.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Fallthrough.swift b/Sources/SyntaxKit/Utilities/Fallthrough.swift index ce2d891c..886e4db7 100644 --- a/Sources/SyntaxKit/Utilities/Fallthrough.swift +++ b/Sources/SyntaxKit/Utilities/Fallthrough.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Group.swift b/Sources/SyntaxKit/Utilities/Group.swift index 58a7187f..b81455b8 100644 --- a/Sources/SyntaxKit/Utilities/Group.swift +++ b/Sources/SyntaxKit/Utilities/Group.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Let.swift b/Sources/SyntaxKit/Utilities/Let.swift index 76000263..89633ea0 100644 --- a/Sources/SyntaxKit/Utilities/Let.swift +++ b/Sources/SyntaxKit/Utilities/Let.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Parenthesized.swift b/Sources/SyntaxKit/Utilities/Parenthesized.swift index 068c9d32..c452553e 100644 --- a/Sources/SyntaxKit/Utilities/Parenthesized.swift +++ b/Sources/SyntaxKit/Utilities/Parenthesized.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/PropertyRequirement.swift b/Sources/SyntaxKit/Utilities/PropertyRequirement.swift index 5620b9eb..fcf89227 100644 --- a/Sources/SyntaxKit/Utilities/PropertyRequirement.swift +++ b/Sources/SyntaxKit/Utilities/PropertyRequirement.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Utilities/Then.swift b/Sources/SyntaxKit/Utilities/Then.swift index ea85cee7..a9bb5002 100644 --- a/Sources/SyntaxKit/Utilities/Then.swift +++ b/Sources/SyntaxKit/Utilities/Then.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/AttributeArguments.swift b/Sources/SyntaxKit/Variables/AttributeArguments.swift index b911b95c..0fbf4f90 100644 --- a/Sources/SyntaxKit/Variables/AttributeArguments.swift +++ b/Sources/SyntaxKit/Variables/AttributeArguments.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/ComputedProperty.swift b/Sources/SyntaxKit/Variables/ComputedProperty.swift index a9de0069..2a40eb4b 100644 --- a/Sources/SyntaxKit/Variables/ComputedProperty.swift +++ b/Sources/SyntaxKit/Variables/ComputedProperty.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+Attributes.swift b/Sources/SyntaxKit/Variables/Variable+Attributes.swift index 6f4f9541..5f44527f 100644 --- a/Sources/SyntaxKit/Variables/Variable+Attributes.swift +++ b/Sources/SyntaxKit/Variables/Variable+Attributes.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift b/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift index 5769bacf..85d0f057 100644 --- a/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift +++ b/Sources/SyntaxKit/Variables/Variable+LiteralInitializers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+Modifiers.swift b/Sources/SyntaxKit/Variables/Variable+Modifiers.swift index ef9ca428..bfaf90d0 100644 --- a/Sources/SyntaxKit/Variables/Variable+Modifiers.swift +++ b/Sources/SyntaxKit/Variables/Variable+Modifiers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift b/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift index 4f8e4d11..a8f4c4a6 100644 --- a/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift +++ b/Sources/SyntaxKit/Variables/Variable+TypedInitializers.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/Variable.swift b/Sources/SyntaxKit/Variables/Variable.swift index 7c2b83db..7f637df9 100644 --- a/Sources/SyntaxKit/Variables/Variable.swift +++ b/Sources/SyntaxKit/Variables/Variable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/VariableExp.swift b/Sources/SyntaxKit/Variables/VariableExp.swift index 70e55e9e..249b52f3 100644 --- a/Sources/SyntaxKit/Variables/VariableExp.swift +++ b/Sources/SyntaxKit/Variables/VariableExp.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxKit/Variables/VariableKind.swift b/Sources/SyntaxKit/Variables/VariableKind.swift index 375c84e5..1072af50 100644 --- a/Sources/SyntaxKit/Variables/VariableKind.swift +++ b/Sources/SyntaxKit/Variables/VariableKind.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SourceRange.swift b/Sources/SyntaxParser/SourceRange.swift index 2f8277db..f965f64a 100644 --- a/Sources/SyntaxParser/SourceRange.swift +++ b/Sources/SyntaxParser/SourceRange.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SyntaxParser.swift b/Sources/SyntaxParser/SyntaxParser.swift index be15e1e6..043947e1 100644 --- a/Sources/SyntaxParser/SyntaxParser.swift +++ b/Sources/SyntaxParser/SyntaxParser.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/SyntaxResponse.swift b/Sources/SyntaxParser/SyntaxResponse.swift index 03bd0c35..0c29b826 100644 --- a/Sources/SyntaxParser/SyntaxResponse.swift +++ b/Sources/SyntaxParser/SyntaxResponse.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/SyntaxParser/TreeNode.swift b/Sources/SyntaxParser/TreeNode.swift index b5e9070e..65280105 100644 --- a/Sources/SyntaxParser/TreeNode.swift +++ b/Sources/SyntaxParser/TreeNode.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/String.swift b/Sources/TokenVisitor/String.swift index 0596f1d1..4b1c9431 100644 --- a/Sources/TokenVisitor/String.swift +++ b/Sources/TokenVisitor/String.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/StructureProperty.swift b/Sources/TokenVisitor/StructureProperty.swift index 9c0e7223..f90124d9 100644 --- a/Sources/TokenVisitor/StructureProperty.swift +++ b/Sources/TokenVisitor/StructureProperty.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/StructureValue.swift b/Sources/TokenVisitor/StructureValue.swift index 2d712d8c..dea1d778 100644 --- a/Sources/TokenVisitor/StructureValue.swift +++ b/Sources/TokenVisitor/StructureValue.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/Syntax.swift b/Sources/TokenVisitor/Syntax.swift index b7c49860..7466f55a 100644 --- a/Sources/TokenVisitor/Syntax.swift +++ b/Sources/TokenVisitor/Syntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable.swift b/Sources/TokenVisitor/SyntaxClassifiable.swift index 5c4d257c..4c9b213d 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift index ffbcce65..301a6862 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/AttributeListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift index 7b5bb5e9..6eaf0ab5 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/CatchClauseListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift index a995662f..e6ead13e 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/CodeBlockItemListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift index c05d48ed..22c0b7d7 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/ConditionElementListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift index 8aeff351..f80cb3b5 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/DeclModifierListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift index 52cee4b3..d0ee3af3 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/DeclSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift index 53e06948..1f10ae1f 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/ExprSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift index 193e4abd..8ecd6440 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/FunctionParameterListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift index 77558f49..813e9618 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierPatternSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift index 4ca24bd8..cb37f9cf 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/IdentifierTypeSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift index ff5df70b..1b15d161 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/LabeledExprListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift index 4fbf53ab..50ae2901 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/PatternBindingListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift index 51921a87..2f26c037 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/PatternSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift index 712fcd8d..375ffcbd 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseItemListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift index ea265fff..966ed261 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/SwitchCaseListSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift index 6b3d0644..9553cbd4 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/TypeSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift b/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift index fd80582b..35541388 100644 --- a/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift +++ b/Sources/TokenVisitor/SyntaxClassifiable/VariableDeclSyntax.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/SyntaxType.swift b/Sources/TokenVisitor/SyntaxType.swift index 04ec81c1..377b159a 100644 --- a/Sources/TokenVisitor/SyntaxType.swift +++ b/Sources/TokenVisitor/SyntaxType.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/Token.swift b/Sources/TokenVisitor/Token.swift index 1679c68f..52ed0b68 100644 --- a/Sources/TokenVisitor/Token.swift +++ b/Sources/TokenVisitor/Token.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TokenVisitor.swift b/Sources/TokenVisitor/TokenVisitor.swift index 9a3b6191..e288dfbb 100644 --- a/Sources/TokenVisitor/TokenVisitor.swift +++ b/Sources/TokenVisitor/TokenVisitor.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift b/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift index 1a4c9262..035e572b 100644 --- a/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift +++ b/Sources/TokenVisitor/TreeNodeProtocol+Extensions.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TreeNodeProtocol.swift b/Sources/TokenVisitor/TreeNodeProtocol.swift index 6564cd2b..215a4be5 100644 --- a/Sources/TokenVisitor/TreeNodeProtocol.swift +++ b/Sources/TokenVisitor/TreeNodeProtocol.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/TokenVisitor/TriviaPiece.swift b/Sources/TokenVisitor/TriviaPiece.swift index 0d013ca9..edc54912 100644 --- a/Sources/TokenVisitor/TriviaPiece.swift +++ b/Sources/TokenVisitor/TriviaPiece.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation diff --git a/Sources/skit/Skit.swift b/Sources/skit/Skit.swift index 1066b5e2..c69237a1 100644 --- a/Sources/skit/Skit.swift +++ b/Sources/skit/Skit.swift @@ -3,7 +3,7 @@ // SyntaxKit // // Created by Leo Dion. -// Copyright © 2026 BrightDigit. +// Copyright © 2025 BrightDigit. // // Permission is hereby granted, free of charge, to any person // obtaining a copy of this software and associated documentation From e008d95eea417d9124da31a5e2367de6cc7428b9 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Fri, 3 Apr 2026 16:54:26 -0400 Subject: [PATCH 6/9] Address PR review: guard mise env, document asdf plugin, update CLAUDE.md versions Co-Authored-By: Claude Sonnet 4.6 --- .mise.toml | 2 ++ CLAUDE.md | 6 +++--- Scripts/lint.sh | 6 ++++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.mise.toml b/.mise.toml index 599c750d..8781d0d1 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,4 +1,6 @@ [tools] swiftlint = "0.63.2" periphery = "3.7.2" +# Community asdf plugin — builds swift-format from source (no official binary releases) +# Plugin repo: https://github.com/eelcokoelewijn/asdf-swift-format "asdf:eelcokoelewijn/asdf-swift-format" = "602.0.0" diff --git a/CLAUDE.md b/CLAUDE.md index d05d27b6..a09a578d 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -82,9 +82,9 @@ Sources/SyntaxKit/ - **SwiftDocC Plugin** (1.4.0+) - Documentation generation ### Quality Tools -- **SwiftFormat** (600.0.0) - Code formatting -- **SwiftLint** (0.58.2) - Static analysis (90+ opt-in rules) -- **Periphery** (3.0.1) - Unused code detection +- **SwiftFormat** (602.0.0) - Code formatting +- **SwiftLint** (0.63.2) - Static analysis (90+ opt-in rules) +- **Periphery** (3.7.2) - Unused code detection ## Project Structure diff --git a/Scripts/lint.sh b/Scripts/lint.sh index cb7774e8..78fc37eb 100755 --- a/Scripts/lint.sh +++ b/Scripts/lint.sh @@ -39,11 +39,13 @@ else STRINGSLINT_OPTIONS="--config .stringslint.yml" fi -pushd $PACKAGE_DIR +pushd "$PACKAGE_DIR" if [ -z "$CI" ]; then mise install fi -eval "$(mise env)" +if command -v mise &> /dev/null; then + eval "$(mise env)" +fi if [ -z "$CI" ]; then run_command swift-format format $SWIFTFORMAT_OPTIONS --recursive --parallel --in-place Sources Tests From 97d29b9aeb1481644f3d53e395a00f7d55f4c7f5 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Sat, 4 Apr 2026 17:02:04 -0400 Subject: [PATCH 7/9] Restrict periphery installation to macOS platforms only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit periphery has no Linux binaries (SourceKit is macOS-only), so mise fails to install it on ubuntu CI runners. Use mise platforms filter to skip it on Linux — periphery was already excluded from CI execution in lint.sh. Co-Authored-By: Claude Sonnet 4.6 --- .mise.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mise.toml b/.mise.toml index 8781d0d1..a1bef73e 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,6 +1,6 @@ [tools] swiftlint = "0.63.2" -periphery = "3.7.2" +periphery = {version = "3.7.2", platforms = ["macos-arm64", "macos-x64"]} # Community asdf plugin — builds swift-format from source (no official binary releases) # Plugin repo: https://github.com/eelcokoelewijn/asdf-swift-format "asdf:eelcokoelewijn/asdf-swift-format" = "602.0.0" From 9a20cf0e65cf6e36256741d4b0d03b087bdd05cb Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Sat, 4 Apr 2026 17:48:55 -0400 Subject: [PATCH 8/9] Fix periphery mise install on Linux, disable lint dependencies for testing Use mise os conditional to skip periphery on Linux (macOS-only tool). Temporarily remove lint job dependencies to speed up CI testing. Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/SyntaxKit.yml | 2 +- .mise.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/SyntaxKit.yml b/.github/workflows/SyntaxKit.yml index 798806b4..2f0ab764 100644 --- a/.github/workflows/SyntaxKit.yml +++ b/.github/workflows/SyntaxKit.yml @@ -307,7 +307,7 @@ jobs: # !failure() allows this job to proceed past skipped (not failed) dependencies. if: ${{ !cancelled() && !failure() && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }} runs-on: ubuntu-latest - needs: [build-ubuntu, build-macos, build-windows, build-macos-full, build-android] + needs: [] steps: - uses: actions/checkout@v6 - uses: jdx/mise-action@v4 diff --git a/.mise.toml b/.mise.toml index a1bef73e..a5bd89f0 100644 --- a/.mise.toml +++ b/.mise.toml @@ -1,6 +1,6 @@ [tools] swiftlint = "0.63.2" -periphery = {version = "3.7.2", platforms = ["macos-arm64", "macos-x64"]} +periphery = {version = "3.7.2", os = ["macos"]} # Community asdf plugin — builds swift-format from source (no official binary releases) # Plugin repo: https://github.com/eelcokoelewijn/asdf-swift-format "asdf:eelcokoelewijn/asdf-swift-format" = "602.0.0" From 84d0d11b66c7547f73dd831d3d5a01d48e7269a0 Mon Sep 17 00:00:00 2001 From: Leo Dion Date: Sat, 4 Apr 2026 17:58:17 -0400 Subject: [PATCH 9/9] Restore lint job dependencies Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/SyntaxKit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/SyntaxKit.yml b/.github/workflows/SyntaxKit.yml index 2f0ab764..798806b4 100644 --- a/.github/workflows/SyntaxKit.yml +++ b/.github/workflows/SyntaxKit.yml @@ -307,7 +307,7 @@ jobs: # !failure() allows this job to proceed past skipped (not failed) dependencies. if: ${{ !cancelled() && !failure() && (github.event_name == 'pull_request' || !contains(github.event.head_commit.message, 'ci skip')) }} runs-on: ubuntu-latest - needs: [] + needs: [build-ubuntu, build-macos, build-windows, build-macos-full, build-android] steps: - uses: actions/checkout@v6 - uses: jdx/mise-action@v4