mirror of
https://github.com/github/codeql.git
synced 2026-05-21 22:57:11 +02:00
12 lines
201 B
JavaScript
12 lines
201 B
JavaScript
/// <reference types="tree-sitter-cli/dsl" />
|
|
// @ts-check
|
|
|
|
module.exports = grammar({
|
|
name: "tsg_python",
|
|
|
|
rules: {
|
|
// TODO: add the actual grammar rules
|
|
source_file: $ => "hello"
|
|
}
|
|
});
|