diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-04-24 15:10:14 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2025-04-24 15:10:14 +0200 |
| commit | 9456f4e2b569b393d6c01784a4545b11b32e16ef (patch) | |
| tree | 7b4eeab3d0dd4c273de025db19f6be52d9cd1f1d /.editorconfig | |
Implement grammar parser
This implements the grammar struct together with
some other helpful structures like char-set and character.
The grammar struct parses a grammar file and also generates
the FIRST and FOLLOWS tables.
Diffstat (limited to '.editorconfig')
| -rw-r--r-- | .editorconfig | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..1209f7b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,5 @@ +root = true + +[src/**.zig] +indent_style = tab +indent_size = 2 |