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