tree-sitter/test/fixtures/test_grammars/external_extra_tokens/grammar.json
2017-12-13 12:21:28 -08:00

25 lines
493 B
JSON

{
"name": "external_extra_tokens",
"externals": [
{"type": "SYMBOL", "name": "comment"}
],
"extras": [
{"type": "PATTERN", "value": "\\s"},
{"type": "SYMBOL", "name": "comment"}
],
"rules": {
"assignment": {
"type": "SEQ",
"members": [
{"type": "SYMBOL", "name": "variable"},
{"type": "STRING", "value": "="},
{"type": "SYMBOL", "name": "variable"}
]
},
"variable": {"type": "PATTERN", "value": "[a-z]+"}
}
}