mirror of
https://github.com/elladunbar/tree-sitter-hy.git
synced 2025-11-05 14:59:55 -06:00
17 lines
300 B
JavaScript
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"
|
|
}
|
|
});
|