lezer-ludus/test.js

8 lines
183 B
JavaScript
Raw Normal View History

2023-11-26 18:02:33 +00:00
import {parser} from "./parser.js"
2023-11-26 18:32:25 +00:00
const source = "nil; true; false; 12; \"foo\""
const parse = (source) => parser.parse(source.concat("\n"))
console.log(parse(source).toString())