Enumerationswift-syntax 600.0.1SwiftSyntax
SyntaxVisitorContinueKind
The enum describes how the SyntaxVisitor
should continue after visiting the current node.
enum SyntaxVisitorContinueKind
The enum describes how the SyntaxVisitor
should continue after visiting the current node.
enum SyntaxVisitorContinueKind
import SwiftSyntax
A library for working with Swift code.
class SyntaxVisitor
case visitChildren
The visitor should visit the descendants of the current node.
case skipChildren
The visitor should avoid visiting the descendants of the current node.
class SyntaxAnyVisitor
A SyntaxVisitor
that can visit the nodes as generic Syntax
values.
class SyntaxRewriter
/ Automatically generated by generate-swift-syntax / Do not edit directly!
enum SyntaxTreeViewMode
Specifies how missing and unexpected nodes should be handled when traversing a syntax tree.
struct ReversedTokenSequence
Reverse sequence of tokens that are part of the provided Syntax node.
protocol Equatable
A type that can be compared for value equality.
protocol Hashable : Equatable
A type that can be hashed into a Hasher
to produce an integer hash value.
static func != (lhs: Self, rhs: Self) -> Bool
Returns a Boolean value indicating whether two values are not equal.