tree-sitter-bp/grammar.js
2024-04-07 22:18:34 +01:00

10 lines
173 B
JavaScript

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