tree-sitter-bp/grammar.js
2024-04-08 20:13:47 +01:00

11 lines
173 B
JavaScript

module.exports = grammar({
name: "blueprint",
rules: {
// TODO: add the actual grammar rules
source_file: $ => 'hello',
}
});
// vim: foldmethod=marker sw=2