This repository has been archived on 2024-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
core/trixy
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
..
src chore(trixy): Rename `language_macros` to `trixy` 2023-12-16 11:45:12 +01:00
trixy-lang_parser feat(trixy-lang_parser): Add support for doc comments 2023-12-22 20:32:43 +01:00
.gitignore chore(trixy): Rename `language_macros` to `trixy` 2023-12-16 11:45:12 +01:00
Cargo.toml chore(trixy): Rename `language_macros` to `trixy` 2023-12-16 11:45:12 +01:00