forked from trinitrix/core
1
0
Fork 0
core/trixy/trixy-lang_parser/docs
Benedikt Peetz 70c4cc6f18
feat(trixy-lang_parser): Add support for doc comments
Parsing right now works by simply comparing the input string:
```
"/" -> <comment_tokenizer> -> "/" -> <normal_comment>
                          |-> "//" -> <doc_comment>
```

A better method to do this though would be to turn "//" and "///" into
keywords and simply leave the parsing to the parser module not the
tokenizer.
2023-12-22 20:32:43 +01:00
..
grammar.ebnf feat(trixy-lang_parser): Add support for doc comments 2023-12-22 20:32:43 +01:00
grammar.pdf feat(trixy-lang_parser): Add support for doc comments 2023-12-22 20:32:43 +01:00