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

7 lines
106 B
JavaScript
Raw Normal View History

2024-04-21 02:25:56 -07:00
module.exports = grammar({
name: "TestLang",
rules: {
source_file: $ => "hello"
}
});