/** * @file A parser for the MC programming language * @author Matthias Unterrainer * @license Apache-2.0 */ /// // @ts-check module.exports = grammar({ name: "mc", rules: { // TODO: add the actual grammar rules source_file: $ => "hello" } });