-
SameTypeRequirementSyntax
has a newRightType
nested type.- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
SameTypeRequirementSyntax
has a newLeftType
nested type.- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
GenericArgumentSynax
has a newArgument
nested type.- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
GenericParameterSyntax
now has a newspecifier
property.- Description: With the introduction of value generics, generic parameters can now be optionally preceded by either a
let
or aneach
. Thespecifier
property captures the token representing which one was parsed. - Pull Request: #2785
- Description: With the introduction of value generics, generic parameters can now be optionally preceded by either a
-
IntegerLiteralExprSyntax
andFloatLiteralExprSyntax
now have a computedrepresentedLiteralValue
property. -
SyntaxProtocol
now has a methodancestorOrSelf
.- Description: Returns the node or the first ancestor that satisfies
condition
. - Pull Request: #2696
- Description: Returns the node or the first ancestor that satisfies
-
Error
protocol now has anasDiagnostics(at:)
method.- Description: This method translates an error into one or more diagnostics, recognizing
DiagnosticsError
andDiagnosticMessage
instances or providing its ownDiagnostic
as needed. - Pull Request: #1816
- Description: This method translates an error into one or more diagnostics, recognizing
-
Added a new library
SwiftIfConfig
.- Description: This new library provides facilities for evaluating
#if
conditions and determining which regions of a syntax tree are active according to a given build configuration. - Pull Request: #1816
- Description: This new library provides facilities for evaluating
-
SwiftBasicFormat
adds a methodindented(by:)
to all syntax node types.- Description: This method indents a node’s contents using a provided piece of
Trivia
, optionally including the first line. - Pull Request: #2843
- Description: This method indents a node’s contents using a provided piece of
-
Parser.ExperimentalFeatures
has a newinit?(name: String)
initializer.- Description: This initializer returns the
Parser.ExperimentalFeatures
value that matches the experimental parser feature with the given name. The name must be spelled the same way as it is when passed to the compiler using the-enable-experimental-feature
flag. - Pull Request: #2895
- Description: This initializer returns the
SyntaxProtocol.trimmed
detaches the node- Description: Getting a trimmed version of a node detaches it from its parent. Having the trimmed node be attached to a parent was not intuitive because eg. printing the parent node would have the trimmed trivia missing, most likely forming invalid Swift code.
- Pull Request: #2689
-
GenericParameterSyntax
deprecatedeachKeyword
in favor ofspecifier
- Description:
specifier
is now used to grab either theeach
keyword for a generic parameter or thelet
keyword. - Pull request: #2785
- Description:
-
IncrementalEdit
deprecated in favor ofSourceEdit
-
ClosureCaptureSyntax.init(leadingTrivia:specifier:name:equal:expression:trailingComma:trailingTrivia:)
deprecated in favor of a newClosureCaptureSyntax.init(leadingTrivia:_:specifier:_:name:_:initializer:_:trailingComma:_:trailingTrivia:)
initializer.- Description:
ClosureCaptureSyntax
now has aninitializer
property instead ofequal
andexpression
. Additionally, thename
property is no longer optional. - Pull request: #2763
- Description:
-
Indenter
inSwiftSyntaxBuilder
has been deprecated in favor of the newindented(by:)
inSwiftBasicFormat
.- Description: Indenting is really more of a formatting operation than a syntax-building operation. Additionally, the
indented(by:)
method is more intuitive to use than aSyntaxRewriter
. Aside fromBasicFormat
, there are no other publicSyntaxRewriter
classes in the package. - Pull Request: #2843
- Description: Indenting is really more of a formatting operation than a syntax-building operation. Additionally, the
-
SameTypeRequirementSyntax.rightType
has changed types fromTypeSyntax
toSameTypeRequirementSyntax.RightType
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
SameTypeRequirementSyntax.leftType
has changed types fromTypeSyntax
toSameTypeRequirementSyntax.LeftType
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
GenericArgumentSyntax.argument
has changed types fromTypeSyntax
toGenericArgumentSyntax.Argument
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
ExprSyntax
or aTypeSyntax
. - Pull Request: #2859
- Description: The Swift parser can now parse values as types in certain situations, so the new type reflects the possibility of the argument being either an
-
Moved
Radix
andIntegerLiteralExprSyntax.radix
fromSwiftRefactor
toSwiftSyntax
. -
FixIt.Change
gained a new casereplaceChild(data:)
. -
ClosureCaptureSyntax.name
is no longer optional.- Description: Due to the new
ClosureCaptureSyntax
node structure,name
property is non-optional. - Pull request: #2763
- Description: Due to the new
- Affected API or two word description
- Description: A 1-2 sentence description of the new/modified API
- Issue: If an issue exists for this change, a link to the issue
- Pull Request: Link to the pull request(s) that introduces this change
- Migration steps: Steps that adopters of swift-syntax should take to move to the new API (required for deprecations and API-incompatible changes).
- Notes: In case of deprecations or API-incompatible changes, the reason why this change was made and the suggested alternative
Insert entries in chronological order, with newer entries at the bottom