tree-sitter-vvk/grammar.js
2026-01-18 18:37:34 +01:00

17 lines
328 B
JavaScript

/**
* @file A parser for the vishvakarma build system from pantheon
* @author traxys <traxys@familleboyer.net>
* @license MIT
*/
/// <reference types="tree-sitter-cli/dsl" />
// @ts-check
module.exports = grammar({
name: "vvk",
rules: {
// TODO: add the actual grammar rules
source_file: $ => "hello"
}
});