File tree Expand file tree Collapse file tree 4 files changed +2
-50
lines changed
Sources/SwiftSyntaxBuilderGeneration Expand file tree Collapse file tree 4 files changed +2
-50
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,6 @@ let package = Package(
112
112
" ExpressibleAsConformances.swift.gyb " ,
113
113
" ExprNodes.swift.gyb " ,
114
114
" GenericNodes.swift.gyb " ,
115
- " Kinds.swift.gyb " ,
116
115
" NodeSerializationCodes.swift.gyb " ,
117
116
" PatternNodes.swift.gyb " ,
118
117
" StmtNodes.swift.gyb " ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ class Node {
30
30
31
31
/// Returns `True` if this node declares one of the base syntax kinds.
32
32
var isBase : Bool {
33
- return SyntaxBaseKinds . contains ( syntaxKind)
33
+ return SYNTAX_BASE_KINDS . contains ( syntaxKind)
34
34
}
35
35
36
36
/// Returns `True` if this node is a subclass of SyntaxCollection.
@@ -87,7 +87,7 @@ class Node {
87
87
self . children = children
88
88
self . baseKind = kind
89
89
90
- if !SyntaxBaseKinds . contains ( baseKind) {
90
+ if !SYNTAX_BASE_KINDS . contains ( baseKind) {
91
91
fatalError ( " unknown base kind ' \( baseKind) ' for node ' \( syntaxKind) ' " )
92
92
}
93
93
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments