tree-sitter/test/fixtures/test_grammars/invisible_start_rule/grammar.json
2017-08-04 17:07:37 -07:00

23 lines
No EOL
333 B
JSON

{
"name": "invisible_start_rule",
"rules": {
"_value": {
"type": "CHOICE",
"members": [
{"type": "SYMBOL", "name": "a"},
{"type": "SYMBOL", "name": "b"}
]
},
"a": {
"type": "STRING",
"value": "a"
},
"b": {
"type": "STRING",
"value": "b"
}
}
}