aboutsummaryrefslogtreecommitdiffstats
path: root/tree-sitter-yts/grammar.js
blob: 2b36254d1f2c2d86a3ec76238f97b4e9dce59df3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @file Parser for yt's selection language
 * @author Benedikt Peetz <benedikt.peetz@b-peetz.de>
 * @license GPL-3-or-later
 */

/// <reference types="tree-sitter-cli/dsl" />
// @ts-check

export default grammar({
  name: "yts",

  rules: {
    // TODO: add the actual grammar rules
    source_file: $ => "hello"
  }
});