tree-sitter-hy/grammar.js
2025-04-15 17:01:11 -05:00

17 lines
300 B
JavaScript

/**
* @file Hy grammar for tree-sitter
* @author E Dunbar <evdunbar@protonmail.com>
* @license MIT
*/
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "hy",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
});