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 9df2099..dfe2e1c 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 0000000..45b0a18 --- /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 4386537..0000000 --- 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 fea08ac..366aeca 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 dfe2e1c..798806b 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 45b0a18..599c750 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 366aeca..f0dd740 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 f0dd740..ac3974a 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 ac3974a..49d8c50 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 7c61d0c..00124de 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 49bd47d..c742e7c 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 8af306a..51cc82a 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 828a36e..5eac86e 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 3f35f3b..0843509 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 b9506fb..e13c061 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 ce1e047..e14d128 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 b0d82ea..d6da20d 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 5b90963..cdc1a62 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 f20427e..0d6c438 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 d6c997e..ad4e7e8 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 d3e5e0e..4a05986 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 92e126d..b10107c 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 bd7b8f1..f57a89d 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 4bd1200..40dcfe0 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 209df09..d16a113 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 04049a3..83af938 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 8a514cf..be9c55a 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 1fa2787..b01a2e4 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 bca85db..ec97159 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 c78488b..f6abde0 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 362bd4e..dc008c0 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 19e0856..e07fc1c 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 b2e6998..914fdf6 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 5e93805..c6a0b42 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 6147065..ec52556 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 a5636b0..f19bb6f 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 9faccb5..1744372 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 d8be3dd..4ebdf4d 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 426e94e..d48906d 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 3bcc16c..a77f5ca 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 8301a55..e97be40 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 5f190af..8a38ca0 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 6e0e219..8762235 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 3cb73d9..c0b2b56 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 1b896af..ac6f1d9 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 2703cb0..6f2cb29 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 5389e5a..088682e 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 bac3e3a..5462c5e 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 3cf1a5f..7734ea7 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 612bfcf..8b01e25 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 de52920..df42ff3 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 2606a41..a84f9bc 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 0a832d3..42b9364 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 d7ebf24..6e045d8 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 0901976..d701660 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 40e6deb..a9c4228 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 838908b..2b79017 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 ee163a5..47e1257 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 9ff8bd9..f6c5611 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 844d100..c98e80e 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 4b410d1..144331e 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 fdabcec..a4b373b 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 5faff9d..0bdc5da 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 00d75d8..b1327a6 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 dc08c72..25a3b03 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 34d496d..83cacb2 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 501aba5..611d825 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 dee542c..210a367 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 fa3f9e3..f64d44f 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 c047194..a09318c 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 920d865..eee4edb 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 c071ef9..9c6a254 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 b23b12a..7c8ec1c 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 522a36f..e400af1 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 11cd315..7bd3c89 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 81eac53..27fbace 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 fb26580..f22d771 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 b4cbcad..4a2231c 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 84ba86c..4d6fc25 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 430facb..2b6c03f 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 cb7e12b..d915fd1 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 a9faf08..8c88328 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 7448c53..2a94b71 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 e692ef7..4adb18d 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 93392a5..d93abf4 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 b7ce716..cedbd78 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 8ba953b..caaec04 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 7a794b0..4b6fe9b 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 17c42a0..92b66f8 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 652118c..1797179 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 5457b64..f1340c0 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 647f0b1..51f9241 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 94153cf..4cfb55c 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 db2163c..f7b951a 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 01cf9b8..69f4847 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 e1df2ac..cc5cb2b 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 66a77bb..04d6807 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 1da5a37..03b75d3 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 2b1d7ab..8941f03 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 19e5322..49a919c 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 f0af279..6e0a8b9 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 ba5cd5c..e2fb177 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 2c62236..d2c5589 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 821b920..5f3a878 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 97f49de..fa88f6a 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 3d04ae6..534c29c 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 1e89f93..2a0e581 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 3173b20..be54e85 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 116d163..d0eda07 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 df93d0a..1b5ddb1 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 0cb6776..16c09c8 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 336143f..4ce67d3 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 832b538..c287679 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 9fe5aea..ed3d6e0 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 fe22de9..86dced0 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 54fec40..2faa69d 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 324f7fd..5e78b3c 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 4f2356f..8ccbbf0 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 0c31748..da18894 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 f7a1a9c..7765f4c 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 cb1a734..f50e427 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 78fc29e..9a7d652 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 3901f3f..dabae9f 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 018c38a..f645708 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 2968d59..341dd80 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 50c7be8..1b15475 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 a0590f3..7b8cafc 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 d55921d..8cdf23c 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 855a969..e8aad4b 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 99bd3af..686672a 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 81573b1..f7da63c 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 d06396d..9ac7bb7 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 c66d559..6fd2da7 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 2607b05..cf1e33e 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 aa93f03..b403ded 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 936d216..d1dbbf4 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 bf36ce0..ac42259 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 a366444..798f2f1 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 93cde82..4f1fe59 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 fe26eb0..fc7b04c 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 62bfc56..a2a99a7 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 8668de5..808976b 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 886e4db..ce2d891 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 b81455b..58a7187 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 89633ea..7600026 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 c452553..068c9d3 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 fcf8922..5620b9e 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 a9bb500..ea85cee 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 0fbf4f9..b911b95 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 2a40eb4..a9de006 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 5f44527..6f4f954 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 85d0f05..5769bac 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 bfaf90d..ef9ca42 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 a8f4c4a..4f8e4d1 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 7f637df..7c2b83d 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 249b52f..70e55e9 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 1072af5..375c84e 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 f965f64..2f8277d 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 043947e..be15e1e 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 0c29b82..03bd0c3 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 6528010..b5e9070 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 4b1c943..0596f1d 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 f90124d..9c0e722 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 dea1d77..2d712d8 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 7466f55..b7c4986 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 4c9b213..5c4d257 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 301a686..ffbcce6 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 6eaf0ab..7b5bb5e 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 e6ead13..a995662 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 22c0b7d..c05d48e 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 f80cb3b..8aeff35 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 d0ee3af..52cee4b 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 1f10ae1..53e0694 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 8ecd644..193e4ab 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 813e961..77558f4 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 cb37f9c..4ca24bd 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 1b15d16..ff5df70 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 50ae290..4fbf53a 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 2f26c03..51921a8 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 375ffcb..712fcd8 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 966ed26..ea265ff 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 9553cbd..6b3d064 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 3554138..fd80582 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 377b159..04ec81c 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 52ed0b6..1679c68 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 e288dfb..9a3b619 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 035e572..1a4c926 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 215a4be..6564cd2 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 edc5491..0d013ca 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 c69237a..1066b5e 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 f85ebaf..8255864 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 49d8c50..cb7774e 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 00124de..7c61d0c 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 c742e7c..49bd47d 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 51cc82a..08646b8 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 5eac86e..828a36e 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 0843509..3f35f3b 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 e13c061..b9506fb 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 e14d128..ce1e047 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 d6da20d..b0d82ea 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 cdc1a62..5b90963 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 0d6c438..f20427e 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 ad4e7e8..d6c997e 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 4a05986..d3e5e0e 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 b10107c..92e126d 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 f57a89d..bd7b8f1 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 40dcfe0..4bd1200 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 d16a113..209df09 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 83af938..04049a3 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 be9c55a..8a514cf 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 b01a2e4..1fa2787 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 ec97159..bca85db 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 f6abde0..c78488b 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 dc008c0..362bd4e 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 e07fc1c..19e0856 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 914fdf6..b2e6998 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 c6a0b42..5e93805 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 ec52556..6147065 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 f19bb6f..a5636b0 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 1744372..9faccb5 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 4ebdf4d..d8be3dd 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 d48906d..426e94e 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 a77f5ca..3bcc16c 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 e97be40..8301a55 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 8a38ca0..5f190af 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 8762235..6e0e219 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 c0b2b56..3cb73d9 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 ac6f1d9..1b896af 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 6f2cb29..2703cb0 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 088682e..5389e5a 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 5462c5e..bac3e3a 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 7734ea7..3cf1a5f 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 8b01e25..612bfcf 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 df42ff3..de52920 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 a84f9bc..2606a41 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 42b9364..0a832d3 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 6e045d8..d7ebf24 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 d701660..0901976 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 a9c4228..40e6deb 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 2b79017..838908b 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 47e1257..ee163a5 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 f6c5611..9ff8bd9 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 c98e80e..844d100 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 144331e..4b410d1 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 a4b373b..fdabcec 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 0bdc5da..5faff9d 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 b1327a6..00d75d8 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 25a3b03..dc08c72 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 83cacb2..34d496d 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 611d825..501aba5 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 210a367..dee542c 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 f64d44f..fa3f9e3 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 a09318c..c047194 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 eee4edb..920d865 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 9c6a254..c071ef9 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 7c8ec1c..b23b12a 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 e400af1..522a36f 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 7bd3c89..11cd315 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 27fbace..81eac53 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 f22d771..fb26580 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 4a2231c..b4cbcad 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 4d6fc25..84ba86c 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 2b6c03f..430facb 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 d915fd1..cb7e12b 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 8c88328..a9faf08 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 2a94b71..7448c53 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 4adb18d..e692ef7 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 d93abf4..93392a5 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 cedbd78..b7ce716 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 caaec04..8ba953b 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 4b6fe9b..7a794b0 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 92b66f8..17c42a0 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 1797179..652118c 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 f1340c0..5457b64 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 51f9241..647f0b1 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 4cfb55c..94153cf 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 f7b951a..db2163c 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 69f4847..01cf9b8 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 cc5cb2b..e1df2ac 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 04d6807..66a77bb 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 03b75d3..1da5a37 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 8941f03..2b1d7ab 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 49a919c..19e5322 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 6e0a8b9..f0af279 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 e2fb177..ba5cd5c 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 d2c5589..2c62236 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 5f3a878..821b920 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 fa88f6a..97f49de 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 534c29c..3d04ae6 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 2a0e581..1e89f93 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 be54e85..3173b20 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 d0eda07..116d163 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 1b5ddb1..df93d0a 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 16c09c8..0cb6776 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 4ce67d3..336143f 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 c287679..832b538 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 ed3d6e0..9fe5aea 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 86dced0..fe22de9 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 2faa69d..54fec40 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 5e78b3c..324f7fd 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 8ccbbf0..4f2356f 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 da18894..0c31748 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 7765f4c..f7a1a9c 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 f50e427..cb1a734 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 9a7d652..78fc29e 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 dabae9f..3901f3f 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 f645708..018c38a 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 341dd80..2968d59 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 1b15475..50c7be8 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 7b8cafc..a0590f3 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 8cdf23c..d55921d 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 e8aad4b..855a969 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 686672a..99bd3af 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 f7da63c..81573b1 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 9ac7bb7..d06396d 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 6fd2da7..c66d559 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 cf1e33e..2607b05 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 b403ded..aa93f03 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 d1dbbf4..936d216 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 ac42259..bf36ce0 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 798f2f1..a366444 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 4f1fe59..93cde82 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 fc7b04c..fe26eb0 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 a2a99a7..62bfc56 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 808976b..8668de5 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 ce2d891..886e4db 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 58a7187..b81455b 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 7600026..89633ea 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 068c9d3..c452553 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 5620b9e..fcf8922 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 ea85cee..a9bb500 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 b911b95..0fbf4f9 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 a9de006..2a40eb4 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 6f4f954..5f44527 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 5769bac..85d0f05 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 ef9ca42..bfaf90d 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 4f8e4d1..a8f4c4a 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 7c2b83d..7f637df 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 70e55e9..249b52f 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 375c84e..1072af5 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 2f8277d..f965f64 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 be15e1e..043947e 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 03bd0c3..0c29b82 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 b5e9070..6528010 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 0596f1d..4b1c943 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 9c0e722..f90124d 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 2d712d8..dea1d77 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 b7c4986..7466f55 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 5c4d257..4c9b213 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 ffbcce6..301a686 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 7b5bb5e..6eaf0ab 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 a995662..e6ead13 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 c05d48e..22c0b7d 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 8aeff35..f80cb3b 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 52cee4b..d0ee3af 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 53e0694..1f10ae1 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 193e4ab..8ecd644 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 77558f4..813e961 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 4ca24bd..cb37f9c 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 ff5df70..1b15d16 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 4fbf53a..50ae290 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 51921a8..2f26c03 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 712fcd8..375ffcb 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 ea265ff..966ed26 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 6b3d064..9553cbd 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 fd80582..3554138 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 04ec81c..377b159 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 1679c68..52ed0b6 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 9a3b619..e288dfb 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 1a4c926..035e572 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 6564cd2..215a4be 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 0d013ca..edc5491 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 1066b5e..c69237a 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 599c750..8781d0d 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 d05d27b..a09a578 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 cb7774e..78fc37e 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 8781d0d..a1bef73 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 798806b..2f0ab76 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 a1bef73..a5bd89f 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 2f0ab76..798806b 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