forked from trinitrix/core
1
0
Fork 0
core/trixy/trixy-lang_parser/example
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
..
comments.tri feat(trixy-lang_parser): Add support for doc comments 2023-12-22 20:32:43 +01:00
empty.tri feat(trixy-lang_parser): Add first parser pass 2023-12-18 18:04:21 +01:00
failing.tri feat(trixy-lang_parser): Add first parser pass 2023-12-18 18:04:21 +01:00
failing_comments.tri feat(trixy-lang_parser): Add support for doc comments 2023-12-22 20:32:43 +01:00
failing_types.tri feat(trixy-lang_parser): Add type checking (2nd stage parsing) 2023-12-22 14:57:39 +01:00
full.tri feat(trixy-lang_parser): Add type checking (2nd stage parsing) 2023-12-22 14:57:39 +01:00
multiple.tri feat(trixy-lang_parser): Add support for structs and enums 2023-12-18 20:50:58 +01:00
simple.tri feat(trixy-lang_parser): Add first parser pass 2023-12-18 18:04:21 +01:00
types.tri feat(trixy-lang_parser): Add support for structs and enums 2023-12-18 20:50:58 +01:00