This commit is contained in:
Chris Wanstrath 2025-11-24 16:15:37 -08:00 committed by Chris Wanstrath
parent abd78108c8
commit e38e8d4f1e

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()