aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_syntax/src/parsing
Commit message (Collapse)AuthorAgeFilesLines
...
* kill utils moduleAleksey Kladov2019-02-211-3/+3
|
* docsAleksey Kladov2019-02-213-33/+73
|
* fix compilationAleksey Kladov2019-02-213-22/+21
|
* move parser to a separate crateAleksey Kladov2019-02-2118-3452/+0
|
* make grammar independent of syntax treeAleksey Kladov2019-02-212-14/+18
|
* minorAleksey Kladov2019-02-211-1/+1
|
* move whitespace handling to tree builderAleksey Kladov2019-02-213-178/+147
|
* move syntax error to parserAleksey Kladov2019-02-204-18/+17
|
* simplifyAleksey Kladov2019-02-204-27/+2
|
* remove TokenPosAleksey Kladov2019-02-202-29/+25
|
* flattern module structureAleksey Kladov2019-02-204-9/+6
|
* merge parse_impl and parser_apiAleksey Kladov2019-02-202-171/+102
|
* fix off by one errorAleksey Kladov2019-02-201-1/+1
|
* move abstract traits to topAleksey Kladov2019-02-203-64/+10
|
* switch to dynamic dispatch for TokenSourceAleksey Kladov2019-02-202-9/+7
| | | | | | | | | | | Benchmarks show no difference. This is probably because we are bottlenecked on memory allocations, and we should fix that, but we are not optimizing for performance just yet. changes. Lines starting # with '#' will be ignored, and an empty message aborts the commit. # # On branch token-source # Changes to be committed: # modified: crates/ra_syntax/src/parsing/parser_api.rs # modified: crates/ra_syntax/src/parsing/parser_impl.rs #
* route parsing via TokenSource traitAleksey Kladov2019-02-203-64/+59
|
* rename Sink -> TreeSinkAleksey Kladov2019-02-203-8/+8
|
* fix testsAleksey Kladov2019-02-201-3/+5
|
* flatten modulesAleksey Kladov2019-02-204-11/+14
|
* move reparsers to grammarAleksey Kladov2019-02-202-33/+27
|
* tighten visibilityAleksey Kladov2019-02-201-3/+3
|
* move all parsing related bits to a separate moduleAleksey Kladov2019-02-2028-0/+4840