diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-11 16:43:34 +0100 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2018-10-11 16:43:34 +0100 |
commit | 77e9bf9b5fdcd4262e2d9badb42b912f5728d90b (patch) | |
tree | 3f318ed358723e229dc6101404d7b607bbeabd51 /crates/ra_syntax/src/grammar.ron | |
parent | 9b155c89764b8413df6b32edfde94fce1d9c15ec (diff) | |
parent | 6fe77db41307da8ead8a0b0355488221b61c0349 (diff) |
Merge #116
116: Collapse comments upon join r=matklad a=aochagavia
Todo:
- [x] Write tests
- [x] Resolve fixmes
- [x] Implement `comment_start_length` using the parser
I left a bunch of questions as fixmes. Can someone take a look at them? Also, I would love to use the parser to calculate the length of the leading characters in a comment (`//`, `///`, `//!`, `/*`), so any hints are greatly appreciated.
Co-authored-by: Adolfo OchagavĂa <[email protected]>
Co-authored-by: Adolfo OchagavĂa <[email protected]>
Diffstat (limited to 'crates/ra_syntax/src/grammar.ron')
-rw-r--r-- | crates/ra_syntax/src/grammar.ron | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/ra_syntax/src/grammar.ron b/crates/ra_syntax/src/grammar.ron index 4b990fd8d..9da0c2c13 100644 --- a/crates/ra_syntax/src/grammar.ron +++ b/crates/ra_syntax/src/grammar.ron | |||
@@ -537,5 +537,6 @@ Grammar( | |||
537 | "PathSegment": ( | 537 | "PathSegment": ( |
538 | options: [ "NameRef" ] | 538 | options: [ "NameRef" ] |
539 | ), | 539 | ), |
540 | "Comment": (), | ||
540 | }, | 541 | }, |
541 | ) | 542 | ) |