├── .gitignore ├── .npmignore ├── Cargo.toml ├── LICENSE ├── README.md ├── binding.gyp ├── bindings ├── node │ ├── binding.cc │ └── index.js └── rust │ ├── build.rs │ └── lib.rs ├── grammar.js ├── package.json ├── src ├── grammar.json ├── node-types.json ├── parser.c ├── scanner.c └── tree_sitter │ └── parser.h └── tree-sitter-wgsl.wasm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | build 3 | script 4 | examples 5 | *.log 6 | test.js 7 | target 8 | corpus 9 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # tree-sitter-wgsl 2 | -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/binding.gyp -------------------------------------------------------------------------------- /bindings/node/binding.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/bindings/node/binding.cc -------------------------------------------------------------------------------- /bindings/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/bindings/node/index.js -------------------------------------------------------------------------------- /bindings/rust/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/bindings/rust/build.rs -------------------------------------------------------------------------------- /bindings/rust/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/bindings/rust/lib.rs -------------------------------------------------------------------------------- /grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/grammar.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/package.json -------------------------------------------------------------------------------- /src/grammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/src/grammar.json -------------------------------------------------------------------------------- /src/node-types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/src/node-types.json -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/scanner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/src/scanner.c -------------------------------------------------------------------------------- /src/tree_sitter/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/src/tree_sitter/parser.h -------------------------------------------------------------------------------- /tree-sitter-wgsl.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehmetoguzderin/tree-sitter-wgsl/HEAD/tree-sitter-wgsl.wasm --------------------------------------------------------------------------------