├── .github └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── common ├── Cargo.toml └── src │ └── lib.rs ├── example ├── Cargo.toml ├── build.rs └── src │ ├── arithmetic.rs │ ├── main.rs │ ├── optionals.rs │ ├── repetitions.rs │ ├── snapshots │ ├── rust_sitter_example__arithmetic__tests__failed_parses-2.snap │ ├── rust_sitter_example__arithmetic__tests__failed_parses-3.snap │ ├── rust_sitter_example__arithmetic__tests__failed_parses-4.snap │ ├── rust_sitter_example__arithmetic__tests__failed_parses.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-2.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-3.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-4.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-5.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-6.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-7.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar-8.snap │ ├── rust_sitter_example__optionals__tests__optional_grammar.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar-2.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar-3.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar2-2.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar2-3.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar2.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar3-2.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar3-3.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar3-4.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar3-5.snap │ ├── rust_sitter_example__repetitions__tests__repetitions_grammar3.snap │ ├── rust_sitter_example__words__tests__words_grammar-2.snap │ ├── rust_sitter_example__words__tests__words_grammar-3.snap │ ├── rust_sitter_example__words__tests__words_grammar-4.snap │ └── rust_sitter_example__words__tests__words_grammar.snap │ └── words.rs ├── macro ├── Cargo.toml └── src │ ├── errors.rs │ ├── expansion.rs │ ├── lib.rs │ └── snapshots │ ├── rust_sitter_macro__tests__enum_prec_left.snap │ ├── rust_sitter_macro__tests__enum_recursive.snap │ ├── rust_sitter_macro__tests__enum_transformed_fields.snap │ ├── rust_sitter_macro__tests__enum_with_named_field.snap │ ├── rust_sitter_macro__tests__enum_with_unamed_vector.snap │ ├── rust_sitter_macro__tests__grammar_unboxed_field.snap │ ├── rust_sitter_macro__tests__spanned_in_vec.snap │ ├── rust_sitter_macro__tests__struct_extra.snap │ ├── rust_sitter_macro__tests__struct_optional.snap │ └── rust_sitter_macro__tests__struct_repeat.snap ├── release.toml ├── runtime ├── Cargo.toml └── src │ ├── __private.rs │ └── lib.rs └── tool ├── Cargo.toml └── src ├── expansion.rs ├── lib.rs ├── snapshots ├── rust_sitter_tool__tests__enum_prec_left.snap ├── rust_sitter_tool__tests__enum_recursive.snap ├── rust_sitter_tool__tests__enum_transformed_fields.snap ├── rust_sitter_tool__tests__enum_with_named_field.snap ├── rust_sitter_tool__tests__enum_with_unamed_vector.snap ├── rust_sitter_tool__tests__grammar_repeat.snap ├── rust_sitter_tool__tests__grammar_repeat1.snap ├── rust_sitter_tool__tests__grammar_repeat_no_delimiter.snap ├── rust_sitter_tool__tests__grammar_unboxed_field.snap ├── rust_sitter_tool__tests__grammar_with_extras.snap ├── rust_sitter_tool__tests__spanned_in_vec.snap └── rust_sitter_tool__tests__struct_optional.snap └── wasm-sysroot ├── stdbool.h ├── stdint.h ├── stdio.h └── stdlib.h /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/README.md -------------------------------------------------------------------------------- /common/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/common/Cargo.toml -------------------------------------------------------------------------------- /common/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/common/src/lib.rs -------------------------------------------------------------------------------- /example/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/Cargo.toml -------------------------------------------------------------------------------- /example/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/build.rs -------------------------------------------------------------------------------- /example/src/arithmetic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/arithmetic.rs -------------------------------------------------------------------------------- /example/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/main.rs -------------------------------------------------------------------------------- /example/src/optionals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/optionals.rs -------------------------------------------------------------------------------- /example/src/repetitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/repetitions.rs -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses-4.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__arithmetic__tests__failed_parses.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-4.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-5.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-6.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-6.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-7.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-7.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-8.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar-8.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__optionals__tests__optional_grammar.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-4.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-5.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3-5.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__repetitions__tests__repetitions_grammar3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__words__tests__words_grammar-2.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__words__tests__words_grammar-2.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__words__tests__words_grammar-3.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__words__tests__words_grammar-3.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__words__tests__words_grammar-4.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__words__tests__words_grammar-4.snap -------------------------------------------------------------------------------- /example/src/snapshots/rust_sitter_example__words__tests__words_grammar.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/snapshots/rust_sitter_example__words__tests__words_grammar.snap -------------------------------------------------------------------------------- /example/src/words.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/example/src/words.rs -------------------------------------------------------------------------------- /macro/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/Cargo.toml -------------------------------------------------------------------------------- /macro/src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/errors.rs -------------------------------------------------------------------------------- /macro/src/expansion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/expansion.rs -------------------------------------------------------------------------------- /macro/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/lib.rs -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__enum_prec_left.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__enum_prec_left.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__enum_recursive.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__enum_recursive.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__enum_transformed_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__enum_transformed_fields.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__enum_with_named_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__enum_with_named_field.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__enum_with_unamed_vector.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__enum_with_unamed_vector.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__grammar_unboxed_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__grammar_unboxed_field.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__spanned_in_vec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__spanned_in_vec.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__struct_extra.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__struct_extra.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__struct_optional.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__struct_optional.snap -------------------------------------------------------------------------------- /macro/src/snapshots/rust_sitter_macro__tests__struct_repeat.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/macro/src/snapshots/rust_sitter_macro__tests__struct_repeat.snap -------------------------------------------------------------------------------- /release.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/release.toml -------------------------------------------------------------------------------- /runtime/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/runtime/Cargo.toml -------------------------------------------------------------------------------- /runtime/src/__private.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/runtime/src/__private.rs -------------------------------------------------------------------------------- /runtime/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/runtime/src/lib.rs -------------------------------------------------------------------------------- /tool/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/Cargo.toml -------------------------------------------------------------------------------- /tool/src/expansion.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/expansion.rs -------------------------------------------------------------------------------- /tool/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/lib.rs -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__enum_prec_left.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__enum_prec_left.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__enum_recursive.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__enum_recursive.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__enum_transformed_fields.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__enum_transformed_fields.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__enum_with_named_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__enum_with_named_field.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__enum_with_unamed_vector.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__enum_with_unamed_vector.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat1.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat1.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat_no_delimiter.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__grammar_repeat_no_delimiter.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__grammar_unboxed_field.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__grammar_unboxed_field.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__grammar_with_extras.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__grammar_with_extras.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__spanned_in_vec.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__spanned_in_vec.snap -------------------------------------------------------------------------------- /tool/src/snapshots/rust_sitter_tool__tests__struct_optional.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/snapshots/rust_sitter_tool__tests__struct_optional.snap -------------------------------------------------------------------------------- /tool/src/wasm-sysroot/stdbool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/wasm-sysroot/stdbool.h -------------------------------------------------------------------------------- /tool/src/wasm-sysroot/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hydro-project/rust-sitter/HEAD/tool/src/wasm-sysroot/stdint.h -------------------------------------------------------------------------------- /tool/src/wasm-sysroot/stdio.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tool/src/wasm-sysroot/stdlib.h: -------------------------------------------------------------------------------- 1 | #define NULL ((void*)0) --------------------------------------------------------------------------------