tree-sitter/crates/cli/src/templates/grammar.js

18 lines
320 B
JavaScript
Raw Normal View History

/**
* @file PARSER_DESCRIPTION
* @author PARSER_AUTHOR_NAME PARSER_AUTHOR_EMAIL
* @license PARSER_LICENSE
*/
2024-03-10 15:25:40 +02:00
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
2025-09-15 19:06:51 -04:00
export default grammar({
name: "LOWER_PARSER_NAME",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
});