我正在尝试为如下语言创建语法
someVariable = This is a string, I know it doesn't have double quotes
anotherString = This string has a continuation _
this means I can write it on multiple line _
like this
anotherVariable = "This string is surrounded by quotes"
正确解析前面代码的正确 Treetop 语法规则是什么?
我应该能够为三个变量提取以下值
- 这是一个字符串,我知道它没有双引号
- 这个字符串有一个延续,这意味着我可以像这样在多行上写它
- 这个字符串被引号包围
谢谢