File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ r[comments.syntax]
9
9
10
10
BLOCK_COMMENT ->
11
11
`/*`
12
- ( ~[`*` `!`] | `**` | BlockCommentOrDoc )
13
- ( BlockCommentOrDoc | ~`*/` )*
12
+ ( ~[`*` `!`] | `**` | BLOCK_COMMENT_OR_DOC )
13
+ ( BLOCK_COMMENT_OR_DOC | ~`*/` )*
14
14
`*/`
15
15
| `/**/`
16
16
| `/***/`
@@ -19,18 +19,18 @@ BLOCK_COMMENT ->
19
19
`//!` ~[LF CR]*
20
20
21
21
INNER_BLOCK_DOC ->
22
- `/*!` ( BlockCommentOrDoc | ~[`*/` CR] )* `*/`
22
+ `/*!` ( BLOCK_COMMENT_OR_DOC | ~[`*/` CR] )* `*/`
23
23
24
24
@root OUTER_LINE_DOC ->
25
25
`///` (~`/` ~[LF CR]*)?
26
26
27
27
OUTER_BLOCK_DOC ->
28
28
`/**`
29
- ( ~`*` | BlockCommentOrDoc )
30
- ( BlockCommentOrDoc | ~[`*/` CR] )*
29
+ ( ~`*` | BLOCK_COMMENT_OR_DOC )
30
+ ( BLOCK_COMMENT_OR_DOC | ~[`*/` CR] )*
31
31
`*/`
32
32
33
- @root BlockCommentOrDoc ->
33
+ @root BLOCK_COMMENT_OR_DOC ->
34
34
BLOCK_COMMENT
35
35
| OUTER_BLOCK_DOC
36
36
| INNER_BLOCK_DOC
You can’t perform that action at this time.
0 commit comments