schala/experiments/tree-sitter-test/grammar.js

15 lines
229 B
JavaScript
Raw Normal View History

2024-04-21 02:25:56 -07:00
module.exports = grammar({
name: "TestLang",
rules: {
2024-04-21 03:01:13 -07:00
source_file: $ => repeat($._definition),
_definition: $ => choice(
$.function_definition
//TODO others
)
2024-04-21 02:25:56 -07:00
}
});