Remove single-line comment style
This commit is contained in:
parent
7add08036c
commit
ef2b62a852
11
grammar.js
11
grammar.js
|
@ -317,13 +317,10 @@ module.exports = grammar({
|
||||||
|
|
||||||
at_keyword: $ => /@[a-zA-Z-_]+/,
|
at_keyword: $ => /@[a-zA-Z-_]+/,
|
||||||
|
|
||||||
comment: $ => token(choice(
|
comment: $ => token(seq(
|
||||||
seq('//', /.*/),
|
'/*',
|
||||||
seq(
|
/[^*]*\*+([^/*][^*]*\*+)*/,
|
||||||
'/*',
|
'/'
|
||||||
/[^*]*\*+([^/*][^*]*\*+)*/,
|
|
||||||
'/'
|
|
||||||
)
|
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
@ -1571,37 +1571,19 @@
|
||||||
"comment": {
|
"comment": {
|
||||||
"type": "TOKEN",
|
"type": "TOKEN",
|
||||||
"content": {
|
"content": {
|
||||||
"type": "CHOICE",
|
"type": "SEQ",
|
||||||
"members": [
|
"members": [
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "STRING",
|
||||||
"members": [
|
"value": "/*"
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "//"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "PATTERN",
|
|
||||||
"value": ".*"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "SEQ",
|
"type": "PATTERN",
|
||||||
"members": [
|
"value": "[^*]*\\*+([^\\/*][^*]*\\*+)*"
|
||||||
{
|
},
|
||||||
"type": "STRING",
|
{
|
||||||
"value": "/*"
|
"type": "STRING",
|
||||||
},
|
"value": "/"
|
||||||
{
|
|
||||||
"type": "PATTERN",
|
|
||||||
"value": "[^*]*\\*+([^\\/*][^*]*\\*+)*"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "STRING",
|
|
||||||
"value": "/"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue