tree-sitter/test/fixtures/test_grammars/invisible_start_rule/grammar.js
2025-09-16 02:24:11 -04:00

8 lines
146 B
JavaScript

export default grammar({
name: "invisible_start_rule",
rules: {
_value: $ => choice($.a, $.b),
a: $ => "a",
b: $ => "b",
},
});