This commit is contained in:
Chris Wanstrath 2025-11-24 16:15:37 -08:00
parent 49919e9f85
commit 109c7ff9f6

View File

@ -321,7 +321,7 @@ export class Parser {
} }
// atoms are the basic building blocks: literals, identifiers, words // atoms are the basic building blocks: literals, identifiers, words
atom() { atom(): SyntaxNode {
if (this.is($T.String)) if (this.is($T.String))
return this.string() return this.string()