We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
open
1 parent 0423e4d commit bee933fCopy full SHA for bee933f
Sources/SwiftSyntaxBuilder/Tokens.swift.gyb
@@ -62,4 +62,9 @@ public extension TokenSyntax {
62
static var eof: TokenSyntax {
63
SyntaxFactory.makeToken(.eof, presence: .present)
64
}
65
+ /// The `open` contextual token
66
+ static var open: TokenSyntax {
67
+ SyntaxFactory.makeContextualKeyword("open")
68
+ .withTrailingTrivia(.spaces(1))
69
+ }
70
Sources/SwiftSyntaxBuilder/gyb_generated/Tokens.swift
@@ -720,4 +720,9 @@ public extension TokenSyntax {
720
721
722
723
724
725
726
727
728
0 commit comments