Make 'line_comment' more explicit about newlines

Because of the way regular expressions work, they were already bounded
at newlines here, but explicit is better than implicit :-).
This commit is contained in:
Bruno BELANYI 2024-04-08 09:49:16 +00:00
parent 73b0797891
commit be1e3f07d3
3 changed files with 19 additions and 2 deletions

2
src/grammar.json generated
View file

@ -30,7 +30,7 @@
},
{
"type": "PATTERN",
"value": ".*"
"value": "[^\\n]*"
}
]
},