Skip to content

Commit 6419bb5

Browse files
committed
Fix name to make validation successful
1 parent 42de0a8 commit 6419bb5

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

CodeGeneration/Sources/SyntaxSupport/TypeNodes.swift

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -575,18 +575,16 @@ public let TYPE_NODES: [Node] = [
575575
],
576576
children: [
577577
Child(
578-
name: "specifier",
579-
kind: .token(choices: [
580-
.keyword(.dependsOn)
581-
]),
578+
name: "dependsOnKeyword",
579+
kind: token(choices: [.keyword(.dependsOn)]),
582580
documentation: "The specifier token that's attached to the type."
583581
),
584582
Child(
585583
name: "leftParen",
586584
kind: .token(choices: [.token(.leftParen)])
587585
),
588586
Child(
589-
name: "scoped",
587+
name: "scopedKeyword",
590588
kind: .token(choices: [.keyword(.scoped)]),
591589
isOptional: true
592590
),

0 commit comments

Comments
 (0)