Skip to content

Commit a887ea6

Browse files
committed
up
1 parent 4dd23de commit a887ea6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lang2/parser/Parser.test.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@ import {
1313
type Sexp = string | Array<Sexp>
1414

1515
function parseSexp(tokens: Array<Token>): ParserResult<Sexp> {
16-
return choose<Sexp>([literal("identifier"), parseList])(tokens)
16+
return choose<Sexp>([parseSymbol, parseList])(tokens)
17+
}
18+
19+
function parseSymbol(tokens: Array<Token>): ParserResult<string> {
20+
return literal("identifier")(tokens)
1721
}
1822

1923
function parseList(tokens: Array<Token>): ParserResult<Array<Sexp>> {

0 commit comments

Comments
 (0)