Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
morgante committed Jul 10, 2024
1 parent f78d9d2 commit 19c3621
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/language-submodules/tree-sitter-yaml
Submodule tree-sitter-yaml updated 91 files
+32 −4 .editorconfig
+12 −5 .gitattributes
+8 −0 .github/dependabot.yml
+57 −0 .github/workflows/ci.yml
+26 −0 .github/workflows/fuzz.yml
+21 −0 .github/workflows/publish.yml
+35 −4 .gitignore
+2 −5 .gitmodules
+0 −13 .travis.yml
+0 −69 CHANGELOG.md
+27 −0 Cargo.toml
+2 −3 LICENSE
+113 −0 Makefile
+47 −0 Package.swift
+15 −47 README.md
+17 −6 binding.gyp
+16 −0 bindings/c/tree-sitter-yaml.h
+11 −0 bindings/c/tree-sitter-yaml.pc.in
+13 −0 bindings/go/binding.go
+15 −0 bindings/go/binding_test.go
+5 −0 bindings/go/go.mod
+14 −22 bindings/node/binding.cc
+28 −0 bindings/node/index.d.ts
+3 −15 bindings/node/index.js
+5 −0 bindings/python/tree_sitter_yaml/__init__.py
+1 −0 bindings/python/tree_sitter_yaml/__init__.pyi
+27 −0 bindings/python/tree_sitter_yaml/binding.c
+0 −0 bindings/python/tree_sitter_yaml/py.typed
+23 −0 bindings/rust/build.rs
+54 −0 bindings/rust/lib.rs
+16 −0 bindings/swift/TreeSitterYAML/yaml.h
+0 −354 corpus/schema.txt
+0 −9,754 corpus/spec.txt
+0 −21 docs/assets/tree-sitter-playground-0.19.3/LICENSE
+0 −469 docs/assets/tree-sitter-playground-0.19.3/playground.js
+0 −1 docs/assets/tree-sitter-playground-0.19.3/style.css
+ docs/assets/tree-sitter-yaml-0.5.0/tree-sitter-yaml.wasm
+0 −21 docs/assets/web-tree-sitter-0.19.3/LICENSE
+0 −1 docs/assets/web-tree-sitter-0.19.3/tree-sitter.js
+ docs/assets/web-tree-sitter-0.19.3/tree-sitter.wasm
+0 −124 docs/index.html
+2 −9 examples/invoice.yaml
+29 −0 examples/log-file.yaml
+1 −0 examples/yaml-test-suite
+0 −25 grammar-schema.js
+17 −7 grammar.js
+371 −0 package-lock.json
+60 −29 package.json
+37 −0 pyproject.toml
+79 −0 queries/highlights.scm
+32 −0 schema/core/grammar.js
+7 −0 schema/core/package.json
+180 −0 schema/core/src/grammar.json
+45 −0 schema/core/src/node-types.json
+362 −0 schema/core/src/parser.c
+54 −0 schema/core/src/tree_sitter/alloc.h
+290 −0 schema/core/src/tree_sitter/array.h
+265 −0 schema/core/src/tree_sitter/parser.h
+21 −0 schema/json/grammar.js
+7 −0 schema/json/package.json
+69 −0 schema/json/src/grammar.json
+45 −0 schema/json/src/node-types.json
+262 −0 schema/json/src/parser.c
+54 −0 schema/json/src/tree_sitter/alloc.h
+290 −0 schema/json/src/tree_sitter/array.h
+265 −0 schema/json/src/tree_sitter/parser.h
+33 −24 schema/update-schema.js
+0 −4 scripts/setup-tree-sitter.sh
+0 −11 scripts/update-schema.sh
+0 −51 scripts/update-spec-corpus.js
+57 −0 setup.py
+30 −1 src/grammar.json
+26,038 −24,241 src/parser.c
+1,404 −0 src/scanner.c
+0 −981 src/scanner.cc
+45 −49 src/schema.core.c
+102 −0 src/schema.json.c
+54 −0 src/tree_sitter/alloc.h
+290 −0 src/tree_sitter/array.h
+57 −15 src/tree_sitter/parser.h
+1,246 −0 test/corpus/02_preview.txt
+326 −0 test/corpus/05_characters.txt
+763 −0 test/corpus/06_structures.txt
+729 −0 test/corpus/07_flows.txt
+782 −0 test/corpus/08_blocks.txt
+145 −0 test/corpus/09_streams.txt
+508 −0 test/corpus/10_schemas.txt
+32 −0 test/highlight/core.yaml
+0 −1 tree-sitter
+0 −1 yaml-test-suite
+0 −1,324 yarn.lock

0 comments on commit 19c3621

Please sign in to comment.