tree-sitter 0.0.1 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +29 -8
- data/Rakefile +19 -4
- data/ext/tree-sitter/Makefile +24 -0
- data/ext/tree-sitter/document.c +149 -0
- data/ext/tree-sitter/document.h +17 -0
- data/ext/tree-sitter/extconf.rb +55 -15
- data/ext/tree-sitter/node.c +300 -0
- data/ext/tree-sitter/node.h +34 -0
- data/ext/tree-sitter/out/document.o +0 -0
- data/ext/tree-sitter/out/get_changed_ranges.o +0 -0
- data/ext/tree-sitter/out/language.o +0 -0
- data/ext/tree-sitter/out/lexer.o +0 -0
- data/ext/tree-sitter/out/libruntime.a +0 -0
- data/ext/tree-sitter/out/node.o +0 -0
- data/ext/tree-sitter/out/parser.o +0 -0
- data/ext/tree-sitter/out/python/parser.c +65600 -0
- data/ext/tree-sitter/out/python/parser.o +0 -0
- data/ext/tree-sitter/out/python/scanner.cc +164 -0
- data/ext/tree-sitter/out/python/scanner.o +0 -0
- data/ext/tree-sitter/out/stack.o +0 -0
- data/ext/tree-sitter/out/string_input.o +0 -0
- data/ext/tree-sitter/out/tree.o +0 -0
- data/ext/tree-sitter/out/utf16.o +0 -0
- data/ext/tree-sitter/out/utf8proc.o +0 -0
- data/ext/tree-sitter/tree-sitter.c +4 -109
- data/ext/tree-sitter/tree-sitter.h +4 -0
- data/ext/tree-sitter/tree-sitter/LICENSE +7 -0
- data/ext/tree-sitter/tree-sitter/README.md +13 -13
- data/ext/tree-sitter/tree-sitter/appveyor.yml +24 -0
- data/ext/tree-sitter/tree-sitter/docs/Gemfile +2 -0
- data/ext/tree-sitter/tree-sitter/docs/Gemfile.lock +239 -0
- data/ext/tree-sitter/tree-sitter/docs/_config.yml +1 -0
- data/ext/tree-sitter/tree-sitter/docs/_layouts/table-of-contents.html +74 -0
- data/ext/tree-sitter/tree-sitter/docs/creating-parsers.md +360 -0
- data/ext/tree-sitter/tree-sitter/docs/css/style.css +13 -0
- data/ext/tree-sitter/tree-sitter/docs/index.md +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/PRESUBMIT.py +10 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/buildbot/aosp_manifest.xml +466 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/buildbot/buildbot_run.py +91 -30
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyp +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyptest.py +3 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSNew.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSSettings.py +11 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSSettings_test.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSUtil.py +18 -15
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSVersion.py +53 -20
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/__init__.py +4 -6
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/__init__.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/common.py +69 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/common.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/flock_tool.py +6 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/__init__.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/analyzer.py +569 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/android.py +133 -111
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/cmake.py +3 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/eclipse.py +112 -22
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/gypd.py +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/make.py +45 -14
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/make.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/msvs.py +170 -98
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/ninja.py +300 -71
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/ninja_test.py +12 -9
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/xcode.py +46 -12
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/xcode.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/input.py +379 -335
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/input.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/input_test.py +7 -7
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/mac_tool.py +94 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/msvs_emulation.py +131 -40
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/simple_copy.py +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/win_tool.py +28 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcode_emulation.py +185 -88
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcode_emulation.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcode_ninja.py +268 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcodeproj_file.py +53 -46
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcodeproj_file.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-bare/gyptest-bare.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-depfile/depfile.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-depfile/gyptest-all.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-depfile/input.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-none/gyptest-none.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-all.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-default.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-generated-header.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir3/generate_main.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/gyptest-additional.py +8 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/common.gypi +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/gyptest-analyzer.py +356 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/subdir/subdir.gyp +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/subdir/subdir2/subdir2.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/subdir2/subdir.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/subdir2/subdir.includes.gypi +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test.gyp +113 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test2.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test2.includes.gypi +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test2.includes.includes.gypi +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test2.toplevel_includes.gypi +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test3.gyp +77 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test4.gyp +80 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/analyzer/test5.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/32or64.c +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/file.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-host-multilib.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-make-functions.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-noalias.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-settings-list.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-settings.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/gyptest-space-filenames.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/hello.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/hello.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/host_32or64.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/make_functions.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/settings-list.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/settings.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/space_filenames.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/android/writefile.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/build-option/gyptest-build.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/build-option/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/prog3.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cflags/cflags.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cflags/gyptest-cflags.py +15 -55
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/src/program.cpp +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/{compiler.gyp → compiler-exe.gyp} +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/compiler-shared-lib.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/gyptest-compiler-env-toolchain.py +78 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/gyptest-compiler-env.py +9 -11
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/gyptest-compiler-global-settings.py +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/my_nm.py +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/my_readelf.py +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/elseif.gyp +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/elseif_bad1.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/elseif_bad2.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/elseif_bad3.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/elseif_conditions.gypi +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/gyptest_elseif.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/conditions/elseif/program.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/configurations.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/gyptest-configurations.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/configurations.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/duplicates.gyp +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/duplicates.gypd.golden +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/gyptest-duplicates.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/gyptest-inheritance.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/front.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/x64/configurations.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-all.py +3 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-default.py +3 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-samedir.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-slash.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-updir.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/cxxflags.cc +4 -4
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/cxxflags.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/gyptest-cxxflags.py +13 -33
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines-escaping/defines-escaping.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/defines.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-extra-targets.py +2 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-lib-only.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/src/file1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/src/file2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/empty-target/empty-target.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/empty-target/gyptest-empty-target.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/dependency_cycle.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/file_cycle0.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/file_cycle1.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/gyptest-errors.py +10 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/exclusion/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/program.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-copies.py +3 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/deeper/deeper.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir3/prog3.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/gyp-defines/gyptest-multiple-values.py +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/src/printfoo.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/includes.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/subdir/subdir_includes.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test-assets-catalog.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test-crosscompile.gyp +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/tool_main.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ActionExtension/ActionViewController.h +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ActionExtension/ActionViewController.m +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ActionExtension/Info.plist +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ActionExtension/MainInterface.storyboard +63 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/AppDelegate.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/AppDelegate.m +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/ViewController.h +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/ViewController.m +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/ExtensionContainer/main.m +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/extension/extension.gyp +85 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-app-ios-assets-catalog.py +57 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-app-ios.py +7 -7
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-archs.py +22 -70
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-crosscompile.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-extension.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-watch.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-xcode-ninja.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchApp/Images.xcassets/AppIcon.appiconset/Contents.json +62 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchApp/Images.xcassets/LaunchImage.launchimage/Contents.json +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchApp/Info.plist +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchApp/Interface.storyboard +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/AppDelegate.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/AppDelegate.m +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/Base.lproj/Main.storyboard +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/Images.xcassets/LaunchImage.launchimage/Contents.json +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/ViewController.h +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/ViewController.m +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchContainer/main.m +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchKitExtension/Images.xcassets/MyImage.imageset/Contents.json +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchKitExtension/Info.plist +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchKitExtension/InterfaceController.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchKitExtension/InterfaceController.m +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/WatchKitExtension/MainInterface.storyboard +63 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/watch/watch.gyp +105 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestGyp.py +349 -46
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestMac.py +73 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestWin.py +101 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/gyptest-shared.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/gyptest-static.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-dependency/gyptest-link-dependency.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-dependency/main.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-dependency/mymalloc.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-dependency/test.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-objects/base.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/Images.xcassets/AppIcon.appiconset/Contents.json +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/Contents.json +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@2x.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/Images.xcassets/image.imageset/super_sylvain@3x.png +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/test-assets-catalog.gyp +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_a.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_a.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_b.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_b.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_c.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file_d.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-archs-multiarch.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-dependencies.gyp +92 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-valid-archs.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-library/libc++.cc +2 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-library/libstdc++.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-action-envvars.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-app-assets-catalog.py +120 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-app-error.py +2 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-app.py +8 -20
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-archs.py +39 -33
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-cflags.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-clang-cxx-library.py +3 -4
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-global-settings.py +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-installname.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-ldflags.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-libraries.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-libtool-zero.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-loadable-module-bundle-product-extension.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-loadable-module.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-objc-gc.py +24 -18
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-copy-bundle.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-fail.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-prefixheader.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-rpath.py +5 -4
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-strip.py +13 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-swift-library.py +62 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-type-envvars.py +3 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xcode-env-order.py +2 -6
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xcode-support-actions.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/libtool-zero/mylib.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/{errors/duplicate_basenames.gyp → mac/libtool-zero/test.gyp} +6 -4
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/loadable-module-bundle-product-extension/src.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/loadable-module-bundle-product-extension/test.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/swift-library/Info.plist +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/swift-library/file.swift +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/swift-library/test.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_executable.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_check_sdkroot.sh +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +2 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_none.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +1 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +1 -2
- data/ext/tree-sitter/tree-sitter/{out/Release/linker.lock → externals/gyp/test/mac/xcode-support-actions/source.c} +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-support-actions/test.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/main.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/main.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/ar/gyptest-make_global_settings_ar.py +123 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/ar/make_global_settings_ar.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +2 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/bar.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/foo.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/gyptest-make_global_settings.py +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/make_global_settings.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/my_nm.py +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/full-toolchain/my_readelf.py +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/ld/gyptest-make_global_settings_ld.py +130 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/ld/make_global_settings_ld.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/gyptest-many-actions-unsorted.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +2 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/config_attrs/hello.c +2 -2
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/hello.cpp +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/filters/gyptest-filters-2010.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/list_excluded/hello.cpp +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/multiple_actions_error_handling/action_fail.py +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/multiple_actions_error_handling/action_succeed.py +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/multiple_actions_error_handling/actions.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/multiple_actions_error_handling/gyptest.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/there/there.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/uldi2010/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/gyptest-all.py +0 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/gyptest-default.py +0 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action-rule-hash/gyptest-action-rule-hash.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action-rule-hash/subdir/action-rule-hash.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action-rule-hash/subdir/emit.py +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/chained-dependency/chained.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/empty-and-non-empty-duplicate-name/gyptest-empty-and-non-empty-duplicate-name.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/empty-and-non-empty-duplicate-name/subdir/included.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/empty-and-non-empty-duplicate-name/test.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-console/foo.bar +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-console/gyptest-use-console.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-console/use-console.gyp +60 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/gyptest-no-cpp.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/product/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/gyptest-prune-targets.py +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/gyptest-dirname.py +17 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +2 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +2 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +62 -14
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/main.cc +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/nodir.gencc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/main.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-all.py +7 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-default.py +7 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/actions.gyp +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/special-variables.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir1/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/both_rule_and_action_input.gyp +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/program.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir3/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir4/build-asm.gyp +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir4/program.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-shared.py +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-static.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/double-shared.gyp +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/double-static.gyp +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog3.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/gyptest-all.py +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/gyptest-all.py +6 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/gyptest-relocate.py +6 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog1/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog2/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/prog.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-SYMROOT-all.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-SYMROOT-default.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/main.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub1/prog1.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub2/prog2.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/gyptest-commands-repeated-multidir.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/repeated_multidir/dir_1/test_1.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/repeated_multidir/dir_2/test_2.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/repeated_multidir/main.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/repeated_multidir/print_cwd_basename.py +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/repeated_multidir/repeated_command_common.gypi +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/latelate/src/program.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/command-quote.gyp +0 -5
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention-cdecl.def +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention-fastcall.def +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention-stdcall.def +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention-vectorcall.def +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/calling-convention.gyp +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.cc +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/enable-enhanced-instruction-set.gyp +68 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/floating-point-model-fast.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/floating-point-model-precise.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/floating-point-model-strict.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/floating-point-model.gyp +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/enable-winrt/dllmain.cc +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/enable-winrt/enable-winrt.gyp +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/generator-output-different-drive/prog.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-calling-convention.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-enable-enhanced-instruction-set.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-floating-point-model.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-base-address.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-enable-winrt.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-pdb-no-output.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-pdb-output.py +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-profile.py +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-restat-importlib.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-safeseh.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-shard.py +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-targetext.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-targetfilename.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-targetpath.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-midl-excluded.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-midl-includedirs.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-midl-rules.py +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-ml-safeseh.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-system-include.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-excluded/bad.idl +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-excluded/copy-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-excluded/idl-excluded.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-excluded/program.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-includedirs/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-includedirs/idl-includedirs.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-includedirs/subdir/bar.idl +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-includedirs/subdir/foo.idl +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/Window.idl +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/basic-idl.gyp +67 -42
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/idl_compiler.py +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/large-pdb/main.cc +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/pdb-output.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/safeseh.gyp +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/safeseh_hello.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/safeseh_zero.asm +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/update_pgd.py +3 -3
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/ml-safeseh/a.asm +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/ml-safeseh/hello.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/ml-safeseh/ml-safeseh.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/hello.c +1 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/shard.gyp +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/shard_ref.gyp +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/system-include/bar/header.h +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/system-include/common/commonheader.h +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/system-include/foo/header.h +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/system-include/main.cc +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/system-include/test.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/containing-gyp.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/input-output-macros.gyp +0 -1
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/targetext.gyp +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/targetfilename.gyp +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/targetpath.gyp +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/win-tool/copies_readonly_files.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/win-tool/gyptest-win-tool-handles-readonly-files.py +55 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/gyp.el +36 -13
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/pretty_sln.py +4 -3
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/CMakeLists.txt +4 -2
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/MANIFEST +3 -3
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/Makefile +11 -6
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/NEWS.md +69 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/README.md +4 -2
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/bench.c +2 -2
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/data/Makefile +12 -9
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/data/data_generator.rb +125 -42
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/custom.c +27 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/iterate.c +8 -2
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/printproperty.c +5 -7
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc.c +209 -98
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc.h +126 -28
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc_data.c +12976 -15342
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/compiler.h +2 -0
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/parser.h +73 -74
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/runtime.h +29 -20
- data/ext/tree-sitter/tree-sitter/project.gyp +13 -24
- data/ext/tree-sitter/tree-sitter/script/benchmark +76 -0
- data/ext/tree-sitter/tree-sitter/script/build-fuzzers +66 -0
- data/ext/tree-sitter/tree-sitter/script/ci +2 -1
- data/ext/tree-sitter/tree-sitter/script/configure.cmd +3 -0
- data/ext/tree-sitter/tree-sitter/script/fetch-fixtures +13 -9
- data/ext/tree-sitter/tree-sitter/script/fetch-fixtures.cmd +26 -0
- data/ext/tree-sitter/tree-sitter/script/reproduce +1 -0
- data/ext/tree-sitter/tree-sitter/script/run-fuzzer +57 -0
- data/ext/tree-sitter/tree-sitter/script/test +47 -8
- data/ext/tree-sitter/tree-sitter/script/test.cmd +2 -0
- data/ext/tree-sitter/tree-sitter/script/trim-whitespace +1 -1
- data/ext/tree-sitter/tree-sitter/script/util/scan-build.sh +24 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item.cc +60 -41
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item.h +6 -7
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item_transitions.cc +108 -101
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item_transitions.h +1 -4
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_table_builder.cc +537 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_table_builder.h +57 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lookahead_set.cc +93 -19
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lookahead_set.h +90 -5
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item.cc +77 -29
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item.h +4 -9
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item_set_builder.cc +229 -94
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item_set_builder.h +9 -3
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_table_builder.cc +893 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_table_builder.h +38 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/rule_can_be_blank.cc +34 -35
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/rule_can_be_blank.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/compiler/compile.cc +23 -40
- data/ext/tree-sitter/tree-sitter/src/compiler/compile_error.h +6 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/generate_code/c_code.cc +301 -124
- data/ext/tree-sitter/tree-sitter/src/compiler/generate_code/c_code.h +12 -4
- data/ext/tree-sitter/tree-sitter/{doc → src/compiler}/grammar-schema.json +34 -42
- data/ext/tree-sitter/tree-sitter/src/compiler/grammar.h +24 -5
- data/ext/tree-sitter/tree-sitter/src/compiler/lex_table.cc +2 -31
- data/ext/tree-sitter/tree-sitter/src/compiler/lex_table.h +6 -30
- data/ext/tree-sitter/tree-sitter/src/compiler/lexical_grammar.h +15 -3
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_grammar.cc +143 -105
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_grammar.h +2 -1
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_table.cc +71 -174
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_table.h +23 -41
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_repeats.cc +67 -34
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_repeats.h +0 -2
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_tokens.cc +53 -61
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_tokens.h +9 -3
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_choices.cc +37 -43
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_choices.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_tokens.cc +248 -125
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_tokens.h +3 -2
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/flatten_grammar.cc +114 -70
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/flatten_grammar.h +2 -2
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/initial_syntax_grammar.h +4 -3
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/intern_symbols.cc +113 -50
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/intern_symbols.h +2 -2
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/interned_grammar.h +7 -6
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/normalize_rules.cc +5 -3
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/parse_regex.cc +95 -76
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/parse_regex.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/prepare_grammar.cc +9 -7
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/prepare_grammar.h +2 -5
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/token_description.cc +59 -45
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/token_description.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/compiler/rule.cc +284 -6
- data/ext/tree-sitter/tree-sitter/src/compiler/rule.h +124 -25
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/blank.h +5 -14
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_set.cc +35 -84
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_set.h +19 -26
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/choice.cc +3 -69
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/choice.h +6 -13
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/metadata.cc +128 -71
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/metadata.h +48 -17
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/named_symbol.h +6 -12
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/pattern.h +6 -12
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/repeat.cc +5 -34
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/repeat.h +7 -13
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/seq.cc +6 -47
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/seq.h +8 -14
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/string.h +6 -12
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/symbol.h +53 -32
- data/ext/tree-sitter/tree-sitter/src/compiler/syntax_grammar.cc +24 -22
- data/ext/tree-sitter/tree-sitter/src/compiler/syntax_grammar.h +36 -21
- data/ext/tree-sitter/tree-sitter/src/compiler/util/make_visitor.h +31 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/alloc.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/runtime/array.h +25 -36
- data/ext/tree-sitter/tree-sitter/src/runtime/document.c +61 -34
- data/ext/tree-sitter/tree-sitter/src/runtime/document.h +3 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/error_costs.h +5 -19
- data/ext/tree-sitter/tree-sitter/src/runtime/get_changed_ranges.c +355 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/get_changed_ranges.h +20 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/language.c +33 -31
- data/ext/tree-sitter/tree-sitter/src/runtime/language.h +27 -3
- data/ext/tree-sitter/tree-sitter/src/runtime/length.h +5 -21
- data/ext/tree-sitter/tree-sitter/src/runtime/lexer.c +61 -17
- data/ext/tree-sitter/tree-sitter/src/runtime/lexer.h +4 -5
- data/ext/tree-sitter/tree-sitter/src/runtime/node.c +93 -89
- data/ext/tree-sitter/tree-sitter/src/runtime/node.h +1 -1
- data/ext/tree-sitter/tree-sitter/src/runtime/parser.c +850 -743
- data/ext/tree-sitter/tree-sitter/src/runtime/parser.h +13 -8
- data/ext/tree-sitter/tree-sitter/src/runtime/point.h +9 -4
- data/ext/tree-sitter/tree-sitter/src/runtime/reduce_action.h +2 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/reusable_node.h +14 -18
- data/ext/tree-sitter/tree-sitter/src/runtime/stack.c +424 -302
- data/ext/tree-sitter/tree-sitter/src/runtime/stack.h +75 -72
- data/ext/tree-sitter/tree-sitter/src/runtime/string_input.c +4 -10
- data/ext/tree-sitter/tree-sitter/src/runtime/tree.c +401 -252
- data/ext/tree-sitter/tree-sitter/src/runtime/tree.h +71 -57
- data/ext/tree-sitter/tree-sitter/src/runtime/utf16.c +5 -0
- data/ext/tree-sitter/tree-sitter/test/benchmarks.cc +122 -0
- data/ext/tree-sitter/tree-sitter/{spec/compiler/build_tables/lex_item_spec.cc → test/compiler/build_tables/lex_item_test.cc} +141 -143
- data/ext/tree-sitter/tree-sitter/test/compiler/build_tables/parse_item_set_builder_test.cc +134 -0
- data/ext/tree-sitter/tree-sitter/{spec/compiler/build_tables/rule_can_be_blank_spec.cc → test/compiler/build_tables/rule_can_be_blank_test.cc} +16 -19
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/expand_repeats_test.cc +170 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/expand_tokens_test.cc +89 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/extract_choices_test.cc +77 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/extract_tokens_test.cc +459 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/flatten_grammar_test.cc +130 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/intern_symbols_test.cc +101 -0
- data/ext/tree-sitter/tree-sitter/test/compiler/prepare_grammar/parse_regex_test.cc +334 -0
- data/ext/tree-sitter/tree-sitter/{spec/compiler/rules/character_set_spec.cc → test/compiler/rules/character_set_test.cc} +15 -27
- data/ext/tree-sitter/tree-sitter/test/compiler/rules/rule_test.cc +90 -0
- data/ext/tree-sitter/tree-sitter/{spec/compiler/util/string_helpers_spec.cc → test/compiler/util/string_helpers_test.cc} +1 -1
- data/ext/tree-sitter/tree-sitter/test/fixtures/error_corpus/c_errors.txt +166 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/error_corpus/javascript_errors.txt +179 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/fixtures/error_corpus/json_errors.txt +10 -7
- data/ext/tree-sitter/tree-sitter/{spec → test}/fixtures/error_corpus/python_errors.txt +0 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_inlined_rules/corpus.txt +13 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_inlined_rules/grammar.json +59 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_inlined_rules/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_rules/corpus.txt +18 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_rules/grammar.json +71 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_unit_reductions/corpus.txt +12 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_unit_reductions/grammar.json +70 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/aliased_unit_reductions/readme.md +5 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/corpus.txt +32 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/grammar.json +14 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/anonymous_tokens_with_escaped_chars/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_left/corpus.txt +8 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_left/grammar.json +31 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_missing/expected_error.txt +13 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_missing/grammar.json +27 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_right/corpus.txt +8 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/associativity_right/grammar.json +31 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule/expected_error.txt +14 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule/grammar.json +76 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/expected_error.txt +14 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/grammar.json +82 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflict_in_repeat_rule_after_external_token/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflicting_precedence/expected_error.txt +15 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/conflicting_precedence/grammar.json +58 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/dynamic_precedence/corpus.txt +25 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/dynamic_precedence/grammar.json +73 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/dynamic_precedence/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/epsilon_rules/expected_error.txt +4 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/epsilon_rules/grammar.json +15 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/corpus.txt +41 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/grammar.json +35 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_anonymous_tokens/scanner.c +36 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_tokens/corpus.txt +41 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_tokens/grammar.json +36 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_and_internal_tokens/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/{spec/fixtures/external_scanners/shared_external_tokens.c → test/fixtures/test_grammars/external_and_internal_tokens/scanner.c} +21 -14
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_extra_tokens/corpus.txt +10 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_extra_tokens/grammar.json +25 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_extra_tokens/scanner.c +49 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_tokens/corpus.txt +22 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/external_tokens/grammar.json +57 -0
- data/ext/tree-sitter/tree-sitter/{spec/fixtures/external_scanners/percent_strings.c → test/fixtures/test_grammars/external_tokens/scanner.c} +19 -17
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inline_rules/corpus.txt +20 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inline_rules/grammar.json +76 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inlined_aliased_rules/corpus.txt +18 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inlined_aliased_rules/grammar.json +75 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inlined_aliased_rules/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inverted_external_token/corpus.txt +32 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inverted_external_token/grammar.json +55 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inverted_external_token/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/inverted_external_token/scanner.c +48 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/invisible_start_rule/expected_error.txt +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/invisible_start_rule/grammar.json +23 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/corpus.txt +33 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/grammar.json +65 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/lexical_conflicts_due_to_state_merging/readme.md +20 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/nested_inlined_rules/corpus.txt +12 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/nested_inlined_rules/grammar.json +54 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/nested_inlined_rules/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/partially_resolved_conflict/expected_error.txt +14 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/partially_resolved_conflict/grammar.json +58 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/partially_resolved_conflict/readme.txt +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_missing/expected_error.txt +15 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_missing/grammar.json +63 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_missing/readme.md +15 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_negative/corpus.txt +12 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_negative/grammar.json +63 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_negative/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_positive/corpus.txt +13 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_positive/grammar.json +63 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_single_child_positive/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_subsequence/corpus.txt +24 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/precedence_on_subsequence/grammar.json +135 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/readme.md +3 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/readme_grammar/corpus.txt +13 -0
- data/{test/tree-sitter/fixtures/arithmetic → ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/readme_grammar}/grammar.json +3 -3
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/start_rule_is_blank/corpus.txt +7 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/start_rule_is_blank/grammar.json +6 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/start_rule_is_token/corpus.txt +6 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/start_rule_is_token/grammar.json +6 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/unused_rules/corpus.txt +9 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/unused_rules/grammar.json +73 -0
- data/ext/tree-sitter/tree-sitter/test/fixtures/test_grammars/unused_rules/readme.md +1 -0
- data/ext/tree-sitter/tree-sitter/test/fuzz/README.md +43 -0
- data/ext/tree-sitter/tree-sitter/test/fuzz/fuzzer.cc +27 -0
- data/ext/tree-sitter/tree-sitter/test/fuzz/gen-dict.py +31 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/dedent.h +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/encoding_helpers.cc +9 -3
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/encoding_helpers.h +0 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/file_helpers.cc +100 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/file_helpers.h +15 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/load_language.cc +239 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/load_language.h +14 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/point_helpers.cc +2 -5
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/point_helpers.h +0 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/random_helpers.cc +59 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/random_helpers.h +14 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/read_test_entries.cc +38 -38
- data/ext/tree-sitter/tree-sitter/test/helpers/read_test_entries.h +22 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/record_alloc.cc +7 -13
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/record_alloc.h +2 -2
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/scope_sequence.cc +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/scope_sequence.h +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/spy_input.cc +39 -15
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/spy_input.h +4 -4
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/spy_logger.cc +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/spy_logger.h +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/stderr_logger.cc +0 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/stderr_logger.h +0 -0
- data/ext/tree-sitter/tree-sitter/test/helpers/stream_methods.cc +224 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/stream_methods.h +32 -15
- data/ext/tree-sitter/tree-sitter/test/helpers/tree_helpers.cc +99 -0
- data/ext/tree-sitter/tree-sitter/{spec → test}/helpers/tree_helpers.h +3 -1
- data/ext/tree-sitter/tree-sitter/test/integration/fuzzing-examples.cc +67 -0
- data/ext/tree-sitter/tree-sitter/test/integration/real_grammars.cc +142 -0
- data/ext/tree-sitter/tree-sitter/test/integration/test_grammars.cc +79 -0
- data/ext/tree-sitter/tree-sitter/{spec/runtime/document_spec.cc → test/runtime/document_test.cc} +150 -32
- data/ext/tree-sitter/tree-sitter/test/runtime/language_test.cc +55 -0
- data/ext/tree-sitter/tree-sitter/{spec/runtime/node_spec.cc → test/runtime/node_test.cc} +222 -127
- data/ext/tree-sitter/tree-sitter/{spec/runtime/parser_spec.cc → test/runtime/parser_test.cc} +126 -85
- data/ext/tree-sitter/tree-sitter/{spec/runtime/stack_spec.cc → test/runtime/stack_test.cc} +201 -164
- data/ext/tree-sitter/tree-sitter/test/runtime/tree_test.cc +475 -0
- data/ext/tree-sitter/tree-sitter/{spec/spec_helper.h → test/test_helper.h} +3 -3
- data/ext/tree-sitter/tree-sitter/{spec/specs.cc → test/tests.cc} +4 -3
- data/ext/tree-sitter/tree-sitter/tests.gyp +77 -23
- data/lib/tree-sitter.rb +4 -0
- data/lib/tree-sitter/node.rb +27 -0
- data/lib/tree-sitter/version.rb +3 -1
- data/test/test_helper.rb +4 -0
- data/test/tree-sitter/fixtures/parsers/python/parser.c +65600 -0
- data/test/tree-sitter/fixtures/parsers/python/scanner.cc +164 -0
- data/test/tree-sitter/test_basic.rb +2 -0
- data/test/tree-sitter/test_document.rb +101 -1
- data/test/tree-sitter/test_node.rb +73 -0
- data/tree-sitter.gemspec +4 -2
- metadata +445 -217
- data/ext/tree-sitter/tree-sitter/Makefile +0 -360
- data/ext/tree-sitter/tree-sitter/compiler.target.mk +0 -238
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylintrc +0 -307
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-fail-shared.py +0 -18
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-fail-static.py +0 -18
- data/ext/tree-sitter/tree-sitter/gyp-mac-tool +0 -511
- data/ext/tree-sitter/tree-sitter/out/Release/libcompiler.a +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/libruntime.a +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/externals/json-parser/json.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/externals/utf8proc/utf8proc.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/build_lex_table.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/build_parse_table.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/build_tables.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/lex_conflict_manager.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/lex_item.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/lex_item_transitions.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/lookahead_set.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/parse_item.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/parse_item_set_builder.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/recovery_tokens.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/build_tables/rule_can_be_blank.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/compile.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/generate_code/c_code.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/lex_table.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/parse_grammar.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/parse_table.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/precedence_range.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/expand_repeats.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/expand_tokens.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/extract_choices.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/extract_tokens.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/flatten_grammar.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/intern_symbols.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/is_token.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/normalize_rules.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/parse_regex.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/prepare_grammar.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/prepare_grammar/token_description.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rule.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/blank.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/built_in_symbols.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/character_range.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/character_set.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/choice.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/metadata.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/named_symbol.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/pattern.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/repeat.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/rules.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/seq.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/string.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/symbol.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/rules/visitor.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/syntax_grammar.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/util/string_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/compiler/src/compiler/variable.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/externals/utf8proc/utf8proc.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/document.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/error_costs.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/language.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/lexer.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/node.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/parser.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/stack.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/string_input.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/tree.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/runtime/src/runtime/utf16.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/build_tables/distinctive_tokens_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/build_tables/lex_conflict_manager_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/build_tables/lex_item_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/build_tables/parse_item_set_builder_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/build_tables/rule_can_be_blank_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/expand_repeats_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/expand_tokens_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/extract_choices_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/extract_tokens_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/flatten_grammar_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/intern_symbols_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/prepare_grammar/parse_regex_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/rules/character_set_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/rules/choice_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/rules/repeat_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/compiler/util/string_helpers_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/encoding_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/load_language.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/point_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/random_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/read_test_entries.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/record_alloc.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/rule_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/scope_sequence.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/spy_input.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/spy_logger.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/stderr_logger.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/stream_methods.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/helpers/tree_helpers.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/integration/compile_grammar_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/integration/corpus_specs.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/runtime/document_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/runtime/node_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/runtime/parser_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/runtime/stack_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/runtime/tree_spec.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/obj.target/tests/spec/specs.o +0 -0
- data/ext/tree-sitter/tree-sitter/out/Release/tests +0 -0
- data/ext/tree-sitter/tree-sitter/project.Makefile +0 -6
- data/ext/tree-sitter/tree-sitter/runtime.target.mk +0 -174
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/distinctive_tokens_spec.cc +0 -34
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/lex_conflict_manager_spec.cc +0 -88
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/parse_item_set_builder_spec.cc +0 -133
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/expand_repeats_spec.cc +0 -152
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/expand_tokens_spec.cc +0 -109
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/extract_choices_spec.cc +0 -106
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/extract_tokens_spec.cc +0 -251
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/flatten_grammar_spec.cc +0 -89
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/intern_symbols_spec.cc +0 -89
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/parse_regex_spec.cc +0 -245
- data/ext/tree-sitter/tree-sitter/spec/compiler/rules/choice_spec.cc +0 -53
- data/ext/tree-sitter/tree-sitter/spec/compiler/rules/repeat_spec.cc +0 -22
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/c_errors.txt +0 -130
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/javascript_errors.txt +0 -157
- data/ext/tree-sitter/tree-sitter/spec/fixtures/external_scanners/extra_external_tokens.c +0 -42
- data/ext/tree-sitter/tree-sitter/spec/helpers/equals_pointer.h +0 -37
- data/ext/tree-sitter/tree-sitter/spec/helpers/load_language.cc +0 -206
- data/ext/tree-sitter/tree-sitter/spec/helpers/load_language.h +0 -12
- data/ext/tree-sitter/tree-sitter/spec/helpers/random_helpers.cc +0 -35
- data/ext/tree-sitter/tree-sitter/spec/helpers/random_helpers.h +0 -8
- data/ext/tree-sitter/tree-sitter/spec/helpers/read_test_entries.h +0 -15
- data/ext/tree-sitter/tree-sitter/spec/helpers/rule_helpers.cc +0 -55
- data/ext/tree-sitter/tree-sitter/spec/helpers/rule_helpers.h +0 -21
- data/ext/tree-sitter/tree-sitter/spec/helpers/stream_methods.cc +0 -140
- data/ext/tree-sitter/tree-sitter/spec/helpers/tree_helpers.cc +0 -50
- data/ext/tree-sitter/tree-sitter/spec/integration/compile_grammar_spec.cc +0 -847
- data/ext/tree-sitter/tree-sitter/spec/integration/corpus_specs.cc +0 -185
- data/ext/tree-sitter/tree-sitter/spec/runtime/tree_spec.cc +0 -439
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_lex_table.cc +0 -195
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_lex_table.h +0 -18
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_parse_table.cc +0 -604
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_parse_table.h +0 -22
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_tables.cc +0 -27
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_tables.h +0 -24
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/conflict_type.h +0 -16
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_conflict_manager.cc +0 -55
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_conflict_manager.h +0 -31
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/recovery_tokens.cc +0 -89
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/recovery_tokens.h +0 -19
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/remove_duplicate_states.h +0 -65
- data/ext/tree-sitter/tree-sitter/src/compiler/compile.h +0 -16
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/is_token.cc +0 -30
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/is_token.h +0 -14
- data/ext/tree-sitter/tree-sitter/src/compiler/rules.h +0 -28
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/blank.cc +0 -36
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/built_in_symbols.cc +0 -19
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/built_in_symbols.h +0 -16
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_range.cc +0 -36
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_range.h +0 -25
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/named_symbol.cc +0 -35
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/pattern.cc +0 -36
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/rules.cc +0 -108
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/string.cc +0 -35
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/symbol.cc +0 -82
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/visitor.cc +0 -44
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/visitor.h +0 -234
- data/ext/tree-sitter/tree-sitter/src/compiler/variable.cc +0 -11
- data/ext/tree-sitter/tree-sitter/src/compiler/variable.h +0 -27
- data/ext/tree-sitter/tree-sitter/src/runtime/error_costs.c +0 -28
- data/ext/tree-sitter/tree-sitter/src/runtime/tree_path.h +0 -217
- data/ext/tree-sitter/tree-sitter/tests.Makefile +0 -6
- data/ext/tree-sitter/tree-sitter/tests.target.mk +0 -176
- data/test/tree-sitter/fixtures/ruby/grammar.json +0 -4803
- data/test/tree-sitter/test_grammar.rb +0 -34
@@ -1,12 +0,0 @@
|
|
1
|
-
#ifndef HELPERS_LOAD_LANGUAGE_H_
|
2
|
-
#define HELPERS_LOAD_LANGUAGE_H_
|
3
|
-
|
4
|
-
#include "tree_sitter/compiler.h"
|
5
|
-
#include "tree_sitter/runtime.h"
|
6
|
-
#include <string>
|
7
|
-
|
8
|
-
const TSLanguage *load_compile_result(const std::string &, const TSCompileResult &,
|
9
|
-
std::string external_scanner_path = "");
|
10
|
-
const TSLanguage *get_test_language(const std::string &language_name);
|
11
|
-
|
12
|
-
#endif // HELPERS_LOAD_LANGUAGE_H_
|
@@ -1,35 +0,0 @@
|
|
1
|
-
#include <string>
|
2
|
-
#include <stdlib.h>
|
3
|
-
|
4
|
-
using std::string;
|
5
|
-
|
6
|
-
static string random_string(char min, char max) {
|
7
|
-
string result;
|
8
|
-
size_t length = random() % 12;
|
9
|
-
for (size_t i = 0; i < length; i++) {
|
10
|
-
char inserted_char = min + (random() % (max - min));
|
11
|
-
result += inserted_char;
|
12
|
-
}
|
13
|
-
return result;
|
14
|
-
}
|
15
|
-
|
16
|
-
static string random_char(string characters) {
|
17
|
-
size_t index = random() % characters.size();
|
18
|
-
return string() + characters[index];
|
19
|
-
}
|
20
|
-
|
21
|
-
string random_words(size_t count) {
|
22
|
-
string result;
|
23
|
-
bool just_inserted_word = false;
|
24
|
-
for (size_t i = 0; i < count; i++) {
|
25
|
-
if (random() % 10 < 6) {
|
26
|
-
result += random_char("!(){}[]<>+-=");
|
27
|
-
} else {
|
28
|
-
if (just_inserted_word)
|
29
|
-
result += " ";
|
30
|
-
result += random_string('a', 'z');
|
31
|
-
just_inserted_word = true;
|
32
|
-
}
|
33
|
-
}
|
34
|
-
return result;
|
35
|
-
}
|
@@ -1,15 +0,0 @@
|
|
1
|
-
#ifndef HELPERS_READ_TEST_ENTRIES_H_
|
2
|
-
#define HELPERS_READ_TEST_ENTRIES_H_
|
3
|
-
|
4
|
-
#include <string>
|
5
|
-
#include <vector>
|
6
|
-
|
7
|
-
struct TestEntry {
|
8
|
-
std::string description;
|
9
|
-
std::string input;
|
10
|
-
std::string tree_string;
|
11
|
-
};
|
12
|
-
|
13
|
-
std::vector<TestEntry> read_corpus_entries(std::string directory);
|
14
|
-
|
15
|
-
#endif
|
@@ -1,55 +0,0 @@
|
|
1
|
-
#include "rule_helpers.h"
|
2
|
-
#include <memory>
|
3
|
-
#include "compiler/rules/symbol.h"
|
4
|
-
|
5
|
-
namespace tree_sitter {
|
6
|
-
using std::make_shared;
|
7
|
-
using std::set;
|
8
|
-
using std::map;
|
9
|
-
using std::ostream;
|
10
|
-
using std::string;
|
11
|
-
using std::to_string;
|
12
|
-
using rules::Symbol;
|
13
|
-
|
14
|
-
rule_ptr character(const set<uint32_t> &ranges) {
|
15
|
-
return character(ranges, true);
|
16
|
-
}
|
17
|
-
|
18
|
-
rule_ptr character(const set<uint32_t> &chars, bool sign) {
|
19
|
-
rules::CharacterSet result;
|
20
|
-
if (sign) {
|
21
|
-
for (uint32_t c : chars)
|
22
|
-
result.include(c);
|
23
|
-
} else {
|
24
|
-
result.include_all();
|
25
|
-
for (uint32_t c : chars)
|
26
|
-
result.exclude(c);
|
27
|
-
}
|
28
|
-
return result.copy();
|
29
|
-
}
|
30
|
-
|
31
|
-
rule_ptr i_sym(size_t index) {
|
32
|
-
return make_shared<Symbol>(index, Symbol::NonTerminal);
|
33
|
-
}
|
34
|
-
|
35
|
-
rule_ptr i_token(size_t index) {
|
36
|
-
return make_shared<Symbol>(index, Symbol::Terminal);
|
37
|
-
}
|
38
|
-
|
39
|
-
rule_ptr metadata(rule_ptr rule, rules::MetadataParams params) {
|
40
|
-
return rules::Metadata::build(rule, params);
|
41
|
-
}
|
42
|
-
|
43
|
-
rule_ptr active_prec(int precedence, rule_ptr rule) {
|
44
|
-
rules::MetadataParams params;
|
45
|
-
params.precedence = precedence;
|
46
|
-
params.has_precedence = true;
|
47
|
-
params.is_active = true;
|
48
|
-
return rules::Metadata::build(rule, params);
|
49
|
-
}
|
50
|
-
|
51
|
-
bool operator==(const Variable &left, const Variable &right) {
|
52
|
-
return left.name == right.name && left.rule->operator==(*right.rule) &&
|
53
|
-
left.type == right.type;
|
54
|
-
}
|
55
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
#ifndef HELPERS_RULE_HELPERS_H_
|
2
|
-
#define HELPERS_RULE_HELPERS_H_
|
3
|
-
|
4
|
-
#include "tree_sitter/compiler.h"
|
5
|
-
#include "compiler/rules.h"
|
6
|
-
#include "compiler/rules/character_set.h"
|
7
|
-
#include "compiler/rules/metadata.h"
|
8
|
-
#include "compiler/variable.h"
|
9
|
-
|
10
|
-
namespace tree_sitter {
|
11
|
-
rule_ptr metadata(rule_ptr, rules::MetadataParams params);
|
12
|
-
rule_ptr character(const std::set<uint32_t> &);
|
13
|
-
rule_ptr character(const std::set<uint32_t> &, bool sign);
|
14
|
-
rule_ptr i_sym(size_t index);
|
15
|
-
rule_ptr i_token(size_t index);
|
16
|
-
rule_ptr active_prec(int precedence, rule_ptr);
|
17
|
-
|
18
|
-
bool operator==(const Variable &left, const Variable &right);
|
19
|
-
}
|
20
|
-
|
21
|
-
#endif // HELPERS_RULE_HELPERS_H_
|
@@ -1,140 +0,0 @@
|
|
1
|
-
#include "helpers/stream_methods.h"
|
2
|
-
#include "spec_helper.h"
|
3
|
-
#include "tree_sitter/compiler.h"
|
4
|
-
#include "compiler/parse_table.h"
|
5
|
-
#include "compiler/syntax_grammar.h"
|
6
|
-
#include "compiler/build_tables/parse_item.h"
|
7
|
-
#include "compiler/build_tables/lex_item.h"
|
8
|
-
|
9
|
-
namespace tree_sitter {
|
10
|
-
|
11
|
-
ostream &operator<<(ostream &stream, const Grammar &grammar) {
|
12
|
-
stream << string("#<grammar");
|
13
|
-
stream << " rules: " << grammar.rules;
|
14
|
-
return stream << string("}>");
|
15
|
-
}
|
16
|
-
|
17
|
-
ostream &operator<<(ostream &stream, const CompileError &error) {
|
18
|
-
if (error.type)
|
19
|
-
return stream << (string("#<compile-error '") + error.message + "'>");
|
20
|
-
else
|
21
|
-
return stream << string("#<no-compile-error>");
|
22
|
-
}
|
23
|
-
|
24
|
-
ostream &operator<<(ostream &stream, const Rule &rule) {
|
25
|
-
return stream << rule.to_string();
|
26
|
-
}
|
27
|
-
|
28
|
-
ostream &operator<<(ostream &stream, const rule_ptr &rule) {
|
29
|
-
if (rule.get())
|
30
|
-
stream << *rule;
|
31
|
-
else
|
32
|
-
stream << string("(null-rule)");
|
33
|
-
return stream;
|
34
|
-
}
|
35
|
-
|
36
|
-
ostream &operator<<(ostream &stream, const Variable &variable) {
|
37
|
-
return stream << string("{") << variable.name << string(", ") << variable.rule << string(", ") << to_string(variable.type) << string("}");
|
38
|
-
}
|
39
|
-
|
40
|
-
ostream &operator<<(ostream &stream, const SyntaxVariable &variable) {
|
41
|
-
return stream << string("{") << variable.name << string(", ") << variable.productions << string(", ") << to_string(variable.type) << string("}");
|
42
|
-
}
|
43
|
-
|
44
|
-
std::ostream &operator<<(std::ostream &stream, const AdvanceAction &action) {
|
45
|
-
return stream << string("#<advance ") + to_string(action.state_index) + ">";
|
46
|
-
}
|
47
|
-
|
48
|
-
std::ostream &operator<<(std::ostream &stream, const AcceptTokenAction &action) {
|
49
|
-
return stream << string("#<accept ") + to_string(action.symbol.index) + ">";
|
50
|
-
}
|
51
|
-
|
52
|
-
ostream &operator<<(ostream &stream, const ParseAction &action) {
|
53
|
-
switch (action.type) {
|
54
|
-
case ParseActionTypeError:
|
55
|
-
return stream << string("#<error>");
|
56
|
-
case ParseActionTypeAccept:
|
57
|
-
return stream << string("#<accept>");
|
58
|
-
case ParseActionTypeShift:
|
59
|
-
return stream << string("#<shift state:") << to_string(action.state_index) << ">";
|
60
|
-
case ParseActionTypeReduce:
|
61
|
-
return stream << ("#<reduce sym" + to_string(action.symbol.index) + " " +
|
62
|
-
to_string(action.consumed_symbol_count) + ">");
|
63
|
-
default:
|
64
|
-
return stream;
|
65
|
-
}
|
66
|
-
}
|
67
|
-
|
68
|
-
ostream &operator<<(ostream &stream, const ParseTableEntry &entry) {
|
69
|
-
return stream << entry.actions;
|
70
|
-
}
|
71
|
-
|
72
|
-
ostream &operator<<(ostream &stream, const ParseState &state) {
|
73
|
-
stream << string("#<parse_state terminal_entries:");
|
74
|
-
stream << state.terminal_entries;
|
75
|
-
stream << " nonterminal_entries: " << state.nonterminal_entries;
|
76
|
-
return stream << string(">");
|
77
|
-
}
|
78
|
-
|
79
|
-
ostream &operator<<(ostream &stream, const ExternalToken &external_token) {
|
80
|
-
return stream << "{" << external_token.name << ", " << external_token.type <<
|
81
|
-
"," << external_token.corresponding_internal_token << "}";
|
82
|
-
}
|
83
|
-
|
84
|
-
ostream &operator<<(ostream &stream, const ProductionStep &step) {
|
85
|
-
stream << "(symbol: " << step.symbol << ", precedence:" << to_string(step.precedence);
|
86
|
-
stream << ", associativity: ";
|
87
|
-
switch (step.associativity) {
|
88
|
-
case rules::AssociativityLeft:
|
89
|
-
return stream << "left)";
|
90
|
-
case rules::AssociativityRight:
|
91
|
-
return stream << "right)";
|
92
|
-
default:
|
93
|
-
return stream << "none)";
|
94
|
-
}
|
95
|
-
}
|
96
|
-
|
97
|
-
ostream &operator<<(ostream &stream, const PrecedenceRange &range) {
|
98
|
-
if (range.empty)
|
99
|
-
return stream << string("{empty}");
|
100
|
-
else
|
101
|
-
return stream << string("{") << to_string(range.min) << string(", ") << to_string(range.max) << string("}");
|
102
|
-
}
|
103
|
-
|
104
|
-
namespace build_tables {
|
105
|
-
|
106
|
-
ostream &operator<<(ostream &stream, const LexItem &item) {
|
107
|
-
return stream << string("(item ") << item.lhs << string(" ") << *item.rule
|
108
|
-
<< string(")");
|
109
|
-
}
|
110
|
-
|
111
|
-
ostream &operator<<(ostream &stream, const LexItemSet &item_set) {
|
112
|
-
return stream << item_set.entries;
|
113
|
-
}
|
114
|
-
|
115
|
-
ostream &operator<<(ostream &stream, const LexItemSet::Transition &transition) {
|
116
|
-
return stream << "{dest: " << transition.destination << ", prec: " << transition.precedence << "}";
|
117
|
-
}
|
118
|
-
|
119
|
-
ostream &operator<<(ostream &stream, const ParseItem &item) {
|
120
|
-
return stream << string("(item variable:") << to_string(item.variable_index)
|
121
|
-
<< string(" production:") << to_string((size_t)item.production % 1000)
|
122
|
-
<< string(" step:") << to_string(item.step_index)
|
123
|
-
<< string(")");
|
124
|
-
}
|
125
|
-
|
126
|
-
std::ostream &operator<<(std::ostream &stream, const ParseItemSet &item_set) {
|
127
|
-
return stream << item_set.entries;
|
128
|
-
}
|
129
|
-
|
130
|
-
std::ostream &operator<<(std::ostream &stream, const LookaheadSet &set) {
|
131
|
-
if (set.entries.get()) {
|
132
|
-
return stream << *set.entries;
|
133
|
-
} else {
|
134
|
-
return stream << "{}";
|
135
|
-
}
|
136
|
-
}
|
137
|
-
|
138
|
-
} // namespace build_tables
|
139
|
-
|
140
|
-
} // namespace tree_sitter
|
@@ -1,50 +0,0 @@
|
|
1
|
-
#include "helpers/tree_helpers.h"
|
2
|
-
#include "runtime/document.h"
|
3
|
-
#include "runtime/node.h"
|
4
|
-
#include <ostream>
|
5
|
-
|
6
|
-
using std::string;
|
7
|
-
using std::to_string;
|
8
|
-
using std::ostream;
|
9
|
-
|
10
|
-
const char *symbol_names[24] = {
|
11
|
-
"ERROR", "END", "two", "three", "four", "five", "six", "seven", "eight",
|
12
|
-
"nine", "ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen",
|
13
|
-
"sixteen", "seventeen", "eighteen", "nineteen", "twenty", "twenty-one",
|
14
|
-
"twenty-two", "twenty-three"
|
15
|
-
};
|
16
|
-
|
17
|
-
Tree ** tree_array(std::vector<Tree *> trees) {
|
18
|
-
Tree ** result = (Tree **)calloc(trees.size(), sizeof(Tree *));
|
19
|
-
for (size_t i = 0; i < trees.size(); i++)
|
20
|
-
result[i] = trees[i];
|
21
|
-
return result;
|
22
|
-
}
|
23
|
-
|
24
|
-
ostream &operator<<(std::ostream &stream, const Tree *tree) {
|
25
|
-
static TSLanguage DUMMY_LANGUAGE = {};
|
26
|
-
static TSDocument DUMMY_DOCUMENT = {};
|
27
|
-
DUMMY_DOCUMENT.parser.language = &DUMMY_LANGUAGE;
|
28
|
-
DUMMY_LANGUAGE.symbol_names = symbol_names;
|
29
|
-
TSNode node;
|
30
|
-
node.data = tree;
|
31
|
-
return stream << string(ts_node_string(node, &DUMMY_DOCUMENT));
|
32
|
-
}
|
33
|
-
|
34
|
-
ostream &operator<<(ostream &stream, const TSNode &node) {
|
35
|
-
return stream << string("{") << (const Tree *)node.data <<
|
36
|
-
string(", ") << to_string(ts_node_start_char(node)) << string("}");
|
37
|
-
}
|
38
|
-
|
39
|
-
bool operator==(const TSNode &left, const TSNode &right) {
|
40
|
-
return ts_node_eq(left, right);
|
41
|
-
}
|
42
|
-
|
43
|
-
bool operator==(const std::vector<Tree *> &vec, const TreeArray &array) {
|
44
|
-
if (vec.size() != array.size)
|
45
|
-
return false;
|
46
|
-
for (size_t i = 0; i < array.size; i++)
|
47
|
-
if (array.contents[i] != vec[i])
|
48
|
-
return false;
|
49
|
-
return true;
|
50
|
-
}
|
@@ -1,847 +0,0 @@
|
|
1
|
-
#include "spec_helper.h"
|
2
|
-
#include "runtime/alloc.h"
|
3
|
-
#include "helpers/load_language.h"
|
4
|
-
#include "helpers/stderr_logger.h"
|
5
|
-
#include "helpers/dedent.h"
|
6
|
-
#include "compiler/util/string_helpers.h"
|
7
|
-
#include <map>
|
8
|
-
|
9
|
-
static string fill_template(string input, map<string, string> parameters) {
|
10
|
-
string result = input;
|
11
|
-
for (const auto &pair : parameters) {
|
12
|
-
util::str_replace(&result, "{{" + pair.first + "}}", pair.second);
|
13
|
-
}
|
14
|
-
return result;
|
15
|
-
}
|
16
|
-
|
17
|
-
START_TEST
|
18
|
-
|
19
|
-
describe("compile_grammar", []() {
|
20
|
-
TSDocument *document;
|
21
|
-
|
22
|
-
before_each([&]() {
|
23
|
-
document = ts_document_new();
|
24
|
-
});
|
25
|
-
|
26
|
-
after_each([&]() {
|
27
|
-
ts_document_free(document);
|
28
|
-
});
|
29
|
-
|
30
|
-
auto assert_root_node = [&](const string &expected_string) {
|
31
|
-
TSNode root_node = ts_document_root_node(document);
|
32
|
-
char *node_string = ts_node_string(root_node, document);
|
33
|
-
AssertThat(node_string, Equals(expected_string));
|
34
|
-
ts_free(node_string);
|
35
|
-
};
|
36
|
-
|
37
|
-
describe("conflicts", [&]() {
|
38
|
-
it("can resolve shift/reduce conflicts using associativities", [&]() {
|
39
|
-
string grammar_template = R"JSON({
|
40
|
-
"name": "associativity_example",
|
41
|
-
|
42
|
-
"rules": {
|
43
|
-
"expression": {
|
44
|
-
"type": "CHOICE",
|
45
|
-
"members": [
|
46
|
-
{"type": "SYMBOL", "name": "math_operation"},
|
47
|
-
{"type": "SYMBOL", "name": "identifier"}
|
48
|
-
]
|
49
|
-
},
|
50
|
-
|
51
|
-
"math_operation": {
|
52
|
-
"type": "{{math_operation_prec_type}}",
|
53
|
-
"value": 0,
|
54
|
-
"content": {
|
55
|
-
"type": "SEQ",
|
56
|
-
"members": [
|
57
|
-
{"type": "SYMBOL", "name": "expression"},
|
58
|
-
{"type": "STRING", "value": "+"},
|
59
|
-
{"type": "SYMBOL", "name": "expression"}
|
60
|
-
]
|
61
|
-
}
|
62
|
-
},
|
63
|
-
|
64
|
-
"identifier": {
|
65
|
-
"type": "PATTERN",
|
66
|
-
"value": "[a-zA-Z]+"
|
67
|
-
}
|
68
|
-
}
|
69
|
-
})JSON";
|
70
|
-
|
71
|
-
// Ambiguity, which '+' applies first?
|
72
|
-
ts_document_set_input_string(document, "x+y+z");
|
73
|
-
|
74
|
-
TSCompileResult result = ts_compile_grammar(fill_template(grammar_template, {
|
75
|
-
{"math_operation_prec_type", "PREC"}
|
76
|
-
}).c_str());
|
77
|
-
|
78
|
-
AssertThat(result.error_message, Equals(dedent(R"MESSAGE(
|
79
|
-
Unresolved conflict for symbol sequence:
|
80
|
-
|
81
|
-
expression '+' expression • '+' …
|
82
|
-
|
83
|
-
Possible interpretations:
|
84
|
-
|
85
|
-
1: (math_operation expression '+' expression) • '+' …
|
86
|
-
2: expression '+' (math_operation expression • '+' expression)
|
87
|
-
|
88
|
-
Possible resolutions:
|
89
|
-
|
90
|
-
1: Specify a left or right associativity in `math_operation`
|
91
|
-
2: Add a conflict for these rules: `math_operation`
|
92
|
-
)MESSAGE")));
|
93
|
-
|
94
|
-
result = ts_compile_grammar(fill_template(grammar_template, {
|
95
|
-
{"math_operation_prec_type", "PREC_LEFT"}
|
96
|
-
}).c_str());
|
97
|
-
|
98
|
-
ts_document_set_language(document, load_compile_result("associativity_example", result));
|
99
|
-
ts_document_parse(document);
|
100
|
-
assert_root_node("(expression (math_operation "
|
101
|
-
"(expression (math_operation (expression (identifier)) (expression (identifier)))) "
|
102
|
-
"(expression (identifier))))");
|
103
|
-
|
104
|
-
result = ts_compile_grammar(fill_template(grammar_template, {
|
105
|
-
{"math_operation_prec_type", "PREC_RIGHT"}
|
106
|
-
}).c_str());
|
107
|
-
|
108
|
-
ts_document_set_language(document, load_compile_result("associativity_example", result));
|
109
|
-
ts_document_parse(document);
|
110
|
-
assert_root_node("(expression (math_operation "
|
111
|
-
"(expression (identifier)) "
|
112
|
-
"(expression (math_operation (expression (identifier)) (expression (identifier))))))");
|
113
|
-
});
|
114
|
-
|
115
|
-
it("can resolve shift/reduce conflicts involving single-child rules using precedence", [&]() {
|
116
|
-
string grammar_template = R"JSON({
|
117
|
-
"name": "associativity_example",
|
118
|
-
|
119
|
-
"extras": [
|
120
|
-
{"type": "PATTERN", "value": "\\s"}
|
121
|
-
],
|
122
|
-
|
123
|
-
"rules": {
|
124
|
-
"expression": {
|
125
|
-
"type": "CHOICE",
|
126
|
-
"members": [
|
127
|
-
{"type": "SYMBOL", "name": "function_call"},
|
128
|
-
{"type": "SYMBOL", "name": "identifier"}
|
129
|
-
]
|
130
|
-
},
|
131
|
-
|
132
|
-
"function_call": {
|
133
|
-
"type": "PREC_RIGHT",
|
134
|
-
"value": {{function_call_precedence}},
|
135
|
-
"content": {
|
136
|
-
"type": "CHOICE",
|
137
|
-
"members": [
|
138
|
-
{
|
139
|
-
"type": "SEQ",
|
140
|
-
"members": [
|
141
|
-
{"type": "SYMBOL", "name": "identifier"},
|
142
|
-
{"type": "SYMBOL", "name": "expression"}
|
143
|
-
]
|
144
|
-
},
|
145
|
-
{
|
146
|
-
"type": "SEQ",
|
147
|
-
"members": [
|
148
|
-
{"type": "SYMBOL", "name": "identifier"},
|
149
|
-
{"type": "SYMBOL", "name": "block"}
|
150
|
-
]
|
151
|
-
},
|
152
|
-
{
|
153
|
-
"type": "SEQ",
|
154
|
-
"members": [
|
155
|
-
{"type": "SYMBOL", "name": "identifier"},
|
156
|
-
{"type": "SYMBOL", "name": "expression"},
|
157
|
-
{"type": "SYMBOL", "name": "block"}
|
158
|
-
]
|
159
|
-
}
|
160
|
-
]
|
161
|
-
}
|
162
|
-
},
|
163
|
-
|
164
|
-
"block": {
|
165
|
-
"type": "SEQ",
|
166
|
-
"members": [
|
167
|
-
{"type": "STRING", "value": "{"},
|
168
|
-
{"type": "SYMBOL", "name": "expression"},
|
169
|
-
{"type": "STRING", "value": "}"}
|
170
|
-
]
|
171
|
-
},
|
172
|
-
|
173
|
-
"identifier": {
|
174
|
-
"type": "PATTERN",
|
175
|
-
"value": "[a-zA-Z]+"
|
176
|
-
}
|
177
|
-
}
|
178
|
-
})JSON";
|
179
|
-
|
180
|
-
// Ambiguity: is the trailing block associated with `bar` or `foo`?
|
181
|
-
ts_document_set_input_string(document, "foo bar { baz }");
|
182
|
-
|
183
|
-
TSCompileResult result = ts_compile_grammar(fill_template(grammar_template, {
|
184
|
-
{"function_call_precedence", "0"}
|
185
|
-
}).c_str());
|
186
|
-
|
187
|
-
AssertThat(result.error_message, Equals(dedent(R"MESSAGE(
|
188
|
-
Unresolved conflict for symbol sequence:
|
189
|
-
|
190
|
-
identifier • '{' …
|
191
|
-
|
192
|
-
Possible interpretations:
|
193
|
-
|
194
|
-
1: (expression identifier) • '{' …
|
195
|
-
2: (function_call identifier • block)
|
196
|
-
|
197
|
-
Possible resolutions:
|
198
|
-
|
199
|
-
1: Specify a higher precedence in `function_call` than in the other rules.
|
200
|
-
2: Specify a higher precedence in `expression` than in the other rules.
|
201
|
-
3: Specify a left or right associativity in `expression`
|
202
|
-
4: Add a conflict for these rules: `expression` `function_call`
|
203
|
-
)MESSAGE")));
|
204
|
-
|
205
|
-
// Giving function calls lower precedence than expressions causes `bar`
|
206
|
-
// to be treated as an expression passed to `foo`, not as a function
|
207
|
-
// that's being called with a block.
|
208
|
-
result = ts_compile_grammar(fill_template(grammar_template, {
|
209
|
-
{"function_call_precedence", "-1"}
|
210
|
-
}).c_str());
|
211
|
-
|
212
|
-
AssertThat(result.error_message, IsNull());
|
213
|
-
ts_document_set_language(document, load_compile_result("associativity_example", result));
|
214
|
-
ts_document_parse(document);
|
215
|
-
assert_root_node("(expression (function_call "
|
216
|
-
"(identifier) "
|
217
|
-
"(expression (identifier)) "
|
218
|
-
"(block (expression (identifier)))))");
|
219
|
-
|
220
|
-
// Giving function calls higher precedence than expressions causes `bar`
|
221
|
-
// to be treated as a function that's being called with a block, not as
|
222
|
-
// an expression passed to `foo`.
|
223
|
-
result = ts_compile_grammar(fill_template(grammar_template, {
|
224
|
-
{"function_call_precedence", "1"}
|
225
|
-
}).c_str());
|
226
|
-
|
227
|
-
AssertThat(result.error_message, IsNull());
|
228
|
-
ts_document_set_language(document, load_compile_result("associativity_example", result));
|
229
|
-
ts_document_set_input_string(document, "foo bar { baz }");
|
230
|
-
ts_document_parse(document);
|
231
|
-
assert_root_node("(expression (function_call "
|
232
|
-
"(identifier) "
|
233
|
-
"(expression (function_call "
|
234
|
-
"(identifier) "
|
235
|
-
"(block (expression (identifier)))))))");
|
236
|
-
});
|
237
|
-
|
238
|
-
it("handles precedence applied to specific rule subsequences (regression)", [&]() {
|
239
|
-
TSCompileResult result = ts_compile_grammar(R"JSON({
|
240
|
-
"name": "precedence_on_subsequence",
|
241
|
-
|
242
|
-
"extras": [
|
243
|
-
{"type": "STRING", "value": " "}
|
244
|
-
],
|
245
|
-
|
246
|
-
"rules": {
|
247
|
-
"expression": {
|
248
|
-
"type": "PREC_LEFT",
|
249
|
-
"value": 0,
|
250
|
-
"content": {
|
251
|
-
"type": "CHOICE",
|
252
|
-
"members": [
|
253
|
-
{"type": "SYMBOL", "name": "function_call"},
|
254
|
-
{"type": "SYMBOL", "name": "identifier"},
|
255
|
-
{"type": "SYMBOL", "name": "scope_resolution"}
|
256
|
-
]
|
257
|
-
}
|
258
|
-
},
|
259
|
-
|
260
|
-
"function_call": {
|
261
|
-
"type": "CHOICE",
|
262
|
-
"members": [
|
263
|
-
{
|
264
|
-
"type": "SEQ",
|
265
|
-
"members": [
|
266
|
-
{"type": "SYMBOL", "name": "identifier"},
|
267
|
-
{"type": "SYMBOL", "name": "expression"}
|
268
|
-
]
|
269
|
-
},
|
270
|
-
|
271
|
-
{
|
272
|
-
"type": "PREC",
|
273
|
-
"value": 1,
|
274
|
-
"content": {
|
275
|
-
"type": "SEQ",
|
276
|
-
"members": [
|
277
|
-
{"type": "SYMBOL", "name": "identifier"},
|
278
|
-
{"type": "SYMBOL", "name": "block"}
|
279
|
-
]
|
280
|
-
}
|
281
|
-
},
|
282
|
-
|
283
|
-
{
|
284
|
-
"type": "PREC",
|
285
|
-
"value": -1,
|
286
|
-
"content": {
|
287
|
-
"type": "SEQ",
|
288
|
-
"members": [
|
289
|
-
{"type": "SYMBOL", "name": "identifier"},
|
290
|
-
{"type": "SYMBOL", "name": "do_block"}
|
291
|
-
]
|
292
|
-
}
|
293
|
-
},
|
294
|
-
|
295
|
-
{
|
296
|
-
"type": "SEQ",
|
297
|
-
"members": [
|
298
|
-
{"type": "SYMBOL", "name": "identifier"},
|
299
|
-
{
|
300
|
-
"type": "PREC",
|
301
|
-
"value": 1,
|
302
|
-
"content": {
|
303
|
-
"type": "SEQ",
|
304
|
-
"members": [
|
305
|
-
{"type": "SYMBOL", "name": "expression"},
|
306
|
-
{"type": "SYMBOL", "name": "block"}
|
307
|
-
]
|
308
|
-
}
|
309
|
-
}
|
310
|
-
]
|
311
|
-
},
|
312
|
-
|
313
|
-
{
|
314
|
-
"type": "SEQ",
|
315
|
-
"members": [
|
316
|
-
{"type": "SYMBOL", "name": "identifier"},
|
317
|
-
{
|
318
|
-
"type": "PREC",
|
319
|
-
"value": -1,
|
320
|
-
"content": {
|
321
|
-
"type": "SEQ",
|
322
|
-
"members": [
|
323
|
-
{"type": "SYMBOL", "name": "expression"},
|
324
|
-
{"type": "SYMBOL", "name": "do_block"}
|
325
|
-
]
|
326
|
-
}
|
327
|
-
}
|
328
|
-
]
|
329
|
-
}
|
330
|
-
]
|
331
|
-
},
|
332
|
-
|
333
|
-
"scope_resolution": {
|
334
|
-
"type": "PREC_LEFT",
|
335
|
-
"value": 1,
|
336
|
-
"content": {
|
337
|
-
"type": "CHOICE",
|
338
|
-
"members": [
|
339
|
-
{
|
340
|
-
"type": "SEQ",
|
341
|
-
"members": [
|
342
|
-
{"type": "SYMBOL", "name": "expression"},
|
343
|
-
{"type": "STRING", "value": "::"},
|
344
|
-
{"type": "SYMBOL", "name": "expression"}
|
345
|
-
]
|
346
|
-
},
|
347
|
-
{
|
348
|
-
"type": "SEQ",
|
349
|
-
"members": [
|
350
|
-
{"type": "STRING", "value": "::"},
|
351
|
-
{"type": "SYMBOL", "name": "expression"},
|
352
|
-
]
|
353
|
-
}
|
354
|
-
]
|
355
|
-
}
|
356
|
-
},
|
357
|
-
|
358
|
-
"block": {
|
359
|
-
"type": "STRING",
|
360
|
-
"value": "{}"
|
361
|
-
},
|
362
|
-
|
363
|
-
"do_block": {
|
364
|
-
"type": "STRING",
|
365
|
-
"value": "do end"
|
366
|
-
},
|
367
|
-
|
368
|
-
"identifier": {
|
369
|
-
"type": "PATTERN",
|
370
|
-
"value": "[a-zA-Z]+"
|
371
|
-
}
|
372
|
-
}
|
373
|
-
})JSON");
|
374
|
-
|
375
|
-
auto language = load_compile_result("precedence_on_subsequence", result);
|
376
|
-
ts_document_set_language(document, language);
|
377
|
-
|
378
|
-
ts_document_set_input_string(document, "a b {}");
|
379
|
-
ts_document_parse(document);
|
380
|
-
assert_root_node("(expression (function_call "
|
381
|
-
"(identifier) "
|
382
|
-
"(expression (function_call (identifier) (block)))))");
|
383
|
-
|
384
|
-
ts_document_set_input_string(document, "a b do end");
|
385
|
-
ts_document_parse(document);
|
386
|
-
assert_root_node("(expression (function_call "
|
387
|
-
"(identifier) "
|
388
|
-
"(expression (identifier)) "
|
389
|
-
"(do_block)))");
|
390
|
-
});
|
391
|
-
|
392
|
-
it("does not allow conflicting precedences", [&]() {
|
393
|
-
string grammar_template = R"JSON({
|
394
|
-
"name": "conflicting_precedence_example",
|
395
|
-
|
396
|
-
"rules": {
|
397
|
-
"expression": {
|
398
|
-
"type": "CHOICE",
|
399
|
-
"members": [
|
400
|
-
{"type": "SYMBOL", "name": "sum"},
|
401
|
-
{"type": "SYMBOL", "name": "product"},
|
402
|
-
{"type": "SYMBOL", "name": "other_thing"}
|
403
|
-
]
|
404
|
-
},
|
405
|
-
|
406
|
-
"sum": {
|
407
|
-
"type": "PREC_LEFT",
|
408
|
-
"value": 0,
|
409
|
-
"content": {
|
410
|
-
"type": "SEQ",
|
411
|
-
"members": [
|
412
|
-
{"type": "SYMBOL", "name": "expression"},
|
413
|
-
{"type": "STRING", "value": "+"},
|
414
|
-
{"type": "SYMBOL", "name": "expression"}
|
415
|
-
]
|
416
|
-
}
|
417
|
-
},
|
418
|
-
|
419
|
-
"product": {
|
420
|
-
"type": "PREC_LEFT",
|
421
|
-
"value": 1,
|
422
|
-
"content": {
|
423
|
-
"type": "SEQ",
|
424
|
-
"members": [
|
425
|
-
{"type": "SYMBOL", "name": "expression"},
|
426
|
-
{"type": "STRING", "value": "*"},
|
427
|
-
{"type": "SYMBOL", "name": "expression"}
|
428
|
-
]
|
429
|
-
}
|
430
|
-
},
|
431
|
-
|
432
|
-
"other_thing": {
|
433
|
-
"type": "PREC_LEFT",
|
434
|
-
"value": -1,
|
435
|
-
"content": {
|
436
|
-
"type": "SEQ",
|
437
|
-
"members": [
|
438
|
-
{"type": "SYMBOL", "name": "expression"},
|
439
|
-
{"type": "STRING", "value": "*"},
|
440
|
-
{"type": "STRING", "value": "*"}
|
441
|
-
]
|
442
|
-
}
|
443
|
-
},
|
444
|
-
|
445
|
-
"identifier": {
|
446
|
-
"type": "PATTERN",
|
447
|
-
"value": "[a-zA-Z]+"
|
448
|
-
}
|
449
|
-
}
|
450
|
-
})JSON";
|
451
|
-
|
452
|
-
TSCompileResult result = ts_compile_grammar(fill_template(grammar_template, {
|
453
|
-
}).c_str());
|
454
|
-
|
455
|
-
AssertThat(result.error_message, Equals(dedent(R"MESSAGE(
|
456
|
-
Unresolved conflict for symbol sequence:
|
457
|
-
|
458
|
-
expression '+' expression • '*' …
|
459
|
-
|
460
|
-
Possible interpretations:
|
461
|
-
|
462
|
-
1: (sum expression '+' expression) • '*' …
|
463
|
-
2: expression '+' (product expression • '*' expression)
|
464
|
-
3: expression '+' (other_thing expression • '*' '*')
|
465
|
-
|
466
|
-
Possible resolutions:
|
467
|
-
|
468
|
-
1: Specify a higher precedence in `product` and `other_thing` than in the other rules.
|
469
|
-
2: Specify a higher precedence in `sum` than in the other rules.
|
470
|
-
3: Add a conflict for these rules: `sum` `product` `other_thing`
|
471
|
-
)MESSAGE")));
|
472
|
-
});
|
473
|
-
});
|
474
|
-
|
475
|
-
describe("when the grammar contains rules that match the empty string", [&]() {
|
476
|
-
it("reports an error", [&]() {
|
477
|
-
TSCompileResult result = ts_compile_grammar(R"JSON(
|
478
|
-
{
|
479
|
-
"name": "empty_rules",
|
480
|
-
|
481
|
-
"rules": {
|
482
|
-
"rule_1": {"type": "SYMBOL", "name": "rule_2"},
|
483
|
-
|
484
|
-
"rule_2": {
|
485
|
-
"type": "CHOICE",
|
486
|
-
"members": [
|
487
|
-
{"type": "SYMBOL", "name": "rule_1"},
|
488
|
-
{"type": "BLANK"}
|
489
|
-
]
|
490
|
-
}
|
491
|
-
}
|
492
|
-
}
|
493
|
-
)JSON");
|
494
|
-
|
495
|
-
AssertThat(result.error_message, Equals(dedent(R"MESSAGE(
|
496
|
-
The rule `rule_2` matches the empty string.
|
497
|
-
Tree-sitter currently does not support syntactic rules that match the empty string.
|
498
|
-
)MESSAGE")));
|
499
|
-
});
|
500
|
-
});
|
501
|
-
|
502
|
-
describe("external scanners", [&]() {
|
503
|
-
it("can tokenize using arbitrary user-defined scanner functions", [&]() {
|
504
|
-
string grammar = R"JSON({
|
505
|
-
"name": "external_scanner_example",
|
506
|
-
|
507
|
-
"externals": [
|
508
|
-
"_percent_string",
|
509
|
-
"_percent_string_start",
|
510
|
-
"_percent_string_end"
|
511
|
-
],
|
512
|
-
|
513
|
-
"extras": [
|
514
|
-
{"type": "PATTERN", "value": "\\s"}
|
515
|
-
],
|
516
|
-
|
517
|
-
"rules": {
|
518
|
-
"expression": {
|
519
|
-
"type": "CHOICE",
|
520
|
-
"members": [
|
521
|
-
{"type": "SYMBOL", "name": "string"},
|
522
|
-
{"type": "SYMBOL", "name": "sum"},
|
523
|
-
{"type": "SYMBOL", "name": "identifier"}
|
524
|
-
]
|
525
|
-
},
|
526
|
-
|
527
|
-
"sum": {
|
528
|
-
"type": "PREC_LEFT",
|
529
|
-
"value": 0,
|
530
|
-
"content": {
|
531
|
-
"type": "SEQ",
|
532
|
-
"members": [
|
533
|
-
{"type": "SYMBOL", "name": "expression"},
|
534
|
-
{"type": "STRING", "value": "+"},
|
535
|
-
{"type": "SYMBOL", "name": "expression"}
|
536
|
-
]
|
537
|
-
}
|
538
|
-
},
|
539
|
-
|
540
|
-
"string": {
|
541
|
-
"type": "CHOICE",
|
542
|
-
"members": [
|
543
|
-
{"type": "SYMBOL", "name": "_percent_string"},
|
544
|
-
{
|
545
|
-
"type": "SEQ",
|
546
|
-
"members": [
|
547
|
-
{"type": "SYMBOL", "name": "_percent_string_start"},
|
548
|
-
{"type": "SYMBOL", "name": "expression"},
|
549
|
-
{"type": "SYMBOL", "name": "_percent_string_end"}
|
550
|
-
]
|
551
|
-
},
|
552
|
-
]
|
553
|
-
},
|
554
|
-
|
555
|
-
"identifier": {
|
556
|
-
"type": "PATTERN",
|
557
|
-
"value": "\\a+"
|
558
|
-
}
|
559
|
-
}
|
560
|
-
})JSON";
|
561
|
-
|
562
|
-
TSCompileResult result = ts_compile_grammar(grammar.c_str());
|
563
|
-
AssertThat(result.error_message, IsNull());
|
564
|
-
|
565
|
-
ts_document_set_language(document, load_compile_result(
|
566
|
-
"external_scanner_example",
|
567
|
-
result,
|
568
|
-
"spec/fixtures/external_scanners/percent_strings.c"
|
569
|
-
));
|
570
|
-
|
571
|
-
ts_document_set_input_string(document, "x + %(sup (external) scanner?)");
|
572
|
-
ts_document_parse(document);
|
573
|
-
assert_root_node("(expression (sum (expression (identifier)) (expression (string))))");
|
574
|
-
|
575
|
-
ts_document_set_input_string(document, "%{sup {} #{x + y} {} scanner?}");
|
576
|
-
ts_document_parse(document);
|
577
|
-
assert_root_node("(expression (string (expression (sum (expression (identifier)) (expression (identifier))))))");
|
578
|
-
});
|
579
|
-
|
580
|
-
it("allows external scanners to refer to tokens that are defined internally", [&]() {
|
581
|
-
string grammar = R"JSON({
|
582
|
-
"name": "shared_external_tokens",
|
583
|
-
|
584
|
-
"externals": [
|
585
|
-
"string",
|
586
|
-
"line_break"
|
587
|
-
],
|
588
|
-
|
589
|
-
"extras": [
|
590
|
-
{"type": "PATTERN", "value": "\\s"}
|
591
|
-
],
|
592
|
-
|
593
|
-
"rules": {
|
594
|
-
"statement": {
|
595
|
-
"type": "SEQ",
|
596
|
-
"members": [
|
597
|
-
{"type": "SYMBOL", "name": "_expression"},
|
598
|
-
{"type": "SYMBOL", "name": "_expression"},
|
599
|
-
{"type": "SYMBOL", "name": "line_break"}
|
600
|
-
]
|
601
|
-
},
|
602
|
-
|
603
|
-
"_expression": {
|
604
|
-
"type": "CHOICE",
|
605
|
-
"members": [
|
606
|
-
{"type": "SYMBOL", "name": "string"},
|
607
|
-
{"type": "SYMBOL", "name": "variable"},
|
608
|
-
{"type": "SYMBOL", "name": "number"}
|
609
|
-
]
|
610
|
-
},
|
611
|
-
|
612
|
-
"variable": {"type": "PATTERN", "value": "\\a+"},
|
613
|
-
"number": {"type": "PATTERN", "value": "\\d+"},
|
614
|
-
"line_break": {"type": "STRING", "value": "\n"}
|
615
|
-
}
|
616
|
-
})JSON";
|
617
|
-
|
618
|
-
TSCompileResult result = ts_compile_grammar(grammar.c_str());
|
619
|
-
AssertThat(result.error_message, IsNull());
|
620
|
-
|
621
|
-
ts_document_set_language(document, load_compile_result(
|
622
|
-
"shared_external_tokens",
|
623
|
-
result,
|
624
|
-
"spec/fixtures/external_scanners/shared_external_tokens.c"
|
625
|
-
));
|
626
|
-
|
627
|
-
ts_document_set_input_string(document, "a b\n");
|
628
|
-
ts_document_parse(document);
|
629
|
-
assert_root_node("(statement (variable) (variable) (line_break))");
|
630
|
-
|
631
|
-
ts_document_set_input_string(document, "a \nb\n");
|
632
|
-
ts_document_parse(document);
|
633
|
-
assert_root_node("(statement (variable) (variable) (line_break))");
|
634
|
-
|
635
|
-
ts_document_set_input_string(document, "'hello' 'world'\n");
|
636
|
-
ts_document_parse(document);
|
637
|
-
assert_root_node("(statement (string) (string) (line_break))");
|
638
|
-
|
639
|
-
ts_document_set_input_string(document, "'hello' \n'world'\n");
|
640
|
-
ts_document_parse(document);
|
641
|
-
assert_root_node("(statement (string) (string) (line_break))");
|
642
|
-
});
|
643
|
-
|
644
|
-
it("allows external tokens to be used as extras", [&]() {
|
645
|
-
string grammar = R"JSON({
|
646
|
-
"name": "extra_external_tokens",
|
647
|
-
|
648
|
-
"externals": [
|
649
|
-
"comment"
|
650
|
-
],
|
651
|
-
|
652
|
-
"extras": [
|
653
|
-
{"type": "PATTERN", "value": "\\s"},
|
654
|
-
{"type": "SYMBOL", "name": "comment"}
|
655
|
-
],
|
656
|
-
|
657
|
-
"rules": {
|
658
|
-
"assignment": {
|
659
|
-
"type": "SEQ",
|
660
|
-
"members": [
|
661
|
-
{"type": "SYMBOL", "name": "variable"},
|
662
|
-
{"type": "STRING", "value": "="},
|
663
|
-
{"type": "SYMBOL", "name": "variable"}
|
664
|
-
]
|
665
|
-
},
|
666
|
-
|
667
|
-
"variable": {"type": "PATTERN", "value": "\\a+"}
|
668
|
-
}
|
669
|
-
})JSON";
|
670
|
-
|
671
|
-
TSCompileResult result = ts_compile_grammar(grammar.c_str());
|
672
|
-
AssertThat(result.error_message, IsNull());
|
673
|
-
|
674
|
-
ts_document_set_language(document, load_compile_result(
|
675
|
-
"extra_external_tokens",
|
676
|
-
result,
|
677
|
-
"spec/fixtures/external_scanners/extra_external_tokens.c"
|
678
|
-
));
|
679
|
-
|
680
|
-
ts_document_set_input_string(document, "x = # a comment\n y");
|
681
|
-
ts_document_parse(document);
|
682
|
-
assert_root_node("(assignment (variable) (comment) (variable))");
|
683
|
-
});
|
684
|
-
});
|
685
|
-
|
686
|
-
describe("when the grammar's start symbol is a token", [&]() {
|
687
|
-
it("parses the token", [&]() {
|
688
|
-
TSCompileResult result = ts_compile_grammar(R"JSON(
|
689
|
-
{
|
690
|
-
"name": "one_token_language",
|
691
|
-
"rules": {
|
692
|
-
"first_rule": {"type": "STRING", "value": "the-value"}
|
693
|
-
}
|
694
|
-
}
|
695
|
-
)JSON");
|
696
|
-
|
697
|
-
ts_document_set_language(document, load_compile_result("one_token_language", result));
|
698
|
-
|
699
|
-
ts_document_set_input_string(document, "the-value");
|
700
|
-
ts_document_parse(document);
|
701
|
-
assert_root_node("(first_rule)");
|
702
|
-
});
|
703
|
-
});
|
704
|
-
|
705
|
-
describe("when the grammar's start symbol is blank", [&]() {
|
706
|
-
it("parses the empty string", [&]() {
|
707
|
-
TSCompileResult result = ts_compile_grammar(R"JSON(
|
708
|
-
{
|
709
|
-
"name": "blank_language",
|
710
|
-
"rules": {
|
711
|
-
"first_rule": {"type": "BLANK"}
|
712
|
-
}
|
713
|
-
}
|
714
|
-
)JSON");
|
715
|
-
|
716
|
-
ts_document_set_language(document, load_compile_result("blank_language", result));
|
717
|
-
|
718
|
-
ts_document_set_input_string(document, "");
|
719
|
-
ts_document_parse(document);
|
720
|
-
assert_root_node("(first_rule)");
|
721
|
-
});
|
722
|
-
});
|
723
|
-
|
724
|
-
describe("when the grammar contains anonymous tokens with escaped characters", [&]() {
|
725
|
-
it("escapes the escaped characters properly in the generated parser", [&]() {
|
726
|
-
TSCompileResult result = ts_compile_grammar(R"JSON(
|
727
|
-
{
|
728
|
-
"name": "escaped_char_language",
|
729
|
-
"rules": {
|
730
|
-
"first_rule": {
|
731
|
-
"type": "CHOICE",
|
732
|
-
"members": [
|
733
|
-
{"type": "STRING", "value": "\n"},
|
734
|
-
{"type": "STRING", "value": "\r"},
|
735
|
-
{"type": "STRING", "value": "'hello'"},
|
736
|
-
{"type": "PATTERN", "value": "\\d+"}
|
737
|
-
]
|
738
|
-
}
|
739
|
-
}
|
740
|
-
}
|
741
|
-
)JSON");
|
742
|
-
|
743
|
-
ts_document_set_language(document, load_compile_result("escaped_char_language", result));
|
744
|
-
|
745
|
-
ts_document_set_input_string(document, "1234");
|
746
|
-
ts_document_parse(document);
|
747
|
-
assert_root_node("(first_rule)");
|
748
|
-
|
749
|
-
ts_document_set_input_string(document, "\n");
|
750
|
-
ts_document_parse(document);
|
751
|
-
assert_root_node("(first_rule)");
|
752
|
-
|
753
|
-
ts_document_set_input_string(document, "'hello'");
|
754
|
-
ts_document_parse(document);
|
755
|
-
assert_root_node("(first_rule)");
|
756
|
-
});
|
757
|
-
});
|
758
|
-
|
759
|
-
describe("the grammar in the README", [&]() {
|
760
|
-
it("parses the input in the README", [&]() {
|
761
|
-
TSCompileResult result = ts_compile_grammar(R"JSON(
|
762
|
-
{
|
763
|
-
"name": "arithmetic",
|
764
|
-
|
765
|
-
// Things that can appear anywhere in the language, like comments
|
766
|
-
// and whitespace, are expressed as 'extras'.
|
767
|
-
"extras": [
|
768
|
-
{"type": "PATTERN", "value": "\\s"},
|
769
|
-
{"type": "SYMBOL", "name": "comment"}
|
770
|
-
],
|
771
|
-
|
772
|
-
"rules": {
|
773
|
-
|
774
|
-
// The first rule listed in the grammar becomes the 'start rule'.
|
775
|
-
"expression": {
|
776
|
-
"type": "CHOICE",
|
777
|
-
"members": [
|
778
|
-
{"type": "SYMBOL", "name": "sum"},
|
779
|
-
{"type": "SYMBOL", "name": "product"},
|
780
|
-
{"type": "SYMBOL", "name": "number"},
|
781
|
-
{"type": "SYMBOL", "name": "variable"},
|
782
|
-
{
|
783
|
-
"type": "SEQ",
|
784
|
-
"members": [
|
785
|
-
{"type": "STRING", "value": "("},
|
786
|
-
{"type": "SYMBOL", "name": "expression"},
|
787
|
-
{"type": "STRING", "value": ")"}
|
788
|
-
]
|
789
|
-
}
|
790
|
-
]
|
791
|
-
},
|
792
|
-
|
793
|
-
// Tokens like '+' and '*' are described directly within the
|
794
|
-
// grammar's rules, as opposed to in a seperate lexer description.
|
795
|
-
"sum": {
|
796
|
-
"type": "PREC_LEFT",
|
797
|
-
"value": 1,
|
798
|
-
"content": {
|
799
|
-
"type": "SEQ",
|
800
|
-
"members": [
|
801
|
-
{"type": "SYMBOL", "name": "expression"},
|
802
|
-
{"type": "STRING", "value": "+"},
|
803
|
-
{"type": "SYMBOL", "name": "expression"}
|
804
|
-
]
|
805
|
-
}
|
806
|
-
},
|
807
|
-
|
808
|
-
// Ambiguities can be resolved at compile time by assigning precedence
|
809
|
-
// values to rule subtrees.
|
810
|
-
"product": {
|
811
|
-
"type": "PREC_LEFT",
|
812
|
-
"value": 2,
|
813
|
-
"content": {
|
814
|
-
"type": "SEQ",
|
815
|
-
"members": [
|
816
|
-
{"type": "SYMBOL", "name": "expression"},
|
817
|
-
{"type": "STRING", "value": "*"},
|
818
|
-
{"type": "SYMBOL", "name": "expression"}
|
819
|
-
]
|
820
|
-
}
|
821
|
-
},
|
822
|
-
|
823
|
-
// Tokens can be specified using ECMAScript regexps.
|
824
|
-
"number": {"type": "PATTERN", "value": "\\d+"},
|
825
|
-
"comment": {"type": "PATTERN", "value": "#.*"},
|
826
|
-
"variable": {"type": "PATTERN", "value": "[a-zA-Z]\\w*"}
|
827
|
-
}
|
828
|
-
}
|
829
|
-
)JSON");
|
830
|
-
|
831
|
-
const TSLanguage *language = load_compile_result("arithmetic", result);
|
832
|
-
|
833
|
-
ts_document_set_language(document, language);
|
834
|
-
ts_document_set_input_string(document, "a + b * c");
|
835
|
-
ts_document_parse(document);
|
836
|
-
|
837
|
-
assert_root_node(
|
838
|
-
"(expression (sum "
|
839
|
-
"(expression (variable)) "
|
840
|
-
"(expression (product "
|
841
|
-
"(expression (variable)) "
|
842
|
-
"(expression (variable))))))");
|
843
|
-
});
|
844
|
-
});
|
845
|
-
});
|
846
|
-
|
847
|
-
END_TEST
|