tree-sitter 0.0.1 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
@@ -14,6 +14,7 @@ import subprocess
|
|
14
14
|
import sys
|
15
15
|
import gyp
|
16
16
|
import gyp.common
|
17
|
+
from gyp.common import OrderedSet
|
17
18
|
import gyp.msvs_emulation
|
18
19
|
import gyp.MSVSUtil as MSVSUtil
|
19
20
|
import gyp.xcode_emulation
|
@@ -107,7 +108,7 @@ def AddArch(output, arch):
|
|
107
108
|
return '%s.%s%s' % (output, arch, extension)
|
108
109
|
|
109
110
|
|
110
|
-
class Target:
|
111
|
+
class Target(object):
|
111
112
|
"""Target represents the paths used within a single gyp target.
|
112
113
|
|
113
114
|
Conceptually, building a single target A is a series of steps:
|
@@ -211,8 +212,8 @@ class Target:
|
|
211
212
|
# an output file; the result can be namespaced such that it is unique
|
212
213
|
# to the input file name as well as the output target name.
|
213
214
|
|
214
|
-
class NinjaWriter:
|
215
|
-
def __init__(self,
|
215
|
+
class NinjaWriter(object):
|
216
|
+
def __init__(self, hash_for_rules, target_outputs, base_dir, build_dir,
|
216
217
|
output_file, toplevel_build, output_file_name, flavor,
|
217
218
|
toplevel_dir=None):
|
218
219
|
"""
|
@@ -222,7 +223,7 @@ class NinjaWriter:
|
|
222
223
|
toplevel_dir: path to the toplevel directory
|
223
224
|
"""
|
224
225
|
|
225
|
-
self.
|
226
|
+
self.hash_for_rules = hash_for_rules
|
226
227
|
self.target_outputs = target_outputs
|
227
228
|
self.base_dir = base_dir
|
228
229
|
self.build_dir = build_dir
|
@@ -344,7 +345,7 @@ class NinjaWriter:
|
|
344
345
|
return os.path.normpath(os.path.join(obj, self.base_dir, path_dir,
|
345
346
|
path_basename))
|
346
347
|
|
347
|
-
def WriteCollapsedDependencies(self, name, targets):
|
348
|
+
def WriteCollapsedDependencies(self, name, targets, order_only=None):
|
348
349
|
"""Given a list of targets, return a path for a single file
|
349
350
|
representing the result of building all the targets or None.
|
350
351
|
|
@@ -352,10 +353,11 @@ class NinjaWriter:
|
|
352
353
|
|
353
354
|
assert targets == filter(None, targets), targets
|
354
355
|
if len(targets) == 0:
|
356
|
+
assert not order_only
|
355
357
|
return None
|
356
|
-
if len(targets) > 1:
|
358
|
+
if len(targets) > 1 or order_only:
|
357
359
|
stamp = self.GypPathToUniqueOutput(name + '.stamp')
|
358
|
-
targets = self.ninja.build(stamp, 'stamp', targets)
|
360
|
+
targets = self.ninja.build(stamp, 'stamp', targets, order_only=order_only)
|
359
361
|
self.ninja.newline()
|
360
362
|
return targets[0]
|
361
363
|
|
@@ -392,6 +394,8 @@ class NinjaWriter:
|
|
392
394
|
self.ninja.variable('arch', self.win_env[arch])
|
393
395
|
self.ninja.variable('cc', '$cl_' + arch)
|
394
396
|
self.ninja.variable('cxx', '$cl_' + arch)
|
397
|
+
self.ninja.variable('cc_host', '$cl_' + arch)
|
398
|
+
self.ninja.variable('cxx_host', '$cl_' + arch)
|
395
399
|
|
396
400
|
if self.flavor == 'mac':
|
397
401
|
self.archs = self.xcode_settings.GetActiveArchs(config_name)
|
@@ -526,7 +530,7 @@ class NinjaWriter:
|
|
526
530
|
def WriteWinIdlFiles(self, spec, prebuild):
|
527
531
|
"""Writes rules to match MSVS's implicit idl handling."""
|
528
532
|
assert self.flavor == 'win'
|
529
|
-
if self.msvs_settings.
|
533
|
+
if self.msvs_settings.HasExplicitIdlRulesOrActions(spec):
|
530
534
|
return []
|
531
535
|
outputs = []
|
532
536
|
for source in filter(lambda x: x.endswith('.idl'), spec['sources']):
|
@@ -560,9 +564,10 @@ class NinjaWriter:
|
|
560
564
|
stamp = self.WriteCollapsedDependencies('actions_rules_copies', outputs)
|
561
565
|
|
562
566
|
if self.is_mac_bundle:
|
563
|
-
self.WriteMacBundleResources(
|
567
|
+
xcassets = self.WriteMacBundleResources(
|
564
568
|
extra_mac_bundle_resources + mac_bundle_resources, mac_bundle_depends)
|
565
|
-
self.
|
569
|
+
partial_info_plist = self.WriteMacXCassets(xcassets, mac_bundle_depends)
|
570
|
+
self.WriteMacInfoPlist(partial_info_plist, mac_bundle_depends)
|
566
571
|
|
567
572
|
return stamp
|
568
573
|
|
@@ -583,23 +588,24 @@ class NinjaWriter:
|
|
583
588
|
def WriteActions(self, actions, extra_sources, prebuild,
|
584
589
|
extra_mac_bundle_resources):
|
585
590
|
# Actions cd into the base directory.
|
586
|
-
env = self.
|
587
|
-
if self.flavor == 'win':
|
588
|
-
env = self.msvs_settings.GetVSMacroEnv(
|
589
|
-
'$!PRODUCT_DIR', config=self.config_name)
|
591
|
+
env = self.GetToolchainEnv()
|
590
592
|
all_outputs = []
|
591
593
|
for action in actions:
|
592
594
|
# First write out a rule for the action.
|
593
|
-
name = '%s_%s' % (action['action_name'],
|
594
|
-
hashlib.md5(self.qualified_target).hexdigest())
|
595
|
+
name = '%s_%s' % (action['action_name'], self.hash_for_rules)
|
595
596
|
description = self.GenerateDescription('ACTION',
|
596
597
|
action.get('message', None),
|
597
598
|
name)
|
598
599
|
is_cygwin = (self.msvs_settings.IsRuleRunUnderCygwin(action)
|
599
600
|
if self.flavor == 'win' else False)
|
600
601
|
args = action['action']
|
602
|
+
depfile = action.get('depfile', None)
|
603
|
+
if depfile:
|
604
|
+
depfile = self.ExpandSpecial(depfile, self.base_to_build)
|
605
|
+
pool = 'console' if int(action.get('ninja_use_console', 0)) else None
|
601
606
|
rule_name, _ = self.WriteNewNinjaRule(name, args, description,
|
602
|
-
is_cygwin, env
|
607
|
+
is_cygwin, env, pool,
|
608
|
+
depfile=depfile)
|
603
609
|
|
604
610
|
inputs = [self.GypPathToNinja(i, env) for i in action['inputs']]
|
605
611
|
if int(action.get('process_outputs_as_sources', False)):
|
@@ -619,15 +625,16 @@ class NinjaWriter:
|
|
619
625
|
|
620
626
|
def WriteRules(self, rules, extra_sources, prebuild,
|
621
627
|
mac_bundle_resources, extra_mac_bundle_resources):
|
622
|
-
env = self.
|
628
|
+
env = self.GetToolchainEnv()
|
623
629
|
all_outputs = []
|
624
630
|
for rule in rules:
|
625
|
-
# First write out a rule for the rule action.
|
626
|
-
name = '%s_%s' % (rule['rule_name'],
|
627
|
-
hashlib.md5(self.qualified_target).hexdigest())
|
628
631
|
# Skip a rule with no action and no inputs.
|
629
632
|
if 'action' not in rule and not rule.get('rule_sources', []):
|
630
633
|
continue
|
634
|
+
|
635
|
+
# First write out a rule for the rule action.
|
636
|
+
name = '%s_%s' % (rule['rule_name'], self.hash_for_rules)
|
637
|
+
|
631
638
|
args = rule['action']
|
632
639
|
description = self.GenerateDescription(
|
633
640
|
'RULE',
|
@@ -635,8 +642,9 @@ class NinjaWriter:
|
|
635
642
|
('%s ' + generator_default_variables['RULE_INPUT_PATH']) % name)
|
636
643
|
is_cygwin = (self.msvs_settings.IsRuleRunUnderCygwin(rule)
|
637
644
|
if self.flavor == 'win' else False)
|
645
|
+
pool = 'console' if int(rule.get('ninja_use_console', 0)) else None
|
638
646
|
rule_name, args = self.WriteNewNinjaRule(
|
639
|
-
name, args, description, is_cygwin, env
|
647
|
+
name, args, description, is_cygwin, env, pool)
|
640
648
|
|
641
649
|
# TODO: if the command references the outputs directly, we should
|
642
650
|
# simplify it to just use $out.
|
@@ -648,16 +656,31 @@ class NinjaWriter:
|
|
648
656
|
needed_variables = set(['source'])
|
649
657
|
for argument in args:
|
650
658
|
for var in special_locals:
|
651
|
-
if
|
659
|
+
if '${%s}' % var in argument:
|
652
660
|
needed_variables.add(var)
|
653
661
|
|
654
662
|
def cygwin_munge(path):
|
663
|
+
# pylint: disable=cell-var-from-loop
|
655
664
|
if is_cygwin:
|
656
665
|
return path.replace('\\', '/')
|
657
666
|
return path
|
658
667
|
|
668
|
+
inputs = [self.GypPathToNinja(i, env) for i in rule.get('inputs', [])]
|
669
|
+
|
670
|
+
# If there are n source files matching the rule, and m additional rule
|
671
|
+
# inputs, then adding 'inputs' to each build edge written below will
|
672
|
+
# write m * n inputs. Collapsing reduces this to m + n.
|
673
|
+
sources = rule.get('rule_sources', [])
|
674
|
+
num_inputs = len(inputs)
|
675
|
+
if prebuild:
|
676
|
+
num_inputs += 1
|
677
|
+
if num_inputs > 2 and len(sources) > 2:
|
678
|
+
inputs = [self.WriteCollapsedDependencies(
|
679
|
+
rule['rule_name'], inputs, order_only=prebuild)]
|
680
|
+
prebuild = []
|
681
|
+
|
659
682
|
# For each source file, write an edge that generates all the outputs.
|
660
|
-
for source in
|
683
|
+
for source in sources:
|
661
684
|
source = os.path.normpath(source)
|
662
685
|
dirname, basename = os.path.split(source)
|
663
686
|
root, ext = os.path.splitext(basename)
|
@@ -666,9 +689,6 @@ class NinjaWriter:
|
|
666
689
|
outputs = [self.ExpandRuleVariables(o, root, dirname,
|
667
690
|
source, ext, basename)
|
668
691
|
for o in rule['outputs']]
|
669
|
-
inputs = [self.ExpandRuleVariables(i, root, dirname,
|
670
|
-
source, ext, basename)
|
671
|
-
for i in rule.get('inputs', [])]
|
672
692
|
|
673
693
|
if int(rule.get('process_outputs_as_sources', False)):
|
674
694
|
extra_sources += outputs
|
@@ -706,10 +726,11 @@ class NinjaWriter:
|
|
706
726
|
else:
|
707
727
|
assert var == None, repr(var)
|
708
728
|
|
709
|
-
inputs = [self.GypPathToNinja(i, env) for i in inputs]
|
710
729
|
outputs = [self.GypPathToNinja(o, env) for o in outputs]
|
711
|
-
|
712
|
-
|
730
|
+
if self.flavor == 'win':
|
731
|
+
# WriteNewNinjaRule uses unique_name for creating an rsp file on win.
|
732
|
+
extra_bindings.append(('unique_name',
|
733
|
+
hashlib.md5(outputs[0]).hexdigest()))
|
713
734
|
self.ninja.build(outputs, rule_name, self.GypPathToNinja(source),
|
714
735
|
implicit=inputs,
|
715
736
|
order_only=prebuild,
|
@@ -721,7 +742,7 @@ class NinjaWriter:
|
|
721
742
|
|
722
743
|
def WriteCopies(self, copies, prebuild, mac_bundle_depends):
|
723
744
|
outputs = []
|
724
|
-
env = self.
|
745
|
+
env = self.GetToolchainEnv()
|
725
746
|
for copy in copies:
|
726
747
|
for path in copy['files']:
|
727
748
|
# Normalize the path so trailing slashes don't confuse us.
|
@@ -745,15 +766,66 @@ class NinjaWriter:
|
|
745
766
|
|
746
767
|
def WriteMacBundleResources(self, resources, bundle_depends):
|
747
768
|
"""Writes ninja edges for 'mac_bundle_resources'."""
|
769
|
+
xcassets = []
|
748
770
|
for output, res in gyp.xcode_emulation.GetMacBundleResources(
|
749
771
|
generator_default_variables['PRODUCT_DIR'],
|
750
772
|
self.xcode_settings, map(self.GypPathToNinja, resources)):
|
751
773
|
output = self.ExpandSpecial(output)
|
752
|
-
|
753
|
-
|
754
|
-
|
774
|
+
if os.path.splitext(output)[-1] != '.xcassets':
|
775
|
+
self.ninja.build(output, 'mac_tool', res,
|
776
|
+
variables=[('mactool_cmd', 'copy-bundle-resource')])
|
777
|
+
bundle_depends.append(output)
|
778
|
+
else:
|
779
|
+
xcassets.append(res)
|
780
|
+
return xcassets
|
781
|
+
|
782
|
+
def WriteMacXCassets(self, xcassets, bundle_depends):
|
783
|
+
"""Writes ninja edges for 'mac_bundle_resources' .xcassets files.
|
784
|
+
|
785
|
+
This add an invocation of 'actool' via the 'mac_tool.py' helper script.
|
786
|
+
It assumes that the assets catalogs define at least one imageset and
|
787
|
+
thus an Assets.car file will be generated in the application resources
|
788
|
+
directory. If this is not the case, then the build will probably be done
|
789
|
+
at each invocation of ninja."""
|
790
|
+
if not xcassets:
|
791
|
+
return
|
792
|
+
|
793
|
+
extra_arguments = {}
|
794
|
+
settings_to_arg = {
|
795
|
+
'XCASSETS_APP_ICON': 'app-icon',
|
796
|
+
'XCASSETS_LAUNCH_IMAGE': 'launch-image',
|
797
|
+
}
|
798
|
+
settings = self.xcode_settings.xcode_settings[self.config_name]
|
799
|
+
for settings_key, arg_name in settings_to_arg.iteritems():
|
800
|
+
value = settings.get(settings_key)
|
801
|
+
if value:
|
802
|
+
extra_arguments[arg_name] = value
|
803
|
+
|
804
|
+
partial_info_plist = None
|
805
|
+
if extra_arguments:
|
806
|
+
partial_info_plist = self.GypPathToUniqueOutput(
|
807
|
+
'assetcatalog_generated_info.plist')
|
808
|
+
extra_arguments['output-partial-info-plist'] = partial_info_plist
|
755
809
|
|
756
|
-
|
810
|
+
outputs = []
|
811
|
+
outputs.append(
|
812
|
+
os.path.join(
|
813
|
+
self.xcode_settings.GetBundleResourceFolder(),
|
814
|
+
'Assets.car'))
|
815
|
+
if partial_info_plist:
|
816
|
+
outputs.append(partial_info_plist)
|
817
|
+
|
818
|
+
keys = QuoteShellArgument(json.dumps(extra_arguments), self.flavor)
|
819
|
+
extra_env = self.xcode_settings.GetPerTargetSettings()
|
820
|
+
env = self.GetSortedXcodeEnv(additional_settings=extra_env)
|
821
|
+
env = self.ComputeExportEnvString(env)
|
822
|
+
|
823
|
+
bundle_depends.extend(self.ninja.build(
|
824
|
+
outputs, 'compile_xcassets', xcassets,
|
825
|
+
variables=[('env', env), ('keys', keys)]))
|
826
|
+
return partial_info_plist
|
827
|
+
|
828
|
+
def WriteMacInfoPlist(self, partial_info_plist, bundle_depends):
|
757
829
|
"""Write build rules for bundle Info.plist files."""
|
758
830
|
info_plist, out, defines, extra_env = gyp.xcode_emulation.GetMacInfoPlist(
|
759
831
|
generator_default_variables['PRODUCT_DIR'],
|
@@ -773,6 +845,12 @@ class NinjaWriter:
|
|
773
845
|
env = self.GetSortedXcodeEnv(additional_settings=extra_env)
|
774
846
|
env = self.ComputeExportEnvString(env)
|
775
847
|
|
848
|
+
if partial_info_plist:
|
849
|
+
intermediate_plist = self.GypPathToUniqueOutput('merged_info.plist')
|
850
|
+
info_plist = self.ninja.build(
|
851
|
+
intermediate_plist, 'merge_infoplist',
|
852
|
+
[partial_info_plist, info_plist])
|
853
|
+
|
776
854
|
keys = self.xcode_settings.GetExtraPlistItems(self.config_name)
|
777
855
|
keys = QuoteShellArgument(json.dumps(keys), self.flavor)
|
778
856
|
self.ninja.build(out, 'copy_infoplist', info_plist,
|
@@ -788,6 +866,8 @@ class NinjaWriter:
|
|
788
866
|
self.ninja.variable('cxx', '$cxx_host')
|
789
867
|
self.ninja.variable('ld', '$ld_host')
|
790
868
|
self.ninja.variable('ldxx', '$ldxx_host')
|
869
|
+
self.ninja.variable('nm', '$nm_host')
|
870
|
+
self.ninja.variable('readelf', '$readelf_host')
|
791
871
|
|
792
872
|
if self.flavor != 'mac' or len(self.archs) == 1:
|
793
873
|
return self.WriteSourcesForArch(
|
@@ -813,6 +893,7 @@ class NinjaWriter:
|
|
813
893
|
cflags_objcc = ['$cflags_cc'] + \
|
814
894
|
self.xcode_settings.GetCflagsObjCC(config_name)
|
815
895
|
elif self.flavor == 'win':
|
896
|
+
asmflags = self.msvs_settings.GetAsmflags(config_name)
|
816
897
|
cflags = self.msvs_settings.GetCflags(config_name)
|
817
898
|
cflags_c = self.msvs_settings.GetCflagsC(config_name)
|
818
899
|
cflags_cc = self.msvs_settings.GetCflagsCC(config_name)
|
@@ -847,22 +928,31 @@ class NinjaWriter:
|
|
847
928
|
self.WriteVariableList(ninja_file, 'defines',
|
848
929
|
[Define(d, self.flavor) for d in defines])
|
849
930
|
if self.flavor == 'win':
|
931
|
+
self.WriteVariableList(ninja_file, 'asmflags',
|
932
|
+
map(self.ExpandSpecial, asmflags))
|
850
933
|
self.WriteVariableList(ninja_file, 'rcflags',
|
851
934
|
[QuoteShellArgument(self.ExpandSpecial(f), self.flavor)
|
852
935
|
for f in self.msvs_settings.GetRcflags(config_name,
|
853
936
|
self.GypPathToNinja)])
|
854
937
|
|
855
938
|
include_dirs = config.get('include_dirs', [])
|
856
|
-
|
939
|
+
|
940
|
+
env = self.GetToolchainEnv()
|
857
941
|
if self.flavor == 'win':
|
858
|
-
env = self.msvs_settings.GetVSMacroEnv('$!PRODUCT_DIR',
|
859
|
-
config=config_name)
|
860
942
|
include_dirs = self.msvs_settings.AdjustIncludeDirs(include_dirs,
|
861
943
|
config_name)
|
862
944
|
self.WriteVariableList(ninja_file, 'includes',
|
863
945
|
[QuoteShellArgument('-I' + self.GypPathToNinja(i, env), self.flavor)
|
864
946
|
for i in include_dirs])
|
865
947
|
|
948
|
+
if self.flavor == 'win':
|
949
|
+
midl_include_dirs = config.get('midl_include_dirs', [])
|
950
|
+
midl_include_dirs = self.msvs_settings.AdjustMidlIncludeDirs(
|
951
|
+
midl_include_dirs, config_name)
|
952
|
+
self.WriteVariableList(ninja_file, 'midl_includes',
|
953
|
+
[QuoteShellArgument('-I' + self.GypPathToNinja(i, env), self.flavor)
|
954
|
+
for i in midl_include_dirs])
|
955
|
+
|
866
956
|
pch_commands = precompiled_header.GetPchBuildCommands(arch)
|
867
957
|
if self.flavor == 'mac':
|
868
958
|
# Most targets use no precompiled headers, so only write these if needed.
|
@@ -971,9 +1061,19 @@ class NinjaWriter:
|
|
971
1061
|
arch=arch)
|
972
1062
|
for arch in self.archs]
|
973
1063
|
extra_bindings = []
|
1064
|
+
build_output = output
|
974
1065
|
if not self.is_mac_bundle:
|
975
1066
|
self.AppendPostbuildVariable(extra_bindings, spec, output, output)
|
976
|
-
|
1067
|
+
|
1068
|
+
# TODO(yyanagisawa): more work needed to fix:
|
1069
|
+
# https://code.google.com/p/gyp/issues/detail?id=411
|
1070
|
+
if (spec['type'] in ('shared_library', 'loadable_module') and
|
1071
|
+
not self.is_mac_bundle):
|
1072
|
+
extra_bindings.append(('lib', output))
|
1073
|
+
self.ninja.build([output, output + '.TOC'], 'solipo', inputs,
|
1074
|
+
variables=extra_bindings)
|
1075
|
+
else:
|
1076
|
+
self.ninja.build(build_output, 'lipo', inputs, variables=extra_bindings)
|
977
1077
|
return output
|
978
1078
|
|
979
1079
|
def WriteLinkForArch(self, ninja_file, spec, config_name, config,
|
@@ -1066,7 +1166,7 @@ class NinjaWriter:
|
|
1066
1166
|
rpath = 'lib/'
|
1067
1167
|
if self.toolset != 'target':
|
1068
1168
|
rpath += self.toolset
|
1069
|
-
ldflags.append('-Wl,-rpath=\$$ORIGIN/%s' % rpath)
|
1169
|
+
ldflags.append(r'-Wl,-rpath=\$$ORIGIN/%s' % rpath)
|
1070
1170
|
ldflags.append('-Wl,-rpath-link=%s' % rpath)
|
1071
1171
|
self.WriteVariableList(ninja_file, 'ldflags',
|
1072
1172
|
gyp.common.uniquer(map(self.ExpandSpecial, ldflags)))
|
@@ -1098,6 +1198,23 @@ class NinjaWriter:
|
|
1098
1198
|
extra_bindings.append(('soname', os.path.split(output)[1]))
|
1099
1199
|
extra_bindings.append(('lib',
|
1100
1200
|
gyp.common.EncodePOSIXShellArgument(output)))
|
1201
|
+
if self.flavor != 'win':
|
1202
|
+
link_file_list = output
|
1203
|
+
if self.is_mac_bundle:
|
1204
|
+
# 'Dependency Framework.framework/Versions/A/Dependency Framework' ->
|
1205
|
+
# 'Dependency Framework.framework.rsp'
|
1206
|
+
link_file_list = self.xcode_settings.GetWrapperName()
|
1207
|
+
if arch:
|
1208
|
+
link_file_list += '.' + arch
|
1209
|
+
link_file_list += '.rsp'
|
1210
|
+
# If an rspfile contains spaces, ninja surrounds the filename with
|
1211
|
+
# quotes around it and then passes it to open(), creating a file with
|
1212
|
+
# quotes in its name (and when looking for the rsp file, the name
|
1213
|
+
# makes it through bash which strips the quotes) :-/
|
1214
|
+
link_file_list = link_file_list.replace(' ', '_')
|
1215
|
+
extra_bindings.append(
|
1216
|
+
('link_file_list',
|
1217
|
+
gyp.common.EncodePOSIXShellArgument(link_file_list)))
|
1101
1218
|
if self.flavor == 'win':
|
1102
1219
|
extra_bindings.append(('binary', output))
|
1103
1220
|
if '/NOENTRY' not in ldflags:
|
@@ -1199,6 +1316,19 @@ class NinjaWriter:
|
|
1199
1316
|
self.target.bundle = output
|
1200
1317
|
return output
|
1201
1318
|
|
1319
|
+
def GetToolchainEnv(self, additional_settings=None):
|
1320
|
+
"""Returns the variables toolchain would set for build steps."""
|
1321
|
+
env = self.GetSortedXcodeEnv(additional_settings=additional_settings)
|
1322
|
+
if self.flavor == 'win':
|
1323
|
+
env = self.GetMsvsToolchainEnv(
|
1324
|
+
additional_settings=additional_settings)
|
1325
|
+
return env
|
1326
|
+
|
1327
|
+
def GetMsvsToolchainEnv(self, additional_settings=None):
|
1328
|
+
"""Returns the variables Visual Studio would set for build steps."""
|
1329
|
+
return self.msvs_settings.GetVSMacroEnv('$!PRODUCT_DIR',
|
1330
|
+
config=self.config_name)
|
1331
|
+
|
1202
1332
|
def GetSortedXcodeEnv(self, additional_settings=None):
|
1203
1333
|
"""Returns the variables Xcode would set for build steps."""
|
1204
1334
|
assert self.abs_build_dir
|
@@ -1380,7 +1510,8 @@ class NinjaWriter:
|
|
1380
1510
|
values = []
|
1381
1511
|
ninja_file.variable(var, ' '.join(values))
|
1382
1512
|
|
1383
|
-
def WriteNewNinjaRule(self, name, args, description, is_cygwin, env
|
1513
|
+
def WriteNewNinjaRule(self, name, args, description, is_cygwin, env, pool,
|
1514
|
+
depfile=None):
|
1384
1515
|
"""Write out a new ninja "rule" statement for a given command.
|
1385
1516
|
|
1386
1517
|
Returns the name of the new rule, and a copy of |args| with variables
|
@@ -1438,7 +1569,8 @@ class NinjaWriter:
|
|
1438
1569
|
# GYP rules/actions express being no-ops by not touching their outputs.
|
1439
1570
|
# Avoid executing downstream dependencies in this case by specifying
|
1440
1571
|
# restat=1 to ninja.
|
1441
|
-
self.ninja.rule(rule_name, command, description,
|
1572
|
+
self.ninja.rule(rule_name, command, description, depfile=depfile,
|
1573
|
+
restat=True, pool=pool,
|
1442
1574
|
rspfile=rspfile, rspfile_content=rspfile_content)
|
1443
1575
|
self.ninja.newline()
|
1444
1576
|
|
@@ -1469,12 +1601,13 @@ def CalculateVariables(default_variables, params):
|
|
1469
1601
|
generator_extra_sources_for_rules = getattr(xcode_generator,
|
1470
1602
|
'generator_extra_sources_for_rules', [])
|
1471
1603
|
elif flavor == 'win':
|
1604
|
+
exts = gyp.MSVSUtil.TARGET_TYPE_EXT
|
1472
1605
|
default_variables.setdefault('OS', 'win')
|
1473
|
-
default_variables['EXECUTABLE_SUFFIX'] = '.
|
1606
|
+
default_variables['EXECUTABLE_SUFFIX'] = '.' + exts['executable']
|
1474
1607
|
default_variables['STATIC_LIB_PREFIX'] = ''
|
1475
|
-
default_variables['STATIC_LIB_SUFFIX'] = '.
|
1608
|
+
default_variables['STATIC_LIB_SUFFIX'] = '.' + exts['static_library']
|
1476
1609
|
default_variables['SHARED_LIB_PREFIX'] = ''
|
1477
|
-
default_variables['SHARED_LIB_SUFFIX'] = '.
|
1610
|
+
default_variables['SHARED_LIB_SUFFIX'] = '.' + exts['shared_library']
|
1478
1611
|
|
1479
1612
|
# Copy additional generator configuration data from VS, which is shared
|
1480
1613
|
# by the Windows Ninja generator.
|
@@ -1538,6 +1671,10 @@ def CommandWithWrapper(cmd, wrappers, prog):
|
|
1538
1671
|
|
1539
1672
|
def GetDefaultConcurrentLinks():
|
1540
1673
|
"""Returns a best-guess for a number of concurrent links."""
|
1674
|
+
pool_size = int(os.getenv('GYP_LINK_CONCURRENCY', 0))
|
1675
|
+
if pool_size:
|
1676
|
+
return pool_size
|
1677
|
+
|
1541
1678
|
if sys.platform in ('win32', 'cygwin'):
|
1542
1679
|
import ctypes
|
1543
1680
|
|
@@ -1667,14 +1804,15 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1667
1804
|
# 'CC_host'/'CXX_host' enviroment variable, cc_host/cxx_host should be set
|
1668
1805
|
# to cc/cxx.
|
1669
1806
|
if flavor == 'win':
|
1670
|
-
|
1671
|
-
#
|
1672
|
-
#
|
1673
|
-
cc = '
|
1674
|
-
cxx = '
|
1807
|
+
ar = 'lib.exe'
|
1808
|
+
# cc and cxx must be set to the correct architecture by overriding with one
|
1809
|
+
# of cl_x86 or cl_x64 below.
|
1810
|
+
cc = 'UNSET'
|
1811
|
+
cxx = 'UNSET'
|
1675
1812
|
ld = 'link.exe'
|
1676
1813
|
ld_host = '$ld'
|
1677
1814
|
else:
|
1815
|
+
ar = 'ar'
|
1678
1816
|
cc = 'cc'
|
1679
1817
|
cxx = 'c++'
|
1680
1818
|
ld = '$cc'
|
@@ -1682,11 +1820,16 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1682
1820
|
ld_host = '$cc_host'
|
1683
1821
|
ldxx_host = '$cxx_host'
|
1684
1822
|
|
1823
|
+
ar_host = 'ar'
|
1685
1824
|
cc_host = None
|
1686
1825
|
cxx_host = None
|
1687
1826
|
cc_host_global_setting = None
|
1688
1827
|
cxx_host_global_setting = None
|
1689
1828
|
clang_cl = None
|
1829
|
+
nm = 'nm'
|
1830
|
+
nm_host = 'nm'
|
1831
|
+
readelf = 'readelf'
|
1832
|
+
readelf_host = 'readelf'
|
1690
1833
|
|
1691
1834
|
build_file, _, _ = gyp.common.ParseQualifiedTarget(target_list[0])
|
1692
1835
|
make_global_settings = data[build_file].get('make_global_settings', [])
|
@@ -1694,6 +1837,10 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1694
1837
|
options.toplevel_dir)
|
1695
1838
|
wrappers = {}
|
1696
1839
|
for key, value in make_global_settings:
|
1840
|
+
if key == 'AR':
|
1841
|
+
ar = os.path.join(build_to_root, value)
|
1842
|
+
if key == 'AR.host':
|
1843
|
+
ar_host = os.path.join(build_to_root, value)
|
1697
1844
|
if key == 'CC':
|
1698
1845
|
cc = os.path.join(build_to_root, value)
|
1699
1846
|
if cc.endswith('clang-cl'):
|
@@ -1706,6 +1853,18 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1706
1853
|
if key == 'CXX.host':
|
1707
1854
|
cxx_host = os.path.join(build_to_root, value)
|
1708
1855
|
cxx_host_global_setting = value
|
1856
|
+
if key == 'LD':
|
1857
|
+
ld = os.path.join(build_to_root, value)
|
1858
|
+
if key == 'LD.host':
|
1859
|
+
ld_host = os.path.join(build_to_root, value)
|
1860
|
+
if key == 'NM':
|
1861
|
+
nm = os.path.join(build_to_root, value)
|
1862
|
+
if key == 'NM.host':
|
1863
|
+
nm_host = os.path.join(build_to_root, value)
|
1864
|
+
if key == 'READELF':
|
1865
|
+
readelf = os.path.join(build_to_root, value)
|
1866
|
+
if key == 'READELF.host':
|
1867
|
+
readelf_host = os.path.join(build_to_root, value)
|
1709
1868
|
if key.endswith('_wrapper'):
|
1710
1869
|
wrappers[key[:-len('_wrapper')]] = os.path.join(build_to_root, value)
|
1711
1870
|
|
@@ -1717,8 +1876,15 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1717
1876
|
wrappers[key_prefix] = os.path.join(build_to_root, value)
|
1718
1877
|
|
1719
1878
|
if flavor == 'win':
|
1879
|
+
configs = [target_dicts[qualified_target]['configurations'][config_name]
|
1880
|
+
for qualified_target in target_list]
|
1881
|
+
shared_system_includes = None
|
1882
|
+
if not generator_flags.get('ninja_use_custom_environment_files', 0):
|
1883
|
+
shared_system_includes = \
|
1884
|
+
gyp.msvs_emulation.ExtractSharedMSVSSystemIncludes(
|
1885
|
+
configs, generator_flags)
|
1720
1886
|
cl_paths = gyp.msvs_emulation.GenerateEnvironmentFiles(
|
1721
|
-
toplevel_build, generator_flags, OpenOutput)
|
1887
|
+
toplevel_build, generator_flags, shared_system_includes, OpenOutput)
|
1722
1888
|
for arch, path in cl_paths.iteritems():
|
1723
1889
|
if clang_cl:
|
1724
1890
|
# If we have selected clang-cl, use that instead.
|
@@ -1738,14 +1904,21 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1738
1904
|
if flavor == 'win':
|
1739
1905
|
master_ninja.variable('ld', ld)
|
1740
1906
|
master_ninja.variable('idl', 'midl.exe')
|
1741
|
-
master_ninja.variable('ar',
|
1907
|
+
master_ninja.variable('ar', ar)
|
1742
1908
|
master_ninja.variable('rc', 'rc.exe')
|
1743
1909
|
master_ninja.variable('asm', 'ml.exe')
|
1744
1910
|
master_ninja.variable('mt', 'mt.exe')
|
1745
1911
|
else:
|
1746
1912
|
master_ninja.variable('ld', CommandWithWrapper('LINK', wrappers, ld))
|
1747
1913
|
master_ninja.variable('ldxx', CommandWithWrapper('LINK', wrappers, ldxx))
|
1748
|
-
master_ninja.variable('ar', GetEnvironFallback(['AR_target', 'AR'],
|
1914
|
+
master_ninja.variable('ar', GetEnvironFallback(['AR_target', 'AR'], ar))
|
1915
|
+
if flavor != 'mac':
|
1916
|
+
# Mac does not use readelf/nm for .TOC generation, so avoiding polluting
|
1917
|
+
# the master ninja with extra unused variables.
|
1918
|
+
master_ninja.variable(
|
1919
|
+
'nm', GetEnvironFallback(['NM_target', 'NM'], nm))
|
1920
|
+
master_ninja.variable(
|
1921
|
+
'readelf', GetEnvironFallback(['READELF_target', 'READELF'], readelf))
|
1749
1922
|
|
1750
1923
|
if generator_supports_multiple_toolsets:
|
1751
1924
|
if not cc_host:
|
@@ -1753,7 +1926,10 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1753
1926
|
if not cxx_host:
|
1754
1927
|
cxx_host = cxx
|
1755
1928
|
|
1756
|
-
master_ninja.variable('ar_host', GetEnvironFallback(['AR_host'],
|
1929
|
+
master_ninja.variable('ar_host', GetEnvironFallback(['AR_host'], ar_host))
|
1930
|
+
master_ninja.variable('nm_host', GetEnvironFallback(['NM_host'], nm_host))
|
1931
|
+
master_ninja.variable('readelf_host',
|
1932
|
+
GetEnvironFallback(['READELF_host'], readelf_host))
|
1757
1933
|
cc_host = GetEnvironFallback(['CC_host'], cc_host)
|
1758
1934
|
cxx_host = GetEnvironFallback(['CXX_host'], cxx_host)
|
1759
1935
|
|
@@ -1836,7 +2012,7 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1836
2012
|
description='IDL $in',
|
1837
2013
|
command=('%s gyp-win-tool midl-wrapper $arch $outdir '
|
1838
2014
|
'$tlb $h $dlldata $iid $proxy $in '
|
1839
|
-
'$idlflags' % sys.executable))
|
2015
|
+
'$midl_includes $idlflags' % sys.executable))
|
1840
2016
|
master_ninja.rule(
|
1841
2017
|
'rc',
|
1842
2018
|
description='RC $in',
|
@@ -1846,9 +2022,9 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1846
2022
|
sys.executable))
|
1847
2023
|
master_ninja.rule(
|
1848
2024
|
'asm',
|
1849
|
-
description='ASM $
|
2025
|
+
description='ASM $out',
|
1850
2026
|
command=('%s gyp-win-tool asm-wrapper '
|
1851
|
-
'$arch $asm $defines $includes /c /Fo $out $in' %
|
2027
|
+
'$arch $asm $defines $includes $asmflags /c /Fo $out $in' %
|
1852
2028
|
sys.executable))
|
1853
2029
|
|
1854
2030
|
if flavor != 'mac' and flavor != 'win':
|
@@ -1875,30 +2051,31 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1875
2051
|
% { 'solink':
|
1876
2052
|
'$ld -shared $ldflags -o $lib -Wl,-soname=$soname %(suffix)s',
|
1877
2053
|
'extract_toc':
|
1878
|
-
('{ readelf -d $lib | grep SONAME ; '
|
1879
|
-
'nm -gD -f p $lib | cut -f1-2 -d\' \'; }')})
|
2054
|
+
('{ $readelf -d $lib | grep SONAME ; '
|
2055
|
+
'$nm -gD -f p $lib | cut -f1-2 -d\' \'; }')})
|
1880
2056
|
|
1881
2057
|
master_ninja.rule(
|
1882
2058
|
'solink',
|
1883
2059
|
description='SOLINK $lib',
|
1884
2060
|
restat=True,
|
1885
|
-
command=
|
1886
|
-
|
1887
|
-
|
2061
|
+
command=mtime_preserving_solink_base % {'suffix': '@$link_file_list'},
|
2062
|
+
rspfile='$link_file_list',
|
2063
|
+
rspfile_content=
|
2064
|
+
'-Wl,--whole-archive $in $solibs -Wl,--no-whole-archive $libs',
|
1888
2065
|
pool='link_pool')
|
1889
2066
|
master_ninja.rule(
|
1890
2067
|
'solink_module',
|
1891
2068
|
description='SOLINK(module) $lib',
|
1892
2069
|
restat=True,
|
1893
|
-
command=
|
1894
|
-
|
1895
|
-
|
2070
|
+
command=mtime_preserving_solink_base % {'suffix': '@$link_file_list'},
|
2071
|
+
rspfile='$link_file_list',
|
2072
|
+
rspfile_content='-Wl,--start-group $in -Wl,--end-group $solibs $libs',
|
1896
2073
|
pool='link_pool')
|
1897
2074
|
master_ninja.rule(
|
1898
2075
|
'link',
|
1899
2076
|
description='LINK $out',
|
1900
2077
|
command=('$ld $ldflags -o $out '
|
1901
|
-
'-Wl,--start-group $in
|
2078
|
+
'-Wl,--start-group $in -Wl,--end-group $solibs $libs'),
|
1902
2079
|
pool='link_pool')
|
1903
2080
|
elif flavor == 'win':
|
1904
2081
|
master_ninja.rule(
|
@@ -1937,6 +2114,16 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1937
2114
|
'lipo',
|
1938
2115
|
description='LIPO $out, POSTBUILDS',
|
1939
2116
|
command='rm -f $out && lipo -create $in -output $out$postbuilds')
|
2117
|
+
master_ninja.rule(
|
2118
|
+
'solipo',
|
2119
|
+
description='SOLIPO $out, POSTBUILDS',
|
2120
|
+
command=(
|
2121
|
+
'rm -f $lib $lib.TOC && lipo -create $in -output $lib$postbuilds &&'
|
2122
|
+
'%(extract_toc)s > $lib.TOC'
|
2123
|
+
% { 'extract_toc':
|
2124
|
+
'{ otool -l $lib | grep LC_ID_DYLIB -A 5; '
|
2125
|
+
'nm -gP $lib | cut -f1-2 -d\' \' | grep -v U$$; true; }'}))
|
2126
|
+
|
1940
2127
|
|
1941
2128
|
# Record the public interface of $lib in $lib.TOC. See the corresponding
|
1942
2129
|
# comment in the posix section above for details.
|
@@ -1959,34 +2146,42 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
1959
2146
|
'{ otool -l $lib | grep LC_ID_DYLIB -A 5; '
|
1960
2147
|
'nm -gP $lib | cut -f1-2 -d\' \' | grep -v U$$; true; }'})
|
1961
2148
|
|
1962
|
-
|
2149
|
+
|
2150
|
+
solink_suffix = '@$link_file_list$postbuilds'
|
1963
2151
|
master_ninja.rule(
|
1964
2152
|
'solink',
|
1965
2153
|
description='SOLINK $lib, POSTBUILDS',
|
1966
2154
|
restat=True,
|
1967
2155
|
command=mtime_preserving_solink_base % {'suffix': solink_suffix,
|
1968
2156
|
'type': '-shared'},
|
2157
|
+
rspfile='$link_file_list',
|
2158
|
+
rspfile_content='$in $solibs $libs',
|
1969
2159
|
pool='link_pool')
|
1970
2160
|
master_ninja.rule(
|
1971
2161
|
'solink_notoc',
|
1972
2162
|
description='SOLINK $lib, POSTBUILDS',
|
1973
2163
|
restat=True,
|
1974
2164
|
command=solink_base % {'suffix':solink_suffix, 'type': '-shared'},
|
2165
|
+
rspfile='$link_file_list',
|
2166
|
+
rspfile_content='$in $solibs $libs',
|
1975
2167
|
pool='link_pool')
|
1976
2168
|
|
1977
|
-
solink_module_suffix = '$in $solibs $libs$postbuilds'
|
1978
2169
|
master_ninja.rule(
|
1979
2170
|
'solink_module',
|
1980
2171
|
description='SOLINK(module) $lib, POSTBUILDS',
|
1981
2172
|
restat=True,
|
1982
|
-
command=mtime_preserving_solink_base % {'suffix':
|
2173
|
+
command=mtime_preserving_solink_base % {'suffix': solink_suffix,
|
1983
2174
|
'type': '-bundle'},
|
2175
|
+
rspfile='$link_file_list',
|
2176
|
+
rspfile_content='$in $solibs $libs',
|
1984
2177
|
pool='link_pool')
|
1985
2178
|
master_ninja.rule(
|
1986
2179
|
'solink_module_notoc',
|
1987
2180
|
description='SOLINK(module) $lib, POSTBUILDS',
|
1988
2181
|
restat=True,
|
1989
|
-
command=solink_base % {'suffix':
|
2182
|
+
command=solink_base % {'suffix': solink_suffix, 'type': '-bundle'},
|
2183
|
+
rspfile='$link_file_list',
|
2184
|
+
rspfile_content='$in $solibs $libs',
|
1990
2185
|
pool='link_pool')
|
1991
2186
|
|
1992
2187
|
master_ninja.rule(
|
@@ -2004,6 +2199,14 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2004
2199
|
'copy_infoplist',
|
2005
2200
|
description='COPY INFOPLIST $in',
|
2006
2201
|
command='$env ./gyp-mac-tool copy-info-plist $in $out $keys')
|
2202
|
+
master_ninja.rule(
|
2203
|
+
'merge_infoplist',
|
2204
|
+
description='MERGE INFOPLISTS $in',
|
2205
|
+
command='$env ./gyp-mac-tool merge-info-plist $out $in')
|
2206
|
+
master_ninja.rule(
|
2207
|
+
'compile_xcassets',
|
2208
|
+
description='COMPILE XCASSETS $in',
|
2209
|
+
command='$env ./gyp-mac-tool compile-xcassets $keys $in')
|
2007
2210
|
master_ninja.rule(
|
2008
2211
|
'mac_tool',
|
2009
2212
|
description='MACTOOL $mactool_cmd $in',
|
@@ -2047,6 +2250,15 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2047
2250
|
# objects.
|
2048
2251
|
target_short_names = {}
|
2049
2252
|
|
2253
|
+
# short name of targets that were skipped because they didn't contain anything
|
2254
|
+
# interesting.
|
2255
|
+
# NOTE: there may be overlap between this an non_empty_target_names.
|
2256
|
+
empty_target_names = set()
|
2257
|
+
|
2258
|
+
# Set of non-empty short target names.
|
2259
|
+
# NOTE: there may be overlap between this an empty_target_names.
|
2260
|
+
non_empty_target_names = set()
|
2261
|
+
|
2050
2262
|
for qualified_target in target_list:
|
2051
2263
|
# qualified_target is like: third_party/icu/icu.gyp:icui18n#target
|
2052
2264
|
build_file, name, toolset = \
|
@@ -2063,6 +2275,10 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2063
2275
|
|
2064
2276
|
build_file = gyp.common.RelativePath(build_file, options.toplevel_dir)
|
2065
2277
|
|
2278
|
+
qualified_target_for_hash = gyp.common.QualifiedTarget(build_file, name,
|
2279
|
+
toolset)
|
2280
|
+
hash_for_rules = hashlib.md5(qualified_target_for_hash).hexdigest()
|
2281
|
+
|
2066
2282
|
base_path = os.path.dirname(build_file)
|
2067
2283
|
obj = 'obj'
|
2068
2284
|
if toolset != 'target':
|
@@ -2070,7 +2286,7 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2070
2286
|
output_file = os.path.join(obj, base_path, name + '.ninja')
|
2071
2287
|
|
2072
2288
|
ninja_output = StringIO()
|
2073
|
-
writer = NinjaWriter(
|
2289
|
+
writer = NinjaWriter(hash_for_rules, target_outputs, base_path, build_dir,
|
2074
2290
|
ninja_output,
|
2075
2291
|
toplevel_build, output_file,
|
2076
2292
|
flavor, toplevel_dir=options.toplevel_dir)
|
@@ -2090,6 +2306,9 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2090
2306
|
target_outputs[qualified_target] = target
|
2091
2307
|
if qualified_target in all_targets:
|
2092
2308
|
all_outputs.add(target.FinalOutput())
|
2309
|
+
non_empty_target_names.add(name)
|
2310
|
+
else:
|
2311
|
+
empty_target_names.add(name)
|
2093
2312
|
|
2094
2313
|
if target_short_names:
|
2095
2314
|
# Write a short name to build this target. This benefits both the
|
@@ -2101,6 +2320,16 @@ def GenerateOutputForConfig(target_list, target_dicts, data, params,
|
|
2101
2320
|
master_ninja.build(short_name, 'phony', [x.FinalOutput() for x in
|
2102
2321
|
target_short_names[short_name]])
|
2103
2322
|
|
2323
|
+
# Write phony targets for any empty targets that weren't written yet. As
|
2324
|
+
# short names are not necessarily unique only do this for short names that
|
2325
|
+
# haven't already been output for another target.
|
2326
|
+
empty_target_names = empty_target_names - non_empty_target_names
|
2327
|
+
if empty_target_names:
|
2328
|
+
master_ninja.newline()
|
2329
|
+
master_ninja.comment('Empty targets (output for completeness).')
|
2330
|
+
for name in sorted(empty_target_names):
|
2331
|
+
master_ninja.build(name, 'phony')
|
2332
|
+
|
2104
2333
|
if all_outputs:
|
2105
2334
|
master_ninja.newline()
|
2106
2335
|
master_ninja.build('all', 'phony', list(all_outputs))
|