mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-26 13:29:12 +00:00
11 lines
382 B
Text
11 lines
382 B
Text
text = { (ASCII_ALPHANUMERIC | " " | "\t" | "\n" | "{" | "}" | "," | "." | "[" | "]" | ":" | "<" | ">" | "-" | "\"" | "=" )* }
|
||
|
||
caret = {"┃"}
|
||
|
||
optSelStart = { "❮"{0,1} }
|
||
|
||
optSelEnd = { "❯"{0,1} }
|
||
|
||
optCaret = { caret{0,1} }
|
||
|
||
linesWithSelect = { SOI ~ text ~ optCaret ~ text ~ optSelStart ~ text ~ optCaret ~ text ~ optCaret ~ text ~ optSelEnd ~ text ~ optCaret ~ text ~ EOI}
|