Antlr grammar for defining tasks.
Find a file
Jos van den Oever ecc5a1aa00 Disallow { and space in STARTCHAR
This solved parsing the example, but is suboptimal. The real fix is to
know why STARTCHAR takes precedence over S and START_AMOUNT
2024-09-02 10:37:56 +02:00
.gitignore feat: add instructions for TS parser generation 2024-08-13 16:44:34 +02:00
example Reorganize the grammar 2024-08-29 17:47:12 +02:00
flake.lock init 2024-08-12 10:47:19 +02:00
flake.nix init 2024-08-12 10:47:19 +02:00
README.md fix: bad code block 2024-08-26 10:27:12 +02:00
takentaal.g4 Disallow { and space in STARTCHAR 2024-09-02 10:37:56 +02:00

takentaal

Commands

nix develop

# Inspect lexer
antlr4-parse takentaal.g4 takentaal example -tokens

# Inspect parser
antlr4-parse takentaal.g4 takentaal example -tree
antlr4-parse takentaal.g4 takentaal example -gui

# Generate TypeScript parser
antlr4 -Dlanguage=TypeScript -o takentaal takentaal.g4