/** * @file Scl grammar for tree-sitter * @author Jacob Signorovitch * @license MIT */ /// // @ts-check module.exports = grammar({ name: "scl", rules: { // TODO: add the actual grammar rules source_file: $ => "hello" } });