syntax v2
introduce a new, more ergonomic syntax for haku not all features are implemented just yet. still missing: - custom tags (non-True/False) - color literals - lists
This commit is contained in:
parent
a3e5e8bd10
commit
2595bf0d82
21 changed files with 2844 additions and 1062 deletions
|
@ -61,6 +61,12 @@ max_chunks = 2
|
|||
# Maximum amount of defs across all source code chunks.
|
||||
max_defs = 256
|
||||
|
||||
# Maximum amount of tokens a single chunk can have.
|
||||
max_tokens = 4096
|
||||
|
||||
# Maximum amount of events that the parser may emit in a single chunk.
|
||||
max_parser_events = 4096
|
||||
|
||||
# Maximum amount of AST nodes in a single parse.
|
||||
ast_capacity = 4096
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue