tree-sitter-bp/grammar.js

11 lines
173 B
JavaScript
Raw Normal View History

2024-04-07 20:59:34 +02:00
module.exports = grammar({
name: "blueprint",
rules: {
// TODO: add the actual grammar rules
source_file: $ => 'hello',
}
});
// vim: foldmethod=marker sw=2