Initial commit.
This commit is contained in:
17
grammar.js
Normal file
17
grammar.js
Normal file
@@ -0,0 +1,17 @@
|
||||
/**
|
||||
* @file Scl grammar for tree-sitter
|
||||
* @author Jacob Signorovitch <jacob.signorovitch@gmail.com>
|
||||
* @license MIT
|
||||
*/
|
||||
|
||||
/// <reference types="tree-sitter-cli/dsl" />
|
||||
// @ts-check
|
||||
|
||||
module.exports = grammar({
|
||||
name: "scl",
|
||||
|
||||
rules: {
|
||||
// TODO: add the actual grammar rules
|
||||
source_file: $ => "hello"
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user