18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
/**
|
|
* @file Tumblr grammar for tree-sitter
|
|
* @author Oscar Wallberg <oscar.wallberg@outlook.com>
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
/// <reference types="tree-sitter-cli/dsl" />
|
|
// @ts-check
|
|
|
|
export default grammar({
|
|
name: "tumblr",
|
|
|
|
rules: {
|
|
// TODO: add the actual grammar rules
|
|
source_file: $ => "hello"
|
|
}
|
|
});
|