17 lines
328 B
JavaScript
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"
|
|
}
|
|
});
|