tree-sitter 0.0.1
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 +7 -0
- data/LICENSE.txt +22 -0
- data/README.md +36 -0
- data/Rakefile +49 -0
- data/ext/tree-sitter/extconf.rb +34 -0
- data/ext/tree-sitter/tree-sitter.c +114 -0
- data/ext/tree-sitter/tree-sitter.h +15 -0
- data/ext/tree-sitter/tree-sitter/Makefile +360 -0
- data/ext/tree-sitter/tree-sitter/README.md +224 -0
- data/ext/tree-sitter/tree-sitter/compiler.target.mk +238 -0
- data/ext/tree-sitter/tree-sitter/doc/grammar-schema.json +249 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/CMakeLists.txt +57 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/LICENSE.md +21 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/README.md +64 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/appveyor.yml +12 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/adapters/adapter.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/adapters/adapters.h +16 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/adapters/snowhouse.h +22 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_exception.h +51 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeCloseTo.h +55 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeEmpty.h +32 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeFalsy.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeGTE.h +45 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeGreaterThan.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeLTE.h +45 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeLessThan.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeNull.h +29 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/BeTruthy.h +35 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/Contain.h +58 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/Equal.h +90 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/MatchProxy.h +43 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/Matcher.h +74 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/MatcherException.h +16 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/ThrowException.h +60 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/ValueProxy.h +26 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/matchers.h +19 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/matchers/must.h +36 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/CMakeLists.txt +49 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/LICENSE_1_0.txt +23 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/README.md +419 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/cross_compile.sh +50 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/basic_assertions.cpp +228 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/boolean_operators.cpp +48 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/container_spec.cpp +85 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/custom_matchers_test.cpp +69 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/exceptions_tests.cpp +97 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/expression_error_handling.cpp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/main.cpp +43 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/map_tests.cpp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/operator_tests.cpp +137 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/sequence_container_tests.cpp +192 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/string_line_tests.cpp +179 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/string_tests.cpp +65 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/stringize_tests.cpp +111 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/example/tests.h +16 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/assert.h +126 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/assertionexception.h +58 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/assertmacro.h +22 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/constraints.h +23 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/containsconstraint.h +80 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/endswithconstraint.h +53 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/equalsconstraint.h +83 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/equalscontainerconstraint.h +80 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/equalswithdeltaconstraint.h +51 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/expressions/andexpression.h +46 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/expressions/expression.h +38 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/expressions/expression_fwd.h +15 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/expressions/notexpression.h +44 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/expressions/orexpression.h +46 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/fulfillsconstraint.h +51 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/haslengthconstraint.h +60 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/isgreaterthanconstraint.h +55 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/isgreaterthanorequaltoconstraint.h +55 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/islessthanconstraint.h +54 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/islessthanorequaltoconstraint.h +55 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/constraints/startswithconstraint.h +52 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/exceptions.h +120 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/constraintadapter.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/constraintlist.h +91 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/expressionbuilder.h +357 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/fluent.h +38 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/andoperator.h +54 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/alloperator.h +35 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/atleastoperator.h +41 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/atmostoperator.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/collectionconstraintevaluator.h +113 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/collectionoperator.h +24 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/exactlyoperator.h +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/collections/noneoperator.h +33 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/constraintoperator.h +70 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/invalidexpressionexception.h +28 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/notoperator.h +53 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/fluent/operators/oroperator.h +55 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/snowhouse.h +33 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/stringize.h +104 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/assertion_frameworks/snowhouse/snowhouse/stringizers.h +60 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/bandit.h +44 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/context.h +97 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/external/optionparser.h +2825 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/failure_formatters/default_failure_formatter.h +30 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/failure_formatters/failure_formatter.h +13 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/failure_formatters/failure_formatters.h +16 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/failure_formatters/visual_studio_failure_formatter.h +36 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/grammar.h +185 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/listener.h +27 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/options.h +117 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/registration/registrar.h +25 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/registration/registration.h +7 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/registration/spec_registry.h +17 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/colorizer.h +141 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/dots_reporter.h +76 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/info_reporter.h +319 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/progress_reporter.h +116 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/reporters.h +53 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/single_line_reporter.h +86 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/spec_reporter.h +126 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/test_run_summary.h +90 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/reporters/xunit_reporter.h +109 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/run_policies/always_run_policy.h +16 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/run_policies/bandit_run_policy.h +168 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/run_policies/never_run_policy.h +14 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/run_policies/run_policies.h +9 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/run_policies/run_policy.h +66 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/runner.h +103 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/bandit/test_run_error.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/CMake/cotire.cmake +3695 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/CMakeLists.txt +11 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/HISTORY.md +281 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/MANUAL.md +780 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/OpenCV-2.3.1.patch +299 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/README.md +24 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/bullet-2.80-rev2531.patch +389 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clang-3.0.src.patch +35 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clang-3.1.src.patch +35 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clang-3.3.src.patch +46 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clang-3.4.src.patch +48 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clang-3.5.src.patch +39 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/clapack-3.2.1-CMAKE.patch +93 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/cmake-2.8.7.patch +218 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/cminpack-1.1.4.patch +18 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/fsedit-qt5.patch +74 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/fseditor-1.0.patch +68 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/hdf5-1.8.8.patch +118 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/libpng-1.5.9.patch +38 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/llvm-3.0.src.patch +69 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/llvm-3.1.src.patch +69 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/llvm-3.3.src.patch +128 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/llvm-3.4.src.patch +100 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/llvm-3.5.src.patch +99 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/yaml-cpp.patch +37 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/Patches/zlib-1.2.6.patch +23 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/README.md +137 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/license +22 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/CMakeLists.txt +33 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/example.cpp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/example.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/log.cpp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/log.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cmake/cotire/src/main.cpp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/cross_compile.sh +43 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/before_each_after_each.spec.cpp +78 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/context.spec.cpp +44 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/describe.spec.cpp +117 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/failure_formatters/default_formatter.spec.cpp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/failure_formatters/visual_studio_failure_formatter.spec.cpp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/fakes/fake_context.h +69 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/fakes/fake_reporter.h +78 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/fakes/fakes.h +8 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/fakes/logging_fake.h +32 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/fuzzbox.spec.cpp +77 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/it.spec.cpp +355 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/main.cpp +6 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_close_to.cpp +112 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_empty.cpp +89 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_falsy.cpp +85 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_greater_than.cpp +105 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_gte.cpp +120 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_less_than.cpp +105 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_lte.cpp +119 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_null.cpp +43 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/be_truthy.cpp +85 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/contain.cpp +156 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/equal.cpp +218 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/matchers/throw_exception.cpp +105 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/options.spec.cpp +134 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/reporters/colorizer.spec.cpp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/reporters/dots_reporter.spec.cpp +206 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/reporters/info_reporter.spec.cpp +377 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/reporters/single_line_reporter.spec.cpp +201 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/reporters/xunit_reporter.spec.cpp +161 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/run.spec.cpp +77 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/run_policies/bandit_run_policy.spec.cpp +247 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/specs.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/synopsis.spec.cpp +54 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/util/argv_helper.h +62 -0
- data/ext/tree-sitter/tree-sitter/externals/bandit/specs/util/util.h +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/AUTHORS +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/DEPS +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/LICENSE +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/OWNERS +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/PRESUBMIT.py +120 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/buildbot/buildbot_run.py +190 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/codereview.settings +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/data/win/large-pdb-shim.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyp +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyp.bat +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyp_main.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/gyptest.py +274 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSNew.py +340 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSProject.py +208 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSSettings.py +1076 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSSettings_test.py +1483 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSToolFile.py +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSUserFile.py +147 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSUtil.py +267 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/MSVSVersion.py +409 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/__init__.py +537 -0
- 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 +521 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/common.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/common_test.py +72 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/easy_xml.py +157 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/easy_xml_test.py +103 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/flock_tool.py +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/__init__.py +0 -0
- 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/android.py +1072 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/cmake.py +1143 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/dump_dependency_json.py +81 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/eclipse.py +335 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/gypd.py +87 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/gypsh.py +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/make.py +2181 -0
- 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 +3342 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/msvs_test.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/ninja.py +2160 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/ninja_test.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/generator/xcode.py +1224 -0
- 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/generator/xcode_test.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/input.py +2809 -0
- 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 +90 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/mac_tool.py +510 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/msvs_emulation.py +972 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/ninja_syntax.py +160 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/ordered_dict.py +289 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/win_tool.py +292 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcode_emulation.py +1499 -0
- 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/xcodeproj_file.py +2889 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xcodeproj_file.pyc +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylib/gyp/xml_fix.py +69 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/pylintrc +307 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/samples/samples +81 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/samples/samples.bat +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/setup.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-bare/gyptest-bare.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-bare/src/bare.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-bare/src/bare.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/gyptest-all.py +72 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/actions.gyp +226 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/copy.py +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/filter.py +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/foo.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/input.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-multiple/src/main.c +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-none/gyptest-none.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-none/src/fake_cross.py +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-none/src/foo.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-none/src/none_with_source_files.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-subdir/gyptest-action.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-subdir/src/make-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-subdir/src/none.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-subdir/src/subdir/make-subdir-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions-subdir/src/subdir/subdir.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/generated-header/action.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/generated-header/main.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/generated-header/test.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-all.py +102 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-default.py +69 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-errors.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/gyptest-generated-header.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/action_missing_name.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/actions.gyp +114 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/confirm-dep-files.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/counter.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/executable.gyp +74 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/make-prog1.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/make-prog2.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir1/program.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir2/make-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir2/none.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir3/generate_main.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/actions/src/subdir3/null_input.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/gyptest-additional.py +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/src/all.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/src/dir1/actions.gyp +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/src/dir1/emit.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/additional-targets/src/dir1/lib1.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/gyptest-assembly.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/gyptest-override.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/as.bat +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/assembly.gyp +62 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/lib1.S +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/lib1.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/override.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/override_asm.asm +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/assembly/src/program.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/build-option/gyptest-build.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/build-option/hello.c +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/build-option/hello.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/gyptest-all.py +85 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/gyptest-default.py +85 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/builddir.gypi +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/func1.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/func2.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/func3.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/func4.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/func5.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/prog1.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/prog1.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/prog2.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/prog2.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/prog3.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/prog3.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/prog4.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/builddir/src/subdir2/subdir3/subdir4/subdir5/prog5.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cflags/cflags.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cflags/cflags.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cflags/gyptest-cflags.py +104 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/gyptest-headers.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/src/headers.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/src/lib1.cpp +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/src/lib1.hpp +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compilable/src/program.cpp +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/compiler-global-settings.gyp.in +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/compiler-host.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/compiler.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/cxxtest.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/gyptest-compiler-env.py +112 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/gyptest-compiler-global-settings.py +73 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/my_cc.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/my_cxx.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/my_ld.py +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/compiler-override/test.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/configurations.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/configurations.gyp +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/basics/gyptest-configurations.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/configurations.c +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/configurations.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/inheritance/gyptest-inheritance.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/actions.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/all_dependent_settings.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/configurations.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/dependencies.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/direct_dependent_settings.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/gyptest-configurations.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/libraries.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/link_settings.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/sources.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/standalone_static_library.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/target_name.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/invalid/type.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/configurations.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/front.c +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/gyptest-target_platform.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/left.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/target_platform/right.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/x64/configurations.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/x64/configurations.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/configurations/x64/gyptest-x86.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-all.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-attribs.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-default.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-samedir.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-slash.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/gyptest-updir.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/copies-attribs.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/copies-samedir.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/copies-slash.gyp +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/copies-updir.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/copies.gyp +70 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/directory/file3 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/directory/file4 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/directory/subdir/file5 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/executable-file.sh +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/file1 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/file2 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/copies/src/parentdir/subdir/file6 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/custom-generator/gyptest-custom-generator.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/custom-generator/mygenerator.py +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/custom-generator/test.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/cxxflags.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/cxxflags.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/cxxflags/gyptest-cxxflags.py +65 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines-escaping/defines-escaping.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines-escaping/defines-escaping.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines-escaping/gyptest-defines-escaping.py +184 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/defines-env.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/defines.c +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/defines.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/gyptest-define-override.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/gyptest-defines-env-regyp.py +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/gyptest-defines-env.py +85 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/defines/gyptest-defines.py +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/a.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/b/b.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/b/b.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/b/b3.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/c/c.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/c/c.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/c/d.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/double_dependency.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/double_dependent.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/extra_targets.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-double-dependency.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-extra-targets.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-lib-only.py +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-none-traversal.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/gyptest-sharedlib-linksettings.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/lib_only.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/main.c +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/none_traversal.gyp +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/sharedlib-linksettings/program.c +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/sharedlib-linksettings/sharedlib.c +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/sharedlib-linksettings/staticlib.c +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependencies/sharedlib-linksettings/test.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/gyptest-copy.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/src/copies.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/src/file1.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/dependency-copy/src/file2.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/duplicate_basenames.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/duplicate_node.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/duplicate_rule.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/duplicate_targets.gyp +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/gyptest-errors.py +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/missing_dep.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/errors/missing_targets.gyp +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/escaping/colon/test.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/escaping/gyptest-colon.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/exclusion/exclusion.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/exclusion/gyptest-exclusion.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/exclusion/hello.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/gyptest-cross.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/bogus1.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/bogus2.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/cross.gyp +83 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/cross_compile.gypi +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/fake_cross.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/program.cc +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/test1.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/test2.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/test3.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/test4.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/external-cross-compile/src/tochar.py +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/actions.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/actions-out/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/executable.gyp +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/make-prog1.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/make-prog2.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir1/program.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir2/actions-out/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir2/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir2/make-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/actions/subdir2/none.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/copies-out/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/copies.gyp +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/file1 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/file2 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/subdir/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/subdir/copies-out/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/subdir/file3 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/subdir/file4 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/copies/subdir/subdir.gyp +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-actions.py +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-copies.py +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-depth.py +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-mac-bundle.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-relocate.py +60 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-rules.py +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-subdir2-deep.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-symlink.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/gyptest-top-all.py +54 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/app.order +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/header.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/resource.sb +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/mac-bundle/test.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/copy-file.py +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/rules.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/define3.in0 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/define4.in0 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/executable.gyp +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/function1.in1 +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/function2.in1 +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir1/program.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/file1.in0 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/file2.in0 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/file3.in1 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/file4.in1 +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/none.gyp +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/rules/subdir2/rules-out/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/inc.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/inc1/include1.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/prog1.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/prog1.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/deeper/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/deeper/deeper.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/deeper/deeper.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/deeper/deeper.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/inc2/include2.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/prog2.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir2/prog2.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir3/build/README.txt +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir3/inc3/include3.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir3/prog3.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/subdir3/prog3.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/generator-output/src/symroot.gypi +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/gyp-defines/defines.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/gyp-defines/echo.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/gyp-defines/gyptest-multiple-values.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/gyp-defines/gyptest-regyp.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/gyptest-exported-hard-dependency.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/gyptest-no-exported-hard-dependency.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/a.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/a.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/b.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/b.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/c.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/c.h +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/d.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/emit.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hard_dependency/src/hard_dependency.gyp +78 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-all.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-default.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-disable-regyp.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-regyp-output.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-regyp.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/gyptest-target.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello2.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/hello/hello2.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/gyptest-home-includes-config-arg.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/gyptest-home-includes-config-env.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/gyptest-home-includes-regyp.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/gyptest-home-includes.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/src/all.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/home_dot_gyp/src/printfoo.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/gyptest-all.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/gyptest-default.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/inc.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/inc1/include1.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/includes.c +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/includes.gyp +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/shadow1/shadow.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/shadow2/shadow.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/subdir/inc.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/subdir/inc2/include2.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/subdir/subdir_includes.c +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/include_dirs/src/subdir/subdir_includes.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/gyptest-intermediate-dir.py +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/script.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/shared_infile.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/test.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/intermediate_dir/src/test2.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/English.lproj/Main_iPhone.storyboard +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/TestApp-Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/check_no_signature.py +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/main.m +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/only-compile-in-32-bits.m +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/TestApp/only-compile-in-64-bits.m +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test-archs.gyp +110 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test-device.gyp +79 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/app-bundle/test.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/deployment-target/check-version-min.c +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/deployment-target/deployment-target.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-app-ios.py +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-archs.py +106 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-deployment-target.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ios/gyptest-per-config-settings.py +147 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/README.txt +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestCmd.py +1597 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestCommon.py +570 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/lib/TestGyp.py +1117 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/gyptest-shared-obj-install-path.py +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/gyptest-shared.py +84 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/gyptest-static.py +84 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/lib1.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/lib1_moveable.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/lib2.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/lib2_moveable.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/library.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/program.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library/src/shared_dependency.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/gyptest-library-dirs.py +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/README.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/hello.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/mylib.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/mylib.h +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/test-win.gyp +60 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/library_dirs/subdir/test.gyp +68 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-objects/base.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-objects/extra.c +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-objects/gyptest-all.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/link-objects/link-objects.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/linux/gyptest-implicit-rpath.py +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/linux/implicit-rpath/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/linux/implicit-rpath/main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/linux/implicit-rpath/test.gyp +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/action-envvars/action/action.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/action-envvars/action/action.sh +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist-error.strings +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/English.lproj/InfoPlist.strings +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/English.lproj/MainMenu.xib +4119 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16be.strings +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/English.lproj/utf-16le.strings +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/TestApp-Info.plist +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.h +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/TestAppAppDelegate.m +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/TestApp/main.m +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/empty.c +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/test-error.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/app-bundle/test.gyp +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/empty_main.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/file.mm +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/header.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/my_file.cc +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/my_main_file.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-archs-multiarch.gyp +72 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-archs-x86_64.gyp +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/archs/test-no-archs.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/bundle-resources/change.sh +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/bundle-resources/executable-file.sh +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/bundle-resources/secret.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/bundle-resources/test.gyp +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/ccfile.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/ccfile_withcflags.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/cfile.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/cppfile.cpp +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/cppfile_withcflags.cpp +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/cxxfile.cxx +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/cxxfile_withcflags.cxx +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/mfile.m +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/mmfile.mm +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/mmfile_withcflags.mm +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/cflags/test.gyp +132 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-language-standard/c++11.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-language-standard/c++98.cc +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-language-standard/clang-cxx-language-standard.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-library/clang-cxx-library.gyp +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-library/libc++.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/clang-cxx-library/libstdc++.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/copy-dylib/empty.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/copy-dylib/test.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/debuginfo/file.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/debuginfo/test.gyp +82 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/depend-on-bundle/Info.plist +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/depend-on-bundle/bundle.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/depend-on-bundle/executable.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/depend-on-bundle/test.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/deployment-target/check-version-min.c +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/deployment-target/deployment-target.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework-dirs/calculate.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework-dirs/framework-dirs.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework-headers/myframework.h +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework-headers/myframework.m +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework-headers/test.gyp +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/English.lproj/InfoPlist.strings +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/Info.plist +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/ObjCVector.h +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/ObjCVector.mm +63 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/ObjCVectorInternal.h +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/TestFramework/TestFramework_Prefix.pch +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/empty.c +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/framework/framework.gyp +71 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/global-settings/src/dir1/dir1.gyp +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/global-settings/src/dir2/dir2.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/global-settings/src/dir2/file.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-action-envvars.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-app-error.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-app.py +119 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-archs.py +89 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-bundle-resources.py +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-cflags.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-clang-cxx-language-standard.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-clang-cxx-library.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-copies.py +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-copy-dylib.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-debuginfo.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-depend-on-bundle.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-deployment-target.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-framework-dirs.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-framework-headers.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-framework.py +74 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-global-settings.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-infoplist-process.py +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-installname.py +79 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-ldflags-passed-to-libtool.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-ldflags.py +68 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-libraries.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-loadable-module.py +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-missing-cfbundlesignature.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-non-strs-flattened-to-env.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-objc-arc.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-objc-gc.py +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-copy-bundle.py +75 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-defaults.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-fail.py +67 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-multiple-configurations.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild-static-library.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-postbuild.py +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-prefixheader.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-rebuild.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-rpath.py +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-sdkroot.py +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-sourceless-module.py +72 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-strip-default.py +95 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-strip.py +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-type-envvars.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-unicode-settings.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xcode-env-order.py +94 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xcode-gcc-clang.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xcode-gcc.py +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/gyptest-xctest.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/infoplist-process/Info.plist +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/infoplist-process/main.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/infoplist-process/test1.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/infoplist-process/test2.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/infoplist-process/test3.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/installname/Info.plist +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/installname/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/installname/main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/installname/test.gyp +93 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags-libtool/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags-libtool/test.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags/subdirectory/Info.plist +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags/subdirectory/file.c +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags/subdirectory/symbol_list.def +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/ldflags/subdirectory/test.gyp +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/libraries/subdir/README.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/libraries/subdir/hello.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/libraries/subdir/mylib.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/libraries/subdir/test.gyp +65 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/loadable-module/Info.plist +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/loadable-module/module.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/loadable-module/test.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/missing-cfbundlesignature/Info.plist +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/missing-cfbundlesignature/Other-Info.plist +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/missing-cfbundlesignature/Third-Info.plist +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/missing-cfbundlesignature/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/missing-cfbundlesignature/test.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/non-strs-flattened-to-env/Info.plist +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/non-strs-flattened-to-env/main.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/non-strs-flattened-to-env/test.gyp +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/c-file.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/cc-file.cc +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/m-file-no-arc.m +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/m-file.m +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/mm-file-no-arc.mm +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/mm-file.mm +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-arc/test.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/c-file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/cc-file.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/main.m +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/needs-gc-mm.mm +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/needs-gc.m +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/objc-gc/test.gyp +102 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/Framework-Info.plist +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/TestApp-Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/copied.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/empty.c +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/main.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/postbuild-copy-framework.sh +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/resource_file.sb +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-copy-bundle/test.gyp +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-defaults/Info.plist +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-defaults/main.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-defaults/postbuild-defaults.sh +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-defaults/test.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-fail/file.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-fail/postbuild-fail.sh +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-fail/test.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-fail/touch-dynamic.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-fail/touch-static.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-multiple-configurations/main.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-multiple-configurations/postbuild-touch-file.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-multiple-configurations/test.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-static-library/empty.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-static-library/postbuild-touch-file.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuild-static-library/test.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/copy.sh +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/file.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/file_g.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/file_h.c +4 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/script/shared_library_postbuild.sh +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/script/static_library_postbuild.sh +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/subdirectory/copied_file.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/subdirectory/nested_target.gyp +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/postbuilds/test.gyp +93 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/file.cc +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/file.m +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/file.mm +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/header.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/prefixheader/test.gyp +82 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rebuild/TestApp-Info.plist +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rebuild/delay-touch.sh +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rebuild/empty.c +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rebuild/main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rebuild/test.gyp +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rpath/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rpath/main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/rpath/test.gyp +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sdkroot/file.cc +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sdkroot/test.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sdkroot/test_shorthand.sh +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sourceless-module/empty.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sourceless-module/empty.txt +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sourceless-module/fun.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/sourceless-module/test.gyp +96 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/file.c +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/main.c +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/strip.saves +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/subdirectory/nested_file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/subdirectory/nested_strip.saves +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/subdirectory/subdirectory.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/subdirectory/test_reading_save_file_from_postbuild.sh +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/test-defaults.gyp +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/strip/test.gyp +119 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/file.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test.gyp +100 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_executable.sh +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_loadable_module.sh +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_bundle_shared_library.sh +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_executable.sh +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_loadable_module.sh +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_none.sh +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_shared_library.sh +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/type_envvars/test_nonbundle_static_library.sh +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/unicode-settings/file.cc +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/unicode-settings/test.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/unicode-settings/test_bundle_display_name.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/Info.plist +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/file.ext1 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/file.ext2 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/file.ext3 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/main.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-env-order/test.gyp +121 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/aliasing.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/test-clang.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/test.gyp +60 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/valid_c.c +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/valid_cc.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/valid_m.m +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/valid_mm.mm +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/warn_about_invalid_offsetof_macro.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xcode-gcc/warn_about_missing_newline.c +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/MyClass.h +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/MyClass.m +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/TestCase.m +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/resource.txt +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/test.gyp +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/mac/xctest/test.xcodeproj/xcshareddata/xcschemes/classes.xcscheme +69 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/dependencies.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/gyptest-dependencies.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/gyptest-noload.py +57 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/main.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/main.h +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/all.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/lib/shared.c +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/lib/shared.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/lib/shared.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make/noload/main.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/basics/gyptest-make_global_settings.py +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/basics/make_global_settings.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/env-wrapper/gyptest-wrapper.py +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/env-wrapper/wrapper.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/wrapper/gyptest-wrapper.py +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/make_global_settings/wrapper/wrapper.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/file0 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/file1 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/file2 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/file3 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/file4 +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/gyptest-many-actions-unsorted.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/gyptest-many-actions.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/many-actions-unsorted.gyp +154 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/many-actions/many-actions.gyp +1817 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/module/gyptest-default.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/module/src/lib1.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/module/src/lib2.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/module/src/module.gyp +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/module/src/program.c +111 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/buildevents/buildevents.gyp +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/buildevents/gyptest-msbuild-supports-prepostbuild.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/buildevents/gyptest-ninja-warnings.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/buildevents/main.cc +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/config_attrs/gyptest-config_attrs.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/config_attrs/hello.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/config_attrs/hello.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/express/base/base.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/express/express.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/express/gyptest-express.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/external.gyp +68 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/external_builder.py +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/gyptest-all.py +59 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/hello.cpp +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/hello.z +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/msbuild_action.py +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/external_builder/msbuild_rule.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/filters/filters.gyp +47 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/filters/gyptest-filters-2008.py +68 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/filters/gyptest-filters-2010.py +57 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/list_excluded/gyptest-all.py +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/list_excluded/hello.cpp +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/list_excluded/hello_exclude.gyp +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/list_excluded/hello_mac.cpp +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/missing_sources/gyptest-missing.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/missing_sources/hello_missing.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/AppName.props +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/AppName.vsprops +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/gyptest-props.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/hello.c +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/props/hello.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/common.gypi +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/gyptest-shared_output.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/hello.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/hello.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/there/there.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/shared_output/there/there.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/uldi2010/gyptest-all.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/uldi2010/hello.c +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/uldi2010/hello.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/msvs/uldi2010/hello2.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/gyptest-all.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/gyptest-default.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/common.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/multiple.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/prog1.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/multiple-targets/src/prog2.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/gyptest-action-dependencies.py +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/a.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/a.h +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/action_dependencies.gyp +88 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/b.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/b.h +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/c.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/c.h +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/action_dependencies/src/emit.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/chained-dependency/chained-dependency.gyp +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/chained-dependency/chained.c +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/chained-dependency/gyptest-chained-dependency.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/normalize-paths-win/gyptest-normalize-paths.py +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/normalize-paths-win/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/normalize-paths-win/normalize-paths.gyp +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/s-needs-no-depfiles/empty.s +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/s-needs-no-depfiles/gyptest-s-needs-no-depfiles.py +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/s-needs-no-depfiles/s-needs-no-depfiles.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/solibs_avoid_relinking/gyptest-solibs-avoid-relinking.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/solibs_avoid_relinking/main.cc +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/solibs_avoid_relinking/solib.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/solibs_avoid_relinking/solibs_avoid_relinking.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-custom-environment-files/gyptest-use-custom-environment-files.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/ninja/use-custom-environment-files/use-custom-environment-files.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/gyptest-no-cpp.py +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/src/call-f-main.c +2 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/src/empty-main.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/src/f.cc +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-cpp/src/test.gyp +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-output/gyptest-no-output.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/no-output/src/nooutput.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/product/gyptest-product.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/product/hello.c +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/product/product.gyp +128 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/gyptest-prune-targets.py +64 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/lib1.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/lib2.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/lib3.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/lib_indirect.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/program.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/test1.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/prune_targets/test2.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/a/a.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/a/a.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/a/c/c.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/a/c/c.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/b/b.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/foo/b/b.gyp +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/relative/gyptest-default.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rename/filecase/file.c +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rename/filecase/test-casesensitive.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rename/filecase/test.gyp +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rename/gyptest-filecase.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/restat/gyptest-restat.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/restat/src/create_intermediate.py +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/restat/src/restat.gyp +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/restat/src/touch.py +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/gyptest-dirname.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/actions.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/copy-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/a/b/c.gencc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/a/b/c.printvars +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/foo/bar/baz.gencc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/input-rule-dirname.gyp +92 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/main.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-dirname/src/subdir/printvars.py +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/gyptest-all.py +70 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/gyptest-default.py +91 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/main.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/make-sources.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/prog1.in +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/prog2.in +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-rebuild/src/same_target.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-use-built-dependencies/gyptest-use-built-dependencies.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-use-built-dependencies/src/main.cc +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-use-built-dependencies/src/use-built-dependencies-rule.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/gyptest-rules-variables.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/input_ext.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/input_name/test.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/input_path/subdir/test.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/subdir/input_dirname.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/subdir/test.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/test.input_root.c +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules-variables/src/variables.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-all.py +69 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-default.py +55 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-input-root.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/gyptest-special-variables.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/actions.gyp +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/an_asm.S +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/as.bat +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/copy-file.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/external/external.gyp +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/external/file1.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/external/file2.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/input-root.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/noaction/file1.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/noaction/no_action_with_rules_fails.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/rule.py +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/somefile.ext +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/special-variables.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir1/executable.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir1/function1.in +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir1/function2.in +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir1/program.c +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/file1.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/file2.in +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/never_used.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/no_action.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/no_inputs.gyp +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir2/none.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir3/executable2.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir3/function3.in +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir3/program.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir4/asm-function.assem +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir4/build-asm.gyp +49 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/rules/src/subdir4/program.c +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/gyptest-all.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/gyptest-default.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/gyptest-library.py +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/library/one/sub.gyp +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/library/test.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/library/two/sub.gyp +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/src/all.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/src/subdir1/executable.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/src/subdir1/main1.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/src/subdir2/executable.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-gyp-name/src/subdir2/main2.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-rule-output-file-name/gyptest-all.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-rule-output-file-name/src/subdir1/subdir1.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-rule-output-file-name/src/subdir2/subdir2.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-rule-output-file-name/src/subdirs.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-rule-output-file-name/src/touch.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-all.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-default.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-fail-shared.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-fail-static.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/gyptest-pass-executable.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/all.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/double-executable.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/double-shared.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/double-static.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/func.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog1.c +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog2.c +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/prog3.c +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/subdir1/func.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-source-file-name/src/subdir2/func.c +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/gyptest-all.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/src/subdir1/subdir1.gyp +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/src/subdir2/subdir2.gyp +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/src/subdirs.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name-different-directory/src/touch.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name/gyptest-same-target-name.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name/src/all.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name/src/executable1.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/same-target-name/src/executable2.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sanitize-rule-names/blah.S +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sanitize-rule-names/gyptest-sanitize-rule-names.py +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sanitize-rule-names/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sanitize-rule-names/sanitize-rule-names.gyp +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sanitize-rule-names/script.py +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/self-dependency/common.gypi +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/self-dependency/dep.gyp +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/self-dependency/gyptest-self-dependency.py +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/self-dependency/self_dependency.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/gyptest-all.py +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/gyptest-relocate.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/build/all.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog1/prog1.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog1/prog1.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog2/prog2.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/sibling/src/prog2/prog2.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/small/gyptest-small.py +55 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/gyptest-standalone-static-library.py +52 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/invalid.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/mylib.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/mylib.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone-static-library/prog.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone/gyptest-standalone.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/standalone/standalone.gyp +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-SYMROOT-all.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-SYMROOT-default.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-subdir-all.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-subdir-default.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-subdir2-deep.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-top-all.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/gyptest-top-default.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/prog1.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/prog1.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/prog2.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/prog2.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/subdir2/prog3.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/subdir/subdir2/prog3.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/subdirectory/src/symroot.gypi +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/target/gyptest-target.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/target/hello.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/target/target.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/gyptest-toolsets.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/main.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/toolsets.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/toolsets.gyp +62 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toolsets/toolsets_shared.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/gyptest-toplevel-dir.py +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub1/main.gyp +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub1/prog1.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub2/prog2.c +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/toplevel-dir/src/sub2/prog2.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands-repeated.gyp +128 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands-repeated.gyp.stdout +136 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands-repeated.gypd.golden +77 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands.gyp +91 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands.gyp.ignore-env.stdout +96 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands.gyp.stdout +96 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands.gypd.golden +66 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/commands.gypi +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/gyptest-commands-ignore-env.py +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/gyptest-commands-repeated.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/gyptest-commands.py +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/test.py +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/commands/update_golden +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/filelist.gyp.stdout +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/filelist.gypd.golden +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/gyptest-filelist-golden.py +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/gyptest-filelist.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/src/dummy.py +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/src/filelist.gyp +93 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/src/filelist2.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/filelist/update_golden +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/latelate/gyptest-latelate.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/latelate/src/latelate.gyp +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/latelate/src/program.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/variable-in-path/C1/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/variable-in-path/gyptest-variable-in-path.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/variables/variable-in-path/variable-in-path.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/asm-files/asm-files.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/asm-files/b.s +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/asm-files/c.S +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/asm-files/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/batch-file-action/batch-file-action.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/batch-file-action/infile +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/batch-file-action/somecmd.bat +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/a.S +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/bat with spaces.bat +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/command-quote.gyp +84 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/go.bat +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/command-quote/subdir/and/another/in-subdir.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/additional-include-dirs.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/additional-include-dirs.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/additional-options.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/additional-options.gyp +31 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/analysis.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/buffer-security-check.gyp +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/buffer-security.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/character-set-mbcs.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/character-set-unicode.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/character-set.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/debug-format.gyp +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/default-char-is-unsigned.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/default-char-is-unsigned.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/disable-specific-warnings.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/disable-specific-warnings.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/exception-handling-on.cc +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/exception-handling.gyp +46 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/force-include-files-with-precompiled.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/force-include-files.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/force-include-files.gyp +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/function-level-linking.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/function-level-linking.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/optimizations.gyp +207 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/pdbname-override.gyp +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/pdbname.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/pdbname.gyp +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/precomp.cc +6 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/rtti-on.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/rtti.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-checks.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-checks.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-library-md.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-library-mdd.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-library-mt.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-library-mtd.cc +19 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/runtime-library.gyp +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/subdir/header.h +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type1.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/treat-wchar-t-as-built-in-type2.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/uninit.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-as-error.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-as-error.gyp +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-level.gyp +115 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-level1.cc +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-level2.cc +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-level3.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/compiler-flags/warning-level4.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/generator-output-different-drive/gyptest-generator-output-different-drive.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/generator-output-different-drive/prog.c +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/generator-output-different-drive/prog.gyp +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-asm-files.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-additional-include-dirs.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-additional-options.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-analysis.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-buffer-security-check.py +53 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-character-set.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-debug-format.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-default-char-is-unsigned.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-disable-specific-warnings.py +32 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-exception-handling.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-force-include-files.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-function-level-linking.py +52 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-optimizations.py +105 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-pdbname-override.py +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-pdbname.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-rtti.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-runtime-checks.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-runtime-library.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-treat-wchar-t-as-built-in-type.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-warning-as-error.py +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-cl-warning-level.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-command-quote.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-lib-ltcg.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-additional-deps.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-additional-options.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-aslr.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-base-address.py +62 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-debug-info.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-default-libs.py +22 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-deffile.py +43 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-defrelink.py +51 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-delay-load-dlls.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-embed-manifest.py +99 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-enable-uac.py +95 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-entrypointsymbol.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-fixed-base.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-force-symbol-reference.py +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-generate-manifest.py +127 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-incremental.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-large-address-aware.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-large-pdb.py +70 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-library-adjust.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-library-directories.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-ltcg.py +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-mapfile.py +44 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-nodefaultlib.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-nxcompat.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-opt-icf.py +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-opt-ref.py +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-ordering.py +101 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-outputfile.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-pdb-output.py +34 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-pdb.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-pgo.py +75 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-profile.py +37 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-restat-importlib.py +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-shard.py +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-subsystem.py +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-target-machine.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-tsaware.py +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-uldi.py +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-unsupported-manifest.py +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-update-manifest.py +103 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-link-warnings-as-errors.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-long-command-line.py +23 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-projectname.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-targetname.py +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macro-vcinstalldir.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macros-containing-gyp.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-macros-in-inputs-and-outputs.py +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-midl-rules.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-quoting-commands.py +25 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/gyptest-rc-build.py +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/basic-idl.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/history_indexer.idl +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/idl-rules/history_indexer_user.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/importlib/has-exports.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/importlib/hello.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/importlib/importlib.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/large-pdb/dllmain.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/large-pdb/large-pdb.gyp +98 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/large-pdb/main.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/lib-flags/answer.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/lib-flags/answer.h +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/lib-flags/ltcg.gyp +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/a/x.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/a/z.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/additional-deps.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/additional-deps.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/additional-options.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/aslr.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/b/y.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/base-address.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/debug-info.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/deffile-multiple.gyp +17 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/deffile.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/deffile.def +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/deffile.gyp +38 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/delay-load-dlls.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/delay-load.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/embed-manifest.gyp +109 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/enable-uac.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/entrypointsymbol.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/entrypointsymbol.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/extra.manifest +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/extra2.manifest +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/fixed-base.gyp +52 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/force-symbol-reference.gyp +39 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/generate-manifest.gyp +166 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/incremental.gyp +65 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/inline_test.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/inline_test.h +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/inline_test_main.cc +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/large-address-aware.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/library-adjust.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/library-adjust.gyp +16 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/library-directories-define.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/library-directories-reference.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/library-directories.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/link-ordering.gyp +95 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/link-warning.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/ltcg.gyp +42 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/main-crt.c +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/manifest-in-comment.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/mapfile.cc +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/mapfile.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/no-default-libs.cc +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/no-default-libs.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/nodefaultlib.cc +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/nodefaultlib.gyp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/nxcompat.gyp +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/opt-icf.cc +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/opt-icf.gyp +63 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/opt-ref.cc +11 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/opt-ref.gyp +56 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/outputfile.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/pdb-output.gyp +36 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/pgo.gyp +143 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/profile.gyp +50 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/program-database.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/subdir/library.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/subsystem-windows.cc +9 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/subsystem.gyp +70 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/target-machine.gyp +48 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/tsaware.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/unsupported-manifest.gyp +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/update_pgd.py +35 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/warn-as-error.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/x.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/y.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/linker-flags/z.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/long-command-line/function.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/long-command-line/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/long-command-line/long-command-line.gyp +54 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/gyptest-all.py +21 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/hello.c +14 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/hello.gyp +28 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/hello2.c +13 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/precompiled/precomp.c +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/Resource.h +26 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.cpp +30 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.gyp +92 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.h +3 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.ico +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello.rc +86 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/hello3.rc +87 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/small.ico +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/subdir/hello2.rc +87 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/subdir/include.h +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/rc-build/targetver.h +24 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/hello1.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/hello2.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/hello3.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/hello4.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/shard/shard.gyp +20 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/uldi/a.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/uldi/b.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/uldi/main.cc +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/uldi/uldi.gyp +45 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/as.py +18 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/containing-gyp.gyp +40 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/do_stuff.py +8 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/hello.cc +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/input-output-macros.gyp +33 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/input.S +0 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/projectname.gyp +29 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/stuff.blah +1 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/targetname.gyp +52 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/test_exists.py +10 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/test/win/vs-macros/vcinstalldir.gyp +41 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/README +15 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/Xcode/README +5 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/Xcode/Specifications/gyp.pbfilespec +27 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/Xcode/Specifications/gyp.xclangspec +226 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/README +12 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/gyp-tests.el +63 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/gyp.el +252 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/run-unit-tests.sh +7 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/testdata/media.gyp +1105 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/emacs/testdata/media.gyp.fontified +1107 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/graphviz.py +100 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/pretty_gyp.py +155 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/pretty_sln.py +168 -0
- data/ext/tree-sitter/tree-sitter/externals/gyp/tools/pretty_vcproj.py +329 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/AUTHORS +20 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/LICENSE +26 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/Makefile.in +68 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/README.md +97 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/bindings/python/example/test.json +88 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/bindings/python/example/test.py +11 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/bindings/python/jsonparser.pyx +9 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/bindings/python/setup.py +14 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/bindings/python/wrap_json.c +95 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/configure +3796 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/configure.ac +30 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/examples/test_json.c +180 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/json-parser.pc.in +10 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/json.c +1011 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/json.h +283 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/ext-invalid-0001.json +3 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/ext-invalid-0002.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/ext-valid-0001.json +9 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/ext-valid-0002.json +4 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/ext-valid-0003.json +3 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0000.json +0 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0001.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0002.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0003.json +88 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0004.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0005.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0006.json +3 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0007.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0008.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0009.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/invalid-0010.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/test.py +70 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0000.json +88 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0001.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0002.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0003.json +3 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0004.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0005.json +15 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0006.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0007.json +2 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0008.json +8 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0009.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0010.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0011.json +1 -0
- data/ext/tree-sitter/tree-sitter/externals/json-parser/tests/valid-0012.json +5 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/CMakeLists.txt +31 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/Doxyfile +1528 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/LICENSE.md +93 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/MANIFEST +7 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/Makefile +145 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/NEWS.md +234 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/README.md +67 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/appveyor.yml +42 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/Makefile +39 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/bench.c +56 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/icu.c +61 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/unistring.c +60 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/util.c +39 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/bench/util.h +22 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/data/Makefile +63 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/data/charwidths.jl +190 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/data/data_generator.rb +328 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/lump.md +27 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/case.c +50 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/charwidth.c +71 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/graphemetest.c +74 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/iterate.c +160 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/normtest.c +64 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/printproperty.c +51 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/tests.c +46 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/tests.h +23 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/test/valid.c +41 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc.c +644 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc.h +601 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utf8proc_data.c +16752 -0
- data/ext/tree-sitter/tree-sitter/externals/utf8proc/utils.cmake +20 -0
- data/ext/tree-sitter/tree-sitter/gyp-mac-tool +511 -0
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/compiler.h +32 -0
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/parser.h +188 -0
- data/ext/tree-sitter/tree-sitter/include/tree_sitter/runtime.h +126 -0
- 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/linker.lock +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 +6 -0
- data/ext/tree-sitter/tree-sitter/project.gyp +175 -0
- data/ext/tree-sitter/tree-sitter/runtime.target.mk +174 -0
- data/ext/tree-sitter/tree-sitter/script/check-mallocs +20 -0
- data/ext/tree-sitter/tree-sitter/script/ci +7 -0
- data/ext/tree-sitter/tree-sitter/script/clean +7 -0
- data/ext/tree-sitter/tree-sitter/script/configure +7 -0
- data/ext/tree-sitter/tree-sitter/script/fetch-fixtures +28 -0
- data/ext/tree-sitter/tree-sitter/script/format +7 -0
- data/ext/tree-sitter/tree-sitter/script/lint +14 -0
- data/ext/tree-sitter/tree-sitter/script/test +122 -0
- data/ext/tree-sitter/tree-sitter/script/trim-whitespace +3 -0
- data/ext/tree-sitter/tree-sitter/script/util/valgrind.supp +256 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/distinctive_tokens_spec.cc +34 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/lex_conflict_manager_spec.cc +88 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/lex_item_spec.cc +517 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/parse_item_set_builder_spec.cc +133 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/build_tables/rule_can_be_blank_spec.cc +60 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/expand_repeats_spec.cc +152 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/expand_tokens_spec.cc +109 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/extract_choices_spec.cc +106 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/extract_tokens_spec.cc +251 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/flatten_grammar_spec.cc +89 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/intern_symbols_spec.cc +89 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/prepare_grammar/parse_regex_spec.cc +245 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/rules/character_set_spec.cc +337 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/rules/choice_spec.cc +53 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/rules/repeat_spec.cc +22 -0
- data/ext/tree-sitter/tree-sitter/spec/compiler/util/string_helpers_spec.cc +26 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/c_errors.txt +130 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/javascript_errors.txt +157 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/json_errors.txt +56 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/error_corpus/python_errors.txt +29 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/external_scanners/extra_external_tokens.c +42 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/external_scanners/percent_strings.c +118 -0
- data/ext/tree-sitter/tree-sitter/spec/fixtures/external_scanners/shared_external_tokens.c +63 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/dedent.h +12 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/encoding_helpers.cc +58 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/encoding_helpers.h +15 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/equals_pointer.h +37 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/load_language.cc +206 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/load_language.h +12 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/point_helpers.cc +45 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/point_helpers.h +23 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/random_helpers.cc +35 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/random_helpers.h +8 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/read_test_entries.cc +105 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/read_test_entries.h +15 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/record_alloc.cc +84 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/record_alloc.h +16 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/rule_helpers.cc +55 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/rule_helpers.h +21 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/scope_sequence.cc +106 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/scope_sequence.h +16 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/spy_input.cc +133 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/spy_input.h +39 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/spy_logger.cc +22 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/spy_logger.h +15 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/stderr_logger.cc +22 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/stderr_logger.h +8 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/stream_methods.cc +140 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/stream_methods.h +136 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/tree_helpers.cc +50 -0
- data/ext/tree-sitter/tree-sitter/spec/helpers/tree_helpers.h +16 -0
- data/ext/tree-sitter/tree-sitter/spec/integration/compile_grammar_spec.cc +847 -0
- data/ext/tree-sitter/tree-sitter/spec/integration/corpus_specs.cc +185 -0
- data/ext/tree-sitter/tree-sitter/spec/runtime/document_spec.cc +372 -0
- data/ext/tree-sitter/tree-sitter/spec/runtime/node_spec.cc +436 -0
- data/ext/tree-sitter/tree-sitter/spec/runtime/parser_spec.cc +479 -0
- data/ext/tree-sitter/tree-sitter/spec/runtime/stack_spec.cc +571 -0
- data/ext/tree-sitter/tree-sitter/spec/runtime/tree_spec.cc +439 -0
- data/ext/tree-sitter/tree-sitter/spec/spec_helper.h +19 -0
- data/ext/tree-sitter/tree-sitter/spec/specs.cc +16 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_lex_table.cc +195 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_lex_table.h +18 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_parse_table.cc +604 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_parse_table.h +22 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_tables.cc +27 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/build_tables.h +24 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/conflict_type.h +16 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_conflict_manager.cc +55 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_conflict_manager.h +31 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item.cc +118 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item.h +82 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item_transitions.cc +188 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lex_item_transitions.h +17 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lookahead_set.cc +47 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/lookahead_set.h +28 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item.cc +148 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item.h +65 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item_set_builder.cc +167 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/parse_item_set_builder.h +35 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/recovery_tokens.cc +89 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/recovery_tokens.h +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/remove_duplicate_states.h +65 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/rule_can_be_blank.cc +44 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/build_tables/rule_can_be_blank.h +14 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/compile.cc +72 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/compile.h +16 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/compile_error.h +28 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/generate_code/c_code.cc +691 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/generate_code/c_code.h +21 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/grammar.h +20 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/lex_table.cc +78 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/lex_table.h +75 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/lexical_grammar.h +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_grammar.cc +335 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_grammar.h +20 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_table.cc +258 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/parse_table.h +106 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/precedence_range.cc +45 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/precedence_range.h +23 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_repeats.cc +80 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_repeats.h +16 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_tokens.cc +88 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/expand_tokens.h +18 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_choices.cc +55 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_choices.h +15 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_tokens.cc +213 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/extract_tokens.h +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/flatten_grammar.cc +124 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/flatten_grammar.h +20 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/initial_syntax_grammar.h +24 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/intern_symbols.cc +110 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/intern_symbols.h +20 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/interned_grammar.h +24 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/is_token.cc +30 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/is_token.h +14 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/normalize_rules.cc +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/normalize_rules.h +14 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/parse_regex.cc +252 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/parse_regex.h +17 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/prepare_grammar.cc +69 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/prepare_grammar.h +21 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/token_description.cc +69 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/prepare_grammar/token_description.h +15 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rule.cc +15 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rule.h +45 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules.h +28 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/blank.cc +36 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/blank.h +25 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/built_in_symbols.cc +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/built_in_symbols.h +16 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_range.cc +36 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_range.h +25 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_set.cc +220 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/character_set.h +59 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/choice.cc +78 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/choice.h +28 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/metadata.cc +98 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/metadata.h +51 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/named_symbol.cc +35 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/named_symbol.h +26 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/pattern.cc +36 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/pattern.h +26 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/repeat.cc +44 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/repeat.h +27 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/rules.cc +108 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/seq.cc +57 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/seq.h +29 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/string.cc +35 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/string.h +26 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/symbol.cc +82 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/symbol.h +55 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/visitor.cc +44 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/rules/visitor.h +234 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/syntax_grammar.cc +34 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/syntax_grammar.h +52 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/util/hash_combine.h +24 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/util/string_helpers.cc +54 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/util/string_helpers.h +19 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/variable.cc +11 -0
- data/ext/tree-sitter/tree-sitter/src/compiler/variable.h +27 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/alloc.h +85 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/array.h +137 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/document.c +152 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/document.h +17 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/error_costs.c +28 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/error_costs.h +25 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/language.c +56 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/language.h +70 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/length.h +59 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/lexer.c +131 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/lexer.h +40 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/node.c +393 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/node.h +8 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/parser.c +1227 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/parser.h +41 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/point.h +46 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/reduce_action.h +32 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/reusable_node.h +50 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/stack.c +658 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/stack.h +130 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/string_input.c +50 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/string_input.h +17 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/tree.c +551 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/tree.h +117 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/tree_path.h +217 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/utf16.c +24 -0
- data/ext/tree-sitter/tree-sitter/src/runtime/utf16.h +20 -0
- data/ext/tree-sitter/tree-sitter/tests.Makefile +6 -0
- data/ext/tree-sitter/tree-sitter/tests.gyp +58 -0
- data/ext/tree-sitter/tree-sitter/tests.target.mk +176 -0
- data/lib/tree-sitter.rb +11 -0
- data/lib/tree-sitter/version.rb +3 -0
- data/test/test_helper.rb +9 -0
- data/test/tree-sitter/fixtures/arithmetic/grammar.json +67 -0
- data/test/tree-sitter/fixtures/ruby/grammar.json +4803 -0
- data/test/tree-sitter/test_basic.rb +7 -0
- data/test/tree-sitter/test_document.rb +7 -0
- data/test/tree-sitter/test_grammar.rb +34 -0
- data/tree-sitter.gemspec +33 -0
- metadata +2018 -0
|
@@ -0,0 +1,281 @@
|
|
|
1
|
+
## 1.7.2 (2015-04-22)
|
|
2
|
+
|
|
3
|
+
* reduce configure time overhead.
|
|
4
|
+
* fix bug with dependency checking when using Xcode.
|
|
5
|
+
* remove obsolete code required for CMake versions older than 2.8.12.
|
|
6
|
+
* streamline debugging output.
|
|
7
|
+
|
|
8
|
+
## 1.7.1 (2015-04-06)
|
|
9
|
+
|
|
10
|
+
* fix problem with CMake's automatic Qt processing for generated unity targets.
|
|
11
|
+
* added a section on common pitfalls when using cotire to the manual.
|
|
12
|
+
* remove obsolete code required for CMake versions older than 2.8.12.
|
|
13
|
+
* streamline debugging output.
|
|
14
|
+
* activate select CMake policies.
|
|
15
|
+
|
|
16
|
+
## 1.7.0 (2015-03-29)
|
|
17
|
+
|
|
18
|
+
* fix CMake 3.2 compatibility issues.
|
|
19
|
+
* cotire now requires CMake 2.8.12 or newer.
|
|
20
|
+
* copy `IMPORT_PREFIX` and `IMPORT_SUFFIX` target properties for unity targets (thanks peterhuene).
|
|
21
|
+
* new property `COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH` allows for organizing includes
|
|
22
|
+
added to the prefix header by priority (thanks ArnaudD-FR).
|
|
23
|
+
* for Visual Studio C++, increase static precompiled header memory allocation.
|
|
24
|
+
* the default strategy for setting up a unity target's linked libraries is now `COPY_UNITY`.
|
|
25
|
+
* for Qt projects, fix problem with handling of `AUTOMOC` in generated unity target.
|
|
26
|
+
* fix problem with generating the cotire intermediate directory.
|
|
27
|
+
* documentation updates.
|
|
28
|
+
|
|
29
|
+
## 1.6.9 (2015-01-18)
|
|
30
|
+
|
|
31
|
+
* fix bug with parsing of localized MSVC `/showIncludes` output.
|
|
32
|
+
|
|
33
|
+
## 1.6.8 (2014-12-28)
|
|
34
|
+
|
|
35
|
+
* fix bug with generation of unity source file segments for parallel builds.
|
|
36
|
+
|
|
37
|
+
## 1.6.7 (2014-12-21)
|
|
38
|
+
|
|
39
|
+
* fix CMake 3.1 compatibility issues.
|
|
40
|
+
* fix ccache 3.2 compatibility issues.
|
|
41
|
+
* handle `COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES` correctly for mixed-language targets.
|
|
42
|
+
* correctly compute absolute paths of generated source files added to the unity source file.
|
|
43
|
+
* fix bug with checking unity source and prefix header dependencies under Xcode.
|
|
44
|
+
* fix bug with handling of unity source file dependencies.
|
|
45
|
+
* move code to determine build configurations to function of its own.
|
|
46
|
+
* documentation updates.
|
|
47
|
+
|
|
48
|
+
## 1.6.6 (2014-09-21)
|
|
49
|
+
|
|
50
|
+
* fix GCC issue with prefix header generation when source files are missing.
|
|
51
|
+
* fix bug where some target properties were not properly propagated to the generated unity target.
|
|
52
|
+
* use `target_link_libraries` to set up the unity target link libraries.
|
|
53
|
+
* add Qt4 and Qt5 examples to the `Patches` directory.
|
|
54
|
+
* documentation updates.
|
|
55
|
+
|
|
56
|
+
## 1.6.5 (2014-08-26)
|
|
57
|
+
|
|
58
|
+
* correctly handle generator expressions used in compile definitions, compile flags and include
|
|
59
|
+
directories (requires CMake 2.8.12 or newer).
|
|
60
|
+
* fix `-isystem` includes being incorrectly passed to `execute_process` (thanks nickhutchinson).
|
|
61
|
+
* make some error messages more verbose.
|
|
62
|
+
|
|
63
|
+
## 1.6.4 (2014-07-14)
|
|
64
|
+
|
|
65
|
+
* fix CMake 3.0 compatibility issues.
|
|
66
|
+
* preserve system flag for includes when generating PCH (thanks gjasny).
|
|
67
|
+
* fix bug with setting up `EXPORTS` symbol for shared libraries.
|
|
68
|
+
|
|
69
|
+
## 1.6.3 (2014-06-11)
|
|
70
|
+
|
|
71
|
+
* correctly handle usage requirements for transitive link targets.
|
|
72
|
+
* use indirect inclusion for prefix header when using generator Xcode.
|
|
73
|
+
|
|
74
|
+
## 1.6.2 (2014-06-09)
|
|
75
|
+
|
|
76
|
+
* don't use `-w` flag for pre-compiling the prefix header, because it has unwanted side effects.
|
|
77
|
+
* correctly handle linked targets' `INTERFACE_COMPILE_OPTIONS`, `INTERFACE_INCLUDE_DIRECTORIES`
|
|
78
|
+
and `INTERFACE_COMPILE_DEFINITIONS` properties upon pre-compiling and prefix header generation.
|
|
79
|
+
* For Clang and GCC, pre-compile prefix header through indirect inclusion via a prefix source file,
|
|
80
|
+
to make both compilers honor the `system_header` pragma in the prefix header correctly.
|
|
81
|
+
* fix ccache incompatibility.
|
|
82
|
+
|
|
83
|
+
## 1.6.1 (2014-04-20)
|
|
84
|
+
|
|
85
|
+
* fixed bug where precompiled headers did not work with Clang (thanks to nh2 for reporting).
|
|
86
|
+
* when using ccache, require that environment variable `CCACHE_SLOPPINESS` is set to `time_macros`.
|
|
87
|
+
|
|
88
|
+
## 1.6.0 (2014-03-16)
|
|
89
|
+
|
|
90
|
+
* suppress compiler warnings from precompiled headers.
|
|
91
|
+
* fix Clang compatibility issue with prefix header generation.
|
|
92
|
+
* use file extension `.pch` for precompiled headers generated with Clang.
|
|
93
|
+
* manual updates.
|
|
94
|
+
|
|
95
|
+
## 1.5.2 (2014-01-17)
|
|
96
|
+
|
|
97
|
+
* honor framework includes under OS X correctly.
|
|
98
|
+
* fix handling of OS X specific variables `CMAKE_OSX_SYSROOT` and `CMAKE_OSX_DEPLOYMENT_TARGET`.
|
|
99
|
+
* add new examples to the `Patches` directory.
|
|
100
|
+
|
|
101
|
+
## 1.5.1 (2013-11-12)
|
|
102
|
+
|
|
103
|
+
* fixed string quoting bugs.
|
|
104
|
+
|
|
105
|
+
## 1.5.0 (2013-10-13)
|
|
106
|
+
|
|
107
|
+
* CMake 2.8.12 compatibility fixes.
|
|
108
|
+
* Upon generation of a unity target, cotire can now be configured to automatically copy all the
|
|
109
|
+
linked libraries and targets from the original target. See the section on the new target property
|
|
110
|
+
`COTIRE_UNITY_LINK_LIBRARIES_INIT` in the cotire manual.
|
|
111
|
+
* fixed bug with copying target properties to generated unity target.
|
|
112
|
+
* cotire manual updates.
|
|
113
|
+
* add new examples to the `Patches` directory.
|
|
114
|
+
* fix typos.
|
|
115
|
+
|
|
116
|
+
## 1.4.3 (2013-09-28)
|
|
117
|
+
|
|
118
|
+
* fixed bug with generation of unity source file when `COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES` is
|
|
119
|
+
set to 0.
|
|
120
|
+
|
|
121
|
+
## 1.4.2 (2013-08-24)
|
|
122
|
+
|
|
123
|
+
* CMake 2.8.11 compatibility fixes.
|
|
124
|
+
* always force the inclusion of a user provided prefix header, even if the target
|
|
125
|
+
contains too few sources to enable the use of a precompiled header.
|
|
126
|
+
|
|
127
|
+
## 1.4.1 (2013-06-08)
|
|
128
|
+
|
|
129
|
+
* fixed bug with determination of compiler version.
|
|
130
|
+
* fixed bug with generation of unity source when target source files are used for multiple targets.
|
|
131
|
+
* fixed bug with multi-core optimized prefix header generation.
|
|
132
|
+
|
|
133
|
+
## 1.4.0 (2013-03-11)
|
|
134
|
+
|
|
135
|
+
* one year anniversary release.
|
|
136
|
+
* add support for multi-core optimized unity builds for some CMake generators.
|
|
137
|
+
* add support for multi-core optimized prefix header generation.
|
|
138
|
+
* add more examples to cotire manual.
|
|
139
|
+
|
|
140
|
+
## 1.3.6 (2013-03-06)
|
|
141
|
+
|
|
142
|
+
* fix bug with prefix header initialization for generator Xcode.
|
|
143
|
+
* print cotire version upon inclusion.
|
|
144
|
+
|
|
145
|
+
## 1.3.5 (2013-03-01)
|
|
146
|
+
|
|
147
|
+
* fix typos in function names and property descriptions.
|
|
148
|
+
|
|
149
|
+
## 1.3.4 (2013-02-07)
|
|
150
|
+
|
|
151
|
+
* fixed bug with computing to output directory of the generated unity target (thanks shaunew).
|
|
152
|
+
* fixed wrong variable reference in debugging output (thanks shaunew).
|
|
153
|
+
|
|
154
|
+
## 1.3.3 (2013-02-03)
|
|
155
|
+
|
|
156
|
+
* fixed bug with handling of policy CMP0018 relating to target property `POSITION_INDEPENDENT_CODE`.
|
|
157
|
+
* fixed warnings relating to uninitialized variables.
|
|
158
|
+
* Intel XE 2013 Update 2 compatibility fixes.
|
|
159
|
+
|
|
160
|
+
## 1.3.2 (2013-02-02)
|
|
161
|
+
|
|
162
|
+
* fixed missing curly brace (thanks shaunew).
|
|
163
|
+
|
|
164
|
+
## 1.3.1 (2013-01-29)
|
|
165
|
+
|
|
166
|
+
* fix bug with filtering of compile options.
|
|
167
|
+
|
|
168
|
+
## 1.3.0 (2013-01-09)
|
|
169
|
+
|
|
170
|
+
* add support for Intel C and C++ compilers.
|
|
171
|
+
* CMake 2.8.10 compatibility fixes.
|
|
172
|
+
* properly clean up generated cotire log files upon invoking `clean` target.
|
|
173
|
+
* documentation updates.
|
|
174
|
+
|
|
175
|
+
## 1.2.0 (2012-11-01)
|
|
176
|
+
|
|
177
|
+
* add support for manually maintained prefix header and unity source files.
|
|
178
|
+
* the target property `COTIRE_<LANG>_PREFIX_HEADER_INIT` can be set to a user provided prefix
|
|
179
|
+
header file to be used instead of the automatically generated one (e.g., `stdafx.h`).
|
|
180
|
+
* the new target property `COTIRE_<LANG>_UNITY_SOURCE_INIT` can be set to a user provided unity
|
|
181
|
+
source file to be used instead of the automatically generated one.
|
|
182
|
+
* the target property `COTIRE_UNITY_TARGET_NAME` is no longer read-only. It can be set to the
|
|
183
|
+
desired name of the unity target that will be added by cotire.
|
|
184
|
+
* add parameters `SOURCE_DIR` and `BINARY_DIR` to function `cotire` to allow for explicitly
|
|
185
|
+
specifying a target's source and binary directory, if target to be cotired has been added in a
|
|
186
|
+
different directory.
|
|
187
|
+
|
|
188
|
+
## 1.1.8 (2012-10-27)
|
|
189
|
+
|
|
190
|
+
* when using MSVC, apply option `/bigobj` to compilation of generated unity files.
|
|
191
|
+
|
|
192
|
+
## 1.1.7 (2012-10-26)
|
|
193
|
+
|
|
194
|
+
* cope with double slash characters in scanned include paths.
|
|
195
|
+
|
|
196
|
+
## 1.1.6 (2012-09-22)
|
|
197
|
+
|
|
198
|
+
* check result code upon scanning includes.
|
|
199
|
+
* always add a `clean_cotire` target to easily clean up cotire generated files.
|
|
200
|
+
* add section on `extern "C"` linkage issues to manual.
|
|
201
|
+
|
|
202
|
+
## 1.1.5 (2012-08-17)
|
|
203
|
+
|
|
204
|
+
* new cache variable `COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS` can be set to globally exclude
|
|
205
|
+
sources with the listed file extensions from the generated unity source.
|
|
206
|
+
* fix check for multi-architecture builds under OS X.
|
|
207
|
+
|
|
208
|
+
## 1.1.4 (2012-08-15)
|
|
209
|
+
|
|
210
|
+
* prevent redundant re-generation of the unity source, prefix header and precompiled header files
|
|
211
|
+
(this makes cotire more applicable to C++ projects that use Qt).
|
|
212
|
+
|
|
213
|
+
## 1.1.3 (2012-08-12)
|
|
214
|
+
|
|
215
|
+
* fix out of range index operation upon building list of target include directories.
|
|
216
|
+
* honor target properties `POSITION_INDEPENDENT_CODE` and `NO_SONAME` introduced with CMake 2.8.9.
|
|
217
|
+
* make selection of target source files for requested target language more careful.
|
|
218
|
+
* prevent modification of the CMake policy stack upon CMake version check.
|
|
219
|
+
|
|
220
|
+
## 1.1.2 (2012-05-06)
|
|
221
|
+
|
|
222
|
+
* make handling of include directories more robust against invalid paths.
|
|
223
|
+
|
|
224
|
+
## 1.1.1 (2012-04-20)
|
|
225
|
+
|
|
226
|
+
* fixed bug with generation of unity targets for `WIN32_EXECUTABLE` targets.
|
|
227
|
+
* fixed bug with parsing of localized MSVC `/showIncludes` output.
|
|
228
|
+
|
|
229
|
+
## 1.1.0 (2012-04-19)
|
|
230
|
+
|
|
231
|
+
* tested with CMake 2.8.8.
|
|
232
|
+
* added example to manual that shows how to apply cotire to CMake object library targets.
|
|
233
|
+
* fixed multiple bugs with handling of CMake single build type and multiple configuration builds.
|
|
234
|
+
* added more robust parsing of localized MSVC `/showIncludes` output.
|
|
235
|
+
|
|
236
|
+
## 1.0.9 (2012-04-09)
|
|
237
|
+
|
|
238
|
+
* add support for compiler wrappers like ccache.
|
|
239
|
+
* under OS X, apply `CMAKE_OSX_SYSROOT` to prefix header include and ignore paths.
|
|
240
|
+
|
|
241
|
+
## 1.0.8 (2012-04-05)
|
|
242
|
+
|
|
243
|
+
* require CMake 2.8.6 since we are using `set_property` option `APPEND_STRING`.
|
|
244
|
+
|
|
245
|
+
## 1.0.7 (2012-04-02)
|
|
246
|
+
|
|
247
|
+
* add support for Ninja generator introduced in CMake 2.8.8.
|
|
248
|
+
* fix bug with initialization of variable `COTIRE_VERBOSE`.
|
|
249
|
+
|
|
250
|
+
## 1.0.6 (2012-04-01)
|
|
251
|
+
|
|
252
|
+
* correctly handle builds where both `CMAKE_BUILD_TYPE` and `CMAKE_CONFIGURATION_TYPES` are set.
|
|
253
|
+
|
|
254
|
+
## 1.0.5 (2012-03-26)
|
|
255
|
+
|
|
256
|
+
* fix Visual Studio C++ 2010 compilation of example project.
|
|
257
|
+
* enhance heuristic for #include_next directive detection.
|
|
258
|
+
* fix llvm-3.0.src.patch for GCC 4.6 compilation.
|
|
259
|
+
|
|
260
|
+
## 1.0.4 (2012-03-24)
|
|
261
|
+
|
|
262
|
+
* honor target property INCLUDE_DIRECTORIES introduced in CMake 2.8.8.
|
|
263
|
+
|
|
264
|
+
## 1.0.3 (2012-03-23)
|
|
265
|
+
|
|
266
|
+
* handle OBJECT_LIBRARY targets introduced in CMake 2.8.8.
|
|
267
|
+
* use predefined compiler version variable, if available.
|
|
268
|
+
|
|
269
|
+
## 1.0.2 (2012-03-16)
|
|
270
|
+
|
|
271
|
+
* fix Xcode 4.3 compatibility.
|
|
272
|
+
* Cotire manual corrections.
|
|
273
|
+
|
|
274
|
+
## 1.0.1 (2012-03-15)
|
|
275
|
+
|
|
276
|
+
* Cotire manual corrections.
|
|
277
|
+
* Add prefix header to the generated unity build target.
|
|
278
|
+
|
|
279
|
+
## 1.0.0 (2012-03-11)
|
|
280
|
+
|
|
281
|
+
* First release.
|
|
@@ -0,0 +1,780 @@
|
|
|
1
|
+
cotire manual
|
|
2
|
+
=============
|
|
3
|
+
|
|
4
|
+
Cotire (compile time reducer) is a CMake module that speeds up the build process of CMake based
|
|
5
|
+
build systems by fully automating techniques as [precompiled header][pch] usage and
|
|
6
|
+
[single compilation unit][scu] builds for C and C++.
|
|
7
|
+
|
|
8
|
+
motivation
|
|
9
|
+
----------
|
|
10
|
+
|
|
11
|
+
Cotire was born out of a dissatisfaction with the existing CMake solutions for adding
|
|
12
|
+
[precompiled header][1260] support and [unity build][kde4macros] support to CMake based build
|
|
13
|
+
systems. The design of cotire tries to adhere to the following principles:
|
|
14
|
+
|
|
15
|
+
#### as automatic as possible
|
|
16
|
+
|
|
17
|
+
[Precompiled header][pch] and [unity builds][scu] are good ideas in principle, but in reality
|
|
18
|
+
they do not work if the burden of maintaining the required additional source files (a
|
|
19
|
+
[prefix header][pfh] and a unity source file) is put on the developer. A modern build system
|
|
20
|
+
like CMake provides enough context information to have the build system generate and update
|
|
21
|
+
these files automatically.
|
|
22
|
+
|
|
23
|
+
#### non-intrusive
|
|
24
|
+
|
|
25
|
+
The configuration of precompiled headers usage and single computation unit builds belongs to the
|
|
26
|
+
build system and not in the source code. Nobody wants to litter one's source files with `hdrstop`
|
|
27
|
+
pragmas or be forced to add an include directive to every file. Source code should build properly
|
|
28
|
+
when a precompiled header isn't used and should build faster when a precompiled header is used.
|
|
29
|
+
|
|
30
|
+
#### minimal interface
|
|
31
|
+
|
|
32
|
+
Maintaining a build system over time is enough work and the CMake language may often get in your
|
|
33
|
+
way. Thus the solution should only add few public CMake functions. It should be easy to integrate
|
|
34
|
+
it into an existing CMake based build system and it should be just as easy to remove it again.
|
|
35
|
+
|
|
36
|
+
#### lazy file creation
|
|
37
|
+
|
|
38
|
+
The additional source files needed for precompiled header support and unity build support should
|
|
39
|
+
only be created when they are required for the compilation of a target. Thus the solution should
|
|
40
|
+
not create these files upon configuring the project, but should set up custom build commands for
|
|
41
|
+
the creation of these files that only kick in when the files are required to exist by the build
|
|
42
|
+
process.
|
|
43
|
+
|
|
44
|
+
#### cross-platform
|
|
45
|
+
|
|
46
|
+
C/C++ Compilers and IDEs on different platforms vary widely in how the implement precompiled
|
|
47
|
+
header support. The solution should hide these implementation details and present a uniform
|
|
48
|
+
interface to the developer on all supported platforms.
|
|
49
|
+
|
|
50
|
+
cotire basic usage
|
|
51
|
+
------------------
|
|
52
|
+
|
|
53
|
+
Cotire consists of a single CMake module file, which can be easily added to an existing CMake
|
|
54
|
+
project.
|
|
55
|
+
|
|
56
|
+
The file `CMake/cotire.cmake` needs to be copied to the module directory of a CMake project. In the
|
|
57
|
+
top-level `CMakeList.txt` file, the module directory needs to be added to the CMake module search
|
|
58
|
+
path:
|
|
59
|
+
|
|
60
|
+
set (CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/CMake")
|
|
61
|
+
|
|
62
|
+
To use cotire in a CMake project, one adds the following include directive to the beginning of the
|
|
63
|
+
top-level `CMakeList.txt`:
|
|
64
|
+
|
|
65
|
+
include(cotire)
|
|
66
|
+
|
|
67
|
+
To speed the build process of a CMake library or executable target, the `cotire` function is
|
|
68
|
+
applied to a CMake target. From the example project that ships with cotire:
|
|
69
|
+
|
|
70
|
+
add_executable(example main.cpp example.cpp log.cpp log.h example.h)
|
|
71
|
+
...
|
|
72
|
+
cotire(example)
|
|
73
|
+
|
|
74
|
+
Cotire looks at the properties of the target provided by CMake (e.g., target type, source files,
|
|
75
|
+
compile flags, preprocessor defines, include directories, ...) and modifies the target's build
|
|
76
|
+
process in the following way:
|
|
77
|
+
|
|
78
|
+
1. cotire adds a custom build rule to produce a unity source file from the target's sources.
|
|
79
|
+
2. cotire adds a custom build rule to produce a prefix header file by tracking the header files
|
|
80
|
+
included by the target's sources.
|
|
81
|
+
3. cotire adds a custom build rule to produce a precompiled header from the prefix header.
|
|
82
|
+
4. cotire modifies the target's compile flags to make use of the generated precompiled header.
|
|
83
|
+
5. cotire adds a couple of new targets.
|
|
84
|
+
|
|
85
|
+
For makefile based build systems, running `make help` in the terminal reveals the new targets:
|
|
86
|
+
|
|
87
|
+
$ make help
|
|
88
|
+
...
|
|
89
|
+
... all_pch
|
|
90
|
+
... all_unity
|
|
91
|
+
... clean_cotire
|
|
92
|
+
... example
|
|
93
|
+
... example_pch
|
|
94
|
+
... example_unity
|
|
95
|
+
|
|
96
|
+
The `example_pch` target triggers the compilation of the precompiled header and as a side effect
|
|
97
|
+
the generation of the unity source and the prefix header. The target `clean_cotire` cleans up all
|
|
98
|
+
files generated by cotire. The `example_unity` target produces the same output as the original
|
|
99
|
+
`example` target, but does so by performing a unity build. The `all_pch` and `all_unity` serve as
|
|
100
|
+
pool targets for all cotired project targets.
|
|
101
|
+
|
|
102
|
+
By default, the `example_unity` target inherits all build settings from the original target
|
|
103
|
+
`example` including linked libraries and target dependencies.
|
|
104
|
+
|
|
105
|
+
cotire generated files
|
|
106
|
+
----------------------
|
|
107
|
+
|
|
108
|
+
For a target that has been cotired, three files will be generated as part of the build process:
|
|
109
|
+
|
|
110
|
+
### the unity source
|
|
111
|
+
|
|
112
|
+
The unity source file is generated from the target by querying the target's `SOURCES` property.
|
|
113
|
+
It consists of preprocessor include directives for each of the target source files. The files
|
|
114
|
+
are included in the same order that is used in the CMake `add_executable` or `add_library` call.
|
|
115
|
+
Header files are omitted.
|
|
116
|
+
|
|
117
|
+
This is a unity source generated for the example project under OS X:
|
|
118
|
+
|
|
119
|
+
#ifdef __cplusplus
|
|
120
|
+
#include "/Users/sakra/Documents/cotire/src/main.cpp"
|
|
121
|
+
#include "/Users/sakra/Documents/cotire/src/example.cpp"
|
|
122
|
+
#include "/Users/sakra/Documents/cotire/src/log.cpp"
|
|
123
|
+
#endif
|
|
124
|
+
|
|
125
|
+
The unity source file uses absolute paths to include the target's source file. The file is not
|
|
126
|
+
intended to be portable across different build folders or machines. It is an intermediate file
|
|
127
|
+
tied to the build folder that is automatically recreated by the build system if it is missing.
|
|
128
|
+
|
|
129
|
+
For multi-core machines cotire can be configured to generate multiple unity file segments that
|
|
130
|
+
can be built in parallel by the chosen CMake generator (see below).
|
|
131
|
+
|
|
132
|
+
### the prefix header
|
|
133
|
+
|
|
134
|
+
The prefix header is produced from the unity source file by running the unity file through the
|
|
135
|
+
preprocessor and keeping track of each header file used (this is done by using option `-H` with
|
|
136
|
+
GCC / Clang and `/showIncludes` with Visual Studio C++). The path of each used header file is
|
|
137
|
+
compared against an exclude directory list and an include directory list to decide if the header
|
|
138
|
+
file should be added to the prefix header.
|
|
139
|
+
|
|
140
|
+
By default the include directory list is empty and the exclude directory list is initialized to
|
|
141
|
+
`"${CMAKE_SOURCE_DIR};${CMAKE_BINARY_DIR}"`. This default setting guarantees that project headers
|
|
142
|
+
which are likely to be changed frequently are not added to the prefix header.
|
|
143
|
+
|
|
144
|
+
Upon generation of the prefix header cotire makes sure that target compile options, include path
|
|
145
|
+
settings and preprocessor defines (e.g., `NDEBUG`) that affect the outcome of the preprocessor
|
|
146
|
+
are correctly set up.
|
|
147
|
+
|
|
148
|
+
Generating the prefix header from the unity source is much faster than running each individual
|
|
149
|
+
target source file through the preprocessor, because the coalesced unity source will make the
|
|
150
|
+
preprocessor process most header files only once.
|
|
151
|
+
|
|
152
|
+
This is a prefix header produced for the example project with Visual Studio 2013 under Windows 7:
|
|
153
|
+
|
|
154
|
+
#pragma warning(push, 0)
|
|
155
|
+
#ifdef __cplusplus
|
|
156
|
+
#include "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\string"
|
|
157
|
+
#include "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\algorithm"
|
|
158
|
+
#include "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\include\iostream"
|
|
159
|
+
#endif
|
|
160
|
+
#pragma warning(pop)
|
|
161
|
+
|
|
162
|
+
Generating the prefix file under Ubuntu 12.04 with GCC 4.6 yields the following result:
|
|
163
|
+
|
|
164
|
+
#pragma GCC system_header
|
|
165
|
+
#ifdef __cplusplus
|
|
166
|
+
#include "/usr/include/c++/4.6/string"
|
|
167
|
+
#include "/usr/include/c++/4.6/algorithm"
|
|
168
|
+
#include "/usr/include/c++/4.6/iterator"
|
|
169
|
+
#include "/usr/include/c++/4.6/iostream"
|
|
170
|
+
#endif
|
|
171
|
+
|
|
172
|
+
Using Xcode 5.1 under OS X 10.9, this is the resulting prefix header:
|
|
173
|
+
|
|
174
|
+
#pragma clang system_header
|
|
175
|
+
#ifdef __cplusplus
|
|
176
|
+
#include "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1/string"
|
|
177
|
+
#include "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1/iostream"
|
|
178
|
+
#endif
|
|
179
|
+
|
|
180
|
+
Besides include directives, cotire also adds compiler specific pragmas to the generated prefix
|
|
181
|
+
header to suppress compiler warnings upon inclusion.
|
|
182
|
+
|
|
183
|
+
Cotire attempts to produce a minimal list of header files by omitting header files indirectly
|
|
184
|
+
included by a header that is already part of the prefix header. Header files with nonstandard
|
|
185
|
+
file extensions like `.inl`, `.inc` of `.ipp` are omitted by default.
|
|
186
|
+
|
|
187
|
+
The generated prefix file includes the selected header files by their absolute paths. This speeds
|
|
188
|
+
up the precompiling of the prefix header because the compiler does not have to search for header
|
|
189
|
+
files in include directories again.
|
|
190
|
+
|
|
191
|
+
The prefix header is tailored to the CMake target that it is generated for. It is tied to the
|
|
192
|
+
compiler environment of the local machine and is not portable across different compilers or
|
|
193
|
+
machines. It is automatically recreated by the build system if it goes missing.
|
|
194
|
+
|
|
195
|
+
The generated prefix header can be applied to a different target added in the same source directory
|
|
196
|
+
(see below).
|
|
197
|
+
|
|
198
|
+
Optionally, cotire will also create a prefix source file that consists of a single include directive
|
|
199
|
+
for the prefix header. This file is needed for pre-compiling the prefix header with Clang or GCC
|
|
200
|
+
to make both compilers handle the `system_header` pragma correctly.
|
|
201
|
+
|
|
202
|
+
### the precompiled header
|
|
203
|
+
|
|
204
|
+
The precompiled header is produced from the generated prefix header by using the proprietary
|
|
205
|
+
precompiling mechanism depending on the compiler used. For GCC and Clang cotire sets up a custom
|
|
206
|
+
build rule and generates the precompiled header as described in the documentation for
|
|
207
|
+
[GCC][gcc_pch] and [Clang][clang_pch]. Cotire then modifies the `COMPILE_FLAGS` property of the
|
|
208
|
+
target to force the inclusion of the prefix header.
|
|
209
|
+
|
|
210
|
+
Visual Studio C++ and Intel C++ use a [different approach][msvc_pch] to pre-compiling. Both
|
|
211
|
+
compilers require a host source file to generate the precompiled header as a side effect of
|
|
212
|
+
producing an object file. Cotire modifies the `COMPILE_FLAGS` of the first target source file to
|
|
213
|
+
[generate][msvc_pch_create] the precompiled header and then modifies the `COMPILE_FLAGS` of the
|
|
214
|
+
remaining target source files to [include][msvc_pch_use] the generated precompiled header.
|
|
215
|
+
|
|
216
|
+
For Xcode projects generated with CMake, cotire completely hands off the pre-compilation of
|
|
217
|
+
the prefix header and the inclusion of the precompiled header to the IDE. Cotire attaches a
|
|
218
|
+
pre-build action to the target which generates the unity source file and the prefix header.
|
|
219
|
+
Cotire then modifies Xcode attributes of the generated Xcode project to have Xcode precompile the
|
|
220
|
+
the generated prefix header with the Xcode build steps `ProcessPCH` for C sources and
|
|
221
|
+
`ProcessPCH++` for C++ sources.
|
|
222
|
+
|
|
223
|
+
For precompiled headers creation flags must match use flags exactly. Cotire uses the same flags,
|
|
224
|
+
include directories and preprocessor defines that are used for the compilation of source files
|
|
225
|
+
for the generation of the precompiled header. Thus the resulting precompiled header binary is only
|
|
226
|
+
usable for the target and cannot be re-used for a different CMake target.
|
|
227
|
+
|
|
228
|
+
cotire advanced usage
|
|
229
|
+
---------------------
|
|
230
|
+
|
|
231
|
+
### applying cotire to multiple targets at the same time
|
|
232
|
+
|
|
233
|
+
The `cotire` function can be applied to multiple targets added in the same source directory in one
|
|
234
|
+
call:
|
|
235
|
+
|
|
236
|
+
add_library(libA STATIC ...)
|
|
237
|
+
add_library(libB SHARED ...)
|
|
238
|
+
add_executable(example ...)
|
|
239
|
+
...
|
|
240
|
+
cotire(example libA libB)
|
|
241
|
+
|
|
242
|
+
### mixed-language targets
|
|
243
|
+
|
|
244
|
+
Cotire is able to speed up the build process of mixed language targets, consisting of both C and
|
|
245
|
+
C++ sources. It generates a separate set of unity source files, prefix headers and precompiled
|
|
246
|
+
headers for both languages and modifies the `COMPILE_FLAGS` of each target source file to include
|
|
247
|
+
the correct precompiled header depending on the compilation language of the source file.
|
|
248
|
+
|
|
249
|
+
### obtaining the names of the generated files and targets
|
|
250
|
+
|
|
251
|
+
For a cotired target the target properties `COTIRE_<LANG>_UNITY_SOURCE`,
|
|
252
|
+
`COTIRE_<LANG>_PREFIX_HEADER`, `COTIRE_<LANG>_PRECOMPILED_HEADER` will be set to the paths of the
|
|
253
|
+
generated files (`<LANG>` can be set to `CXX` or `C`). The target property
|
|
254
|
+
`COTIRE_UNITY_TARGET_NAME` will be set to the name of the generated unity target:
|
|
255
|
+
|
|
256
|
+
cotire(example)
|
|
257
|
+
...
|
|
258
|
+
get_target_property(_unitySource example COTIRE_CXX_UNITY_SOURCE)
|
|
259
|
+
get_target_property(_prefixHeader example COTIRE_CXX_PREFIX_HEADER)
|
|
260
|
+
get_target_property(_precompiledHeader example COTIRE_CXX_PRECOMPILED_HEADER)
|
|
261
|
+
|
|
262
|
+
If a source file's `COMPILE_FLAGS` are modified by cotire, it sets the source file property
|
|
263
|
+
`COTIRE_TARGET` to the name of the target, that the source file's build command has been
|
|
264
|
+
altered for:
|
|
265
|
+
|
|
266
|
+
cotire(example)
|
|
267
|
+
...
|
|
268
|
+
get_source_file_property(_cotireTargetName "example.cpp" COTIRE_TARGET)
|
|
269
|
+
if (_cotireTargetName)
|
|
270
|
+
message(STATUS "example.cpp has been cotired for target ${_cotireTargetName}")
|
|
271
|
+
endif()
|
|
272
|
+
|
|
273
|
+
### changing the name of the generated unity build target
|
|
274
|
+
|
|
275
|
+
By default cotire uses the name of the the original target with the suffix `_unity` appended
|
|
276
|
+
for the name of the generated unity build target. To create the unity build target under a
|
|
277
|
+
different name, set the `COTIRE_UNITY_TARGET_NAME` property:
|
|
278
|
+
|
|
279
|
+
add_executable(example_template main.cpp example.cpp log.cpp log.h example.h)
|
|
280
|
+
set_target_properties(example_template PROPERTIES COTIRE_UNITY_TARGET_NAME "example")
|
|
281
|
+
...
|
|
282
|
+
cotire(example_template)
|
|
283
|
+
|
|
284
|
+
Invoking the `example` target will then run the unity build.
|
|
285
|
+
|
|
286
|
+
### restricting cotire to certain build configurations
|
|
287
|
+
|
|
288
|
+
To restrict the cotire related modifications to the build process to certain build configurations,
|
|
289
|
+
the `CONFIGURATIONS` parameter can be added to the `cotire` call.
|
|
290
|
+
|
|
291
|
+
cotire(example CONFIGURATIONS Release MinSizeRel)
|
|
292
|
+
|
|
293
|
+
For single build type builds the selected configuration will be checked at configure time, for
|
|
294
|
+
multi-configuration builds the check will be done at build time.
|
|
295
|
+
|
|
296
|
+
It is recommended to have at least one build configuration that does not make use of cotire to
|
|
297
|
+
ensure that the project builds properly without cotire.
|
|
298
|
+
|
|
299
|
+
### disabling precompiled headers and unity builds
|
|
300
|
+
|
|
301
|
+
If the target's build process should not be modified to make us of the generated precompiled
|
|
302
|
+
header, the target property `COTIRE_ENABLE_PRECOMPILED_HEADER` can be set to `FALSE`:
|
|
303
|
+
|
|
304
|
+
set_target_properties(example PROPERTIES COTIRE_ENABLE_PRECOMPILED_HEADER FALSE)
|
|
305
|
+
cotire(example)
|
|
306
|
+
|
|
307
|
+
If a unity build target should not be added by cotire, the target property
|
|
308
|
+
`COTIRE_ADD_UNITY_BUILD` can be set to `FALSE`:
|
|
309
|
+
|
|
310
|
+
set_target_properties(example PROPERTIES COTIRE_ADD_UNITY_BUILD FALSE)
|
|
311
|
+
cotire(example)
|
|
312
|
+
|
|
313
|
+
The property `COTIRE_ADD_UNITY_BUILD` only affects the addition of the unity build target. Custom
|
|
314
|
+
build rules for the generation of the unity source file will always be set up, because the
|
|
315
|
+
unity source file is needed for the generation of the prefix header.
|
|
316
|
+
|
|
317
|
+
Both properties default to `TRUE`. If both are set to `FALSE`, cotire will only set up custom build
|
|
318
|
+
rules for the generation of the unity source and the prefix header.
|
|
319
|
+
|
|
320
|
+
The properties `COTIRE_ENABLE_PRECOMPILED_HEADER` and `COTIRE_ADD_UNITY_BUILD` can also be set on
|
|
321
|
+
directories. A target inherits the property value from its enclosing directory.
|
|
322
|
+
|
|
323
|
+
### disabling precompiled headers for small targets
|
|
324
|
+
|
|
325
|
+
The cache variable `COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES` can be set to the minimum number of
|
|
326
|
+
source files required to enable the use of a precompiled header. It defaults to 3. To override the
|
|
327
|
+
default, run `cmake` with the following options:
|
|
328
|
+
|
|
329
|
+
$ cmake -D COTIRE_MINIMUM_NUMBER_OF_TARGET_SOURCES=5 <path-to-source>
|
|
330
|
+
|
|
331
|
+
### using a manually maintained prefix header instead of the automatically generated one
|
|
332
|
+
|
|
333
|
+
cotire can be configured to use an existing manually maintained prefix header (e.g., Visual Studio
|
|
334
|
+
projects often use a prefix header named `stdafx.h`) instead of the automatically generated one.
|
|
335
|
+
Set the target property `COTIRE_CXX_PREFIX_HEADER_INIT` to the path of the existing prefix header
|
|
336
|
+
file. The path is interpreted relative to the target source directory:
|
|
337
|
+
|
|
338
|
+
set_target_properties(example PROPERTIES COTIRE_CXX_PREFIX_HEADER_INIT "stdafx.h")
|
|
339
|
+
cotire(example)
|
|
340
|
+
|
|
341
|
+
If the prefix header `stdafx.h` needs an accompanying source file (e.g., `stdafx.cpp`) in order
|
|
342
|
+
to be pre-compiled properly, that source file needs to be the first one on the list of source
|
|
343
|
+
files in the target's `add_executable` or `add_library` call.
|
|
344
|
+
|
|
345
|
+
The property `COTIRE_CXX_PREFIX_HEADER_INIT` can also be set to a list of header files which will
|
|
346
|
+
then make up the contents of the generated prefix header.
|
|
347
|
+
|
|
348
|
+
A manually maintained prefix header will always be applied to the corresponding target,
|
|
349
|
+
even if the target contains too few sources to enable the use of a precompiled header.
|
|
350
|
+
|
|
351
|
+
### using a generated prefix header for multiple targets
|
|
352
|
+
|
|
353
|
+
A prefix header that is generated for a cotired target can be applied to a different target
|
|
354
|
+
added in the same source directory:
|
|
355
|
+
|
|
356
|
+
cotire(example)
|
|
357
|
+
get_target_property(_prefixHeader example COTIRE_CXX_PREFIX_HEADER)
|
|
358
|
+
...
|
|
359
|
+
set_target_properties(other_target PROPERTIES COTIRE_CXX_PREFIX_HEADER_INIT "${_prefixHeader}")
|
|
360
|
+
cotire(other_target)
|
|
361
|
+
|
|
362
|
+
The compilation of either target will trigger the generation of the prefix header.
|
|
363
|
+
|
|
364
|
+
### configuring the generation of the prefix header
|
|
365
|
+
|
|
366
|
+
There are multiple target properties which affect the generation of the prefix header:
|
|
367
|
+
|
|
368
|
+
* `COTIRE_PREFIX_HEADER_IGNORE_PATH` can be set to a semicolon separated list of directories. If a
|
|
369
|
+
header file is found in one of these directories or sub-directories, it will be excluded from the
|
|
370
|
+
generated prefix header.
|
|
371
|
+
|
|
372
|
+
* `COTIRE_PREFIX_HEADER_INCLUDE_PATH` can be set to a semicolon separated list of directories. If
|
|
373
|
+
a header file is included from one of these directories or sub-directories, it will be included
|
|
374
|
+
in the generated prefix header.
|
|
375
|
+
|
|
376
|
+
If a header file is matched by both `COTIRE_PREFIX_HEADER_IGNORE_PATH` and
|
|
377
|
+
`COTIRE_PREFIX_HEADER_INCLUDE_PATH`, the option which yields the closer relative path match wins.
|
|
378
|
+
For example, if third-party libraries are part of the source tree in a directory called `Libs`,
|
|
379
|
+
the following setting will make cotire select header files from the third-party directory, but
|
|
380
|
+
ignore other project related headers in `CMAKE_SOURCE_DIR`:
|
|
381
|
+
|
|
382
|
+
set_target_properties(example PROPERTIES
|
|
383
|
+
COTIRE_PREFIX_HEADER_IGNORE_PATH "${CMAKE_SOURCE_DIR}"
|
|
384
|
+
COTIRE_PREFIX_HEADER_INCLUDE_PATH "${CMAKE_SOURCE_DIR}/Libs")
|
|
385
|
+
|
|
386
|
+
The properties `COTIRE_PREFIX_HEADER_IGNORE_PATH` and `COTIRE_PREFIX_HEADER_INCLUDE_PATH` can
|
|
387
|
+
also be set on directories.
|
|
388
|
+
|
|
389
|
+
The following cache variables also affect the selection of prefix headers:
|
|
390
|
+
|
|
391
|
+
* Directory paths in `COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_PATH` will be added to the list of
|
|
392
|
+
ignored directories when the prefix header file is created.
|
|
393
|
+
|
|
394
|
+
* `COTIRE_ADDITIONAL_PREFIX_HEADER_IGNORE_EXTENSIONS` can be used to ignore header files by file
|
|
395
|
+
extension. It defaults to the CMake list `inc;inl;ipp`.
|
|
396
|
+
|
|
397
|
+
During development, changes to the project source files may affect the list of header files that
|
|
398
|
+
should be selected for inclusion in the prefix header (e.g., a standard include may be added or
|
|
399
|
+
removed from a target source file). Cotire does not automatically recreate the prefix header,
|
|
400
|
+
when a target source file is changed, because this would always trigger a re-compilation of the
|
|
401
|
+
precompiled header and would result in a rebuild of the whole target. To make the prefix header
|
|
402
|
+
creation dependent on changes to certain target source files, the source file property
|
|
403
|
+
`COTIRE_DEPENDENCY` can be set to `TRUE` for those files:
|
|
404
|
+
|
|
405
|
+
set_property (SOURCE "example.cpp" PROPERTY COTIRE_DEPENDENCY "TRUE")
|
|
406
|
+
|
|
407
|
+
### fixing linkage issues
|
|
408
|
+
|
|
409
|
+
When a C++ program uses `extern "C"` on a system header file, cotire will not be able to detect
|
|
410
|
+
that the include file needs C linkage and will include the file with C++ linkage in the generated
|
|
411
|
+
prefix header instead. For example, the C interface to BLAS `cblas.h` usually has to be included
|
|
412
|
+
as `extern "C"` in a C++ program:
|
|
413
|
+
|
|
414
|
+
extern "C" {
|
|
415
|
+
#include <cblas.h>
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
The presence of `extern "C"` includes will prevent cotired targets from being linked successfully
|
|
419
|
+
because of unresolved function references using the wrong linkage. To work around the problem,
|
|
420
|
+
the property `COTIRE_PREFIX_HEADER_IGNORE_PATH` can also include the full path of header files
|
|
421
|
+
besides directories. Here is an example:
|
|
422
|
+
|
|
423
|
+
set_property(DIRECTORY
|
|
424
|
+
PROPERTY COTIRE_PREFIX_HEADER_IGNORE_PATH
|
|
425
|
+
"${ATLAS_INCLUDE_DIR}/cblas.h"
|
|
426
|
+
"${CMAKE_SOURCE_DIR}" "${CMAKE_BINARY_DIR}")
|
|
427
|
+
|
|
428
|
+
That way `cblas.h` will not be included in the generated prefix header and will not cause problems
|
|
429
|
+
upon linking.
|
|
430
|
+
|
|
431
|
+
### using a manually maintained unity source instead of the automatically generated one
|
|
432
|
+
|
|
433
|
+
Cotire can be configured to use an existing manually maintained unity source file instead of the
|
|
434
|
+
automatically generated one. Set the target property `COTIRE_CXX_UNITY_SOURCE_INIT` to the path
|
|
435
|
+
of the existing unity source file. Its path is interpreted relative to the target source directory:
|
|
436
|
+
|
|
437
|
+
set_target_properties(example PROPERTIES COTIRE_CXX_UNITY_SOURCE_INIT "example-all.cpp")
|
|
438
|
+
cotire(example)
|
|
439
|
+
|
|
440
|
+
The property can also be set to a list of source files which will then make up the contents of
|
|
441
|
+
the generated unity source file.
|
|
442
|
+
|
|
443
|
+
### configuring the generation of the unity source
|
|
444
|
+
|
|
445
|
+
By default cotire adds all target source files to the generated unity source. In most cases a
|
|
446
|
+
unity build will not work out of the box, because unity builds [break][EoUB] the use of some C
|
|
447
|
+
and C++ language features. Unity build problems can be tackled in the following way:
|
|
448
|
+
|
|
449
|
+
* Change the order of the source files in the `add_executable` or `add_library` calls.
|
|
450
|
+
Problematic source files should be moved towards the end.
|
|
451
|
+
|
|
452
|
+
* Set the source file property `COTIRE_EXCLUDED` on problematic source files. The source file
|
|
453
|
+
will not be included in the unity source file and will be compiled separately when the unity build
|
|
454
|
+
is performed.
|
|
455
|
+
|
|
456
|
+
* `COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS` can be used to exclude source files by file extension
|
|
457
|
+
from inclusion in the generated unity source. It defaults to the CMake list `m;mm`.
|
|
458
|
+
|
|
459
|
+
* If the unity source file is too large and the compilation process runs into a compiler limit,
|
|
460
|
+
the target property `COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES` can be set. If the target
|
|
461
|
+
contains more than that number of source files, cotire will create multiple unity source files
|
|
462
|
+
for it. Each unity source file is compiled separately when the unity build is performed.
|
|
463
|
+
The property is initialized by value of the cache variable
|
|
464
|
+
`COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES`.
|
|
465
|
+
|
|
466
|
+
* Another way to break up a large unity source file is to set the source file property
|
|
467
|
+
`COTIRE_START_NEW_UNITY_SOURCE` to `TRUE` on selected target source files. If cotire encounters
|
|
468
|
+
this property, it will complete the current unity file and start a new one. The new unity source
|
|
469
|
+
file will include the source file as the first one. This property essentially works as a separator
|
|
470
|
+
for unity source files.
|
|
471
|
+
|
|
472
|
+
### optimizing the build process for multiple processor cores
|
|
473
|
+
|
|
474
|
+
To make use of all the machine's CPU cores for the unity compilation of a target, the target
|
|
475
|
+
property `COTIRE_UNITY_SOURCE_MAXIMUM_NUMBER_OF_INCLUDES` can be set to the string `-j`. Cotire
|
|
476
|
+
will then create as many unity file segments as there are CPU cores on the machine. Because
|
|
477
|
+
the unity file segments do not depend on each other, a multi-core aware build process can compile
|
|
478
|
+
the file segments in parallel.
|
|
479
|
+
|
|
480
|
+
To explicitly specify the number of cores, append the number after `-j`, e.g. `-j 4` or `-j4`.
|
|
481
|
+
|
|
482
|
+
For CMake generators that are multi-core aware by default (i.e., Visual Studio, JOM, Ninja), cotire
|
|
483
|
+
will automatically initialize the property to `-j`. For makefile based generators, this has to be
|
|
484
|
+
done explicitly by setting the cache variable `COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES`, i.e.:
|
|
485
|
+
|
|
486
|
+
$ cmake -D COTIRE_MAXIMUM_NUMBER_OF_UNITY_INCLUDES=-j4 <path-to-source>
|
|
487
|
+
$ make -j 4
|
|
488
|
+
|
|
489
|
+
### fixing macro definition clashes
|
|
490
|
+
|
|
491
|
+
Many unity build problems stem from macro definitions leaking into other target source files,
|
|
492
|
+
where they may conflict with other definitions of the same name. Cotire adds the properties
|
|
493
|
+
`COTIRE_UNITY_SOURCE_PRE_UNDEFS` and `COTIRE_UNITY_SOURCE_POST_UNDEFS` to fix macro definition
|
|
494
|
+
clashes.
|
|
495
|
+
|
|
496
|
+
As an example, if these properties are set on a source file of the example project:
|
|
497
|
+
|
|
498
|
+
set_source_files_properties (example.cpp PROPERTIES
|
|
499
|
+
COTIRE_UNITY_SOURCE_PRE_UNDEFS "max;min"
|
|
500
|
+
COTIRE_UNITY_SOURCE_POST_UNDEFS "DEBUG_TYPE")
|
|
501
|
+
|
|
502
|
+
This will make cotire add undefs to the generated unity source file.
|
|
503
|
+
|
|
504
|
+
#ifdef __cplusplus
|
|
505
|
+
#include "/Users/sakra/Documents/cotire/src/main.cpp"
|
|
506
|
+
#undef min
|
|
507
|
+
#undef max
|
|
508
|
+
#include "/Users/sakra/Documents/cotire/src/example.cpp"
|
|
509
|
+
#undef DEBUG_TYPE
|
|
510
|
+
#include "/Users/sakra/Documents/cotire/src/log.cpp"
|
|
511
|
+
#endif
|
|
512
|
+
|
|
513
|
+
The properties `COTIRE_UNITY_SOURCE_PRE_UNDEFS` and `COTIRE_UNITY_SOURCE_POST_UNDEFS` can also be
|
|
514
|
+
set on targets. Cotire will add `#undef` directives for each source file in the unity source then.
|
|
515
|
+
|
|
516
|
+
### enabling verbose builds
|
|
517
|
+
|
|
518
|
+
The cache variable `COTIRE_VERBOSE` can be set to `TRUE` to see all compile commands used when
|
|
519
|
+
generating the cotire related files. Cotire will also print the contents of the generated unity
|
|
520
|
+
source and the prefix header for verbose builds. `COTIRE_VERBOSE` defaults to `FALSE`.
|
|
521
|
+
When using a Makefile generator `COTIRE_VERBOSE` defaults to the value of the makefile variable
|
|
522
|
+
`VERBOSE` (i.e., `make VERBOSE=1`).
|
|
523
|
+
|
|
524
|
+
### conditionally loading cotire
|
|
525
|
+
|
|
526
|
+
To make a `CMakeLists.txt` robust against a missing `cotire.cmake` module, the following strategy
|
|
527
|
+
can be applied to using cotire:
|
|
528
|
+
|
|
529
|
+
include(cotire OPTIONAL)
|
|
530
|
+
...
|
|
531
|
+
add_executable(example main.cpp example.cpp log.cpp log.h example.h)
|
|
532
|
+
...
|
|
533
|
+
if (COMMAND cotire)
|
|
534
|
+
cotire(example)
|
|
535
|
+
endif()
|
|
536
|
+
|
|
537
|
+
The `include(cotire OPTIONAL)` will prevent CMake from raising an error if cotire cannot be
|
|
538
|
+
found. The actual calls to cotire need to be guarded by `if (COMMAND cotire)` blocks.
|
|
539
|
+
|
|
540
|
+
### using cotire with compiler wrappers
|
|
541
|
+
|
|
542
|
+
Cotire is compatible with CMake compiler wrappers. For example, the use of [ccache][ccch] may be
|
|
543
|
+
enabled in the following way upon configuring the project:
|
|
544
|
+
|
|
545
|
+
$ export CC="/usr/local/bin/ccache /usr/bin/gcc"
|
|
546
|
+
$ export CXX="/usr/local/bin/ccache /usr/bin/g++"
|
|
547
|
+
$ export CCACHE_SLOPPINESS=pch_defines,time_macros
|
|
548
|
+
$ cmake ..
|
|
549
|
+
|
|
550
|
+
Note that with ccache in order for precompiled headers to work properly, it is necessary to set
|
|
551
|
+
the environment variable `CCACHE_SLOPPINESS` to `pch_defines,time_macros`. Otherwise the build
|
|
552
|
+
process may abort with the following error message:
|
|
553
|
+
|
|
554
|
+
fatal error: file 'example_CXX_prefix.hxx' has been modified since the precompiled header
|
|
555
|
+
'example_CXX_prefix.hxx.gch' was built
|
|
556
|
+
|
|
557
|
+
Also see the [ccache manual][ccch_pch].
|
|
558
|
+
|
|
559
|
+
### applying cotire to object library targets
|
|
560
|
+
|
|
561
|
+
CMake 2.8.8 introduced a new type of library target called [object library][objlib]. An object
|
|
562
|
+
library is a convenience target that compiles multiple source files but does not create a linked
|
|
563
|
+
target library for them, e.g.:
|
|
564
|
+
|
|
565
|
+
add_library(myLib OBJECT lib1.cpp lib2.cpp lib3.cpp)
|
|
566
|
+
add_executable(exeA $<TARGET_OBJECTS:myLib> mainA.cpp)
|
|
567
|
+
add_executable(exeB $<TARGET_OBJECTS:myLib> mainB.cpp)
|
|
568
|
+
|
|
569
|
+
The `cotire` function can be applied to an object library target in a familiar fashion:
|
|
570
|
+
|
|
571
|
+
add_library(myLib OBJECT lib1.cpp lib2.cpp lib3.cpp)
|
|
572
|
+
cotire(myLib)
|
|
573
|
+
# use unity object library for executables
|
|
574
|
+
add_executable(exeA $<TARGET_OBJECTS:myLib_unity> mainA.cpp)
|
|
575
|
+
add_executable(exeB $<TARGET_OBJECTS:myLib_unity> mainB.cpp)
|
|
576
|
+
|
|
577
|
+
Because object library targets do not support `PRE_BUILD` actions, precompiled header usage cannot
|
|
578
|
+
be enabled for them for Xcode projects generated with CMake. Unity builds work as expected, though.
|
|
579
|
+
|
|
580
|
+
### automatically setting up linked libraries in the unity target
|
|
581
|
+
|
|
582
|
+
The setting of the target property `COTIRE_UNITY_LINK_LIBRARIES_INIT` controls the linking
|
|
583
|
+
strategy for the generated unit target.
|
|
584
|
+
|
|
585
|
+
If this property is empty or set to `NONE`, the generated unity target's link libraries have to be
|
|
586
|
+
set up manually with subsequent `target_link_libraries` calls:
|
|
587
|
+
|
|
588
|
+
set_target_properties(example PROPERTIES COTIRE_UNITY_LINK_LIBRARIES_INIT "NONE")
|
|
589
|
+
...
|
|
590
|
+
cotire(example)
|
|
591
|
+
target_link_libraries(MyExecutable_unity ${MyExecutableLibraries})
|
|
592
|
+
|
|
593
|
+
If this property is set to `COPY`, the unity target's link libraries will be copied from the
|
|
594
|
+
original target.
|
|
595
|
+
|
|
596
|
+
If this property is set to `COPY_UNITY`, the unity target's link libraries will be copied from the
|
|
597
|
+
original target but instead of copying a linked target verbatim, the target's corresponding unity
|
|
598
|
+
target will be preferred, provided one exists.
|
|
599
|
+
|
|
600
|
+
As of cotire 1.7.0, the default linking strategy for unit targets is `COPY_UNITY`.
|
|
601
|
+
|
|
602
|
+
The property `COTIRE_UNITY_LINK_LIBRARIES_INIT` can also be set on directories. A target inherits
|
|
603
|
+
the property value from its enclosing directory. To make all targets in the project use the
|
|
604
|
+
`COPY` strategy, the directory property can be set in the outermost `CMakeList.txt` file:
|
|
605
|
+
|
|
606
|
+
include(cotire)
|
|
607
|
+
...
|
|
608
|
+
set_property(DIRECTORY PROPERTY COTIRE_UNITY_LINK_LIBRARIES_INIT "COPY")
|
|
609
|
+
|
|
610
|
+
### using cotire with Qt
|
|
611
|
+
|
|
612
|
+
Cotire is compatible with both Qt4 and Qt5 projects that use CMake as build system.
|
|
613
|
+
|
|
614
|
+
If a CMake target's `AUTOMOC` or `AUTOUIC` properties are set, the generated unity target will
|
|
615
|
+
automatically add a dependency to the implicitly generated `<targetname>_automoc` target to ensure
|
|
616
|
+
that `moc` and `uic` are run on the individual source files.
|
|
617
|
+
|
|
618
|
+
The unity target will also include the implicitly generated `<targetname>_automoc.cpp` source file.
|
|
619
|
+
|
|
620
|
+
The `Patches` directory contains examples for the [Qt4][fsedit_qt4] and [Qt5][fsedit_qt5] based
|
|
621
|
+
variants of the *FSEditor* sample Qt application.
|
|
622
|
+
|
|
623
|
+
### installing files generated by unity targets
|
|
624
|
+
|
|
625
|
+
Cotire cannot set up a `install_unity` target that mimics the `install` target automatically,
|
|
626
|
+
because CMake does not provide the necessary information about the existing install rules
|
|
627
|
+
programmatically.
|
|
628
|
+
|
|
629
|
+
When using a Makefile generator, you can use the following workaround (thanks to peterhuene):
|
|
630
|
+
|
|
631
|
+
$ make all_unity
|
|
632
|
+
$ make install/fast
|
|
633
|
+
|
|
634
|
+
The `install/fast` does not trigger a build, but will use the binaries built by the `all_unity`
|
|
635
|
+
target.
|
|
636
|
+
|
|
637
|
+
For other generators, set up an `install_unity` target manually. First set up install rules for
|
|
638
|
+
all unity targets, that mimic the install rules for the original targets:
|
|
639
|
+
|
|
640
|
+
install(TARGETS example_unity RUNTIME DESTINATION "bin" OPTIONAL COMPONENT "unity")
|
|
641
|
+
|
|
642
|
+
This installs the `example` executable built by the unity target to the `bin` folder. The install
|
|
643
|
+
rules for unity targets must use a custom install component. Then add a global `install_unity`
|
|
644
|
+
target that performs the installation of all unity targets:
|
|
645
|
+
|
|
646
|
+
add_custom_target(install_unity
|
|
647
|
+
COMMAND ${CMAKE_COMMAND} -DCOMPONENT=unity -P cmake_install.cmake
|
|
648
|
+
COMMENT "Install the unity-built project..."
|
|
649
|
+
WORKING_DIRECTORY ${CMAKE_BINARY_DIR})
|
|
650
|
+
add_dependencies(unity_install example_unity)
|
|
651
|
+
|
|
652
|
+
The global `install_unity` target must depend on all unity targets that should be installed.
|
|
653
|
+
|
|
654
|
+
### customized inclusion of system headers
|
|
655
|
+
|
|
656
|
+
If a system header ends up in a pre-compiled header, it is not possible to customize the inclusion
|
|
657
|
+
of that header in a source file through preprocessor defines.
|
|
658
|
+
|
|
659
|
+
For example, under Windows one may want to include `Windows.h` with `NOMINMAX` defined to prevent
|
|
660
|
+
the definition of the `min` and `max` macros:
|
|
661
|
+
|
|
662
|
+
#define NOMINMAX
|
|
663
|
+
#include <Windows.h>
|
|
664
|
+
|
|
665
|
+
The dependency of `Windows.h` on the preprocessor define `NOMINMAX` will not be picked up by cotire
|
|
666
|
+
automatically upon adding `Windows.h` to the prefix header. To work around the problem, make the
|
|
667
|
+
dependency explicit by using `add_definitions` in the corresponding `CMakeLists.txt`:
|
|
668
|
+
|
|
669
|
+
if (WIN32)
|
|
670
|
+
# prevent definition of min and max macros through inclusion of Windows.h
|
|
671
|
+
add_definitions("-DNOMINMAX")
|
|
672
|
+
endif()
|
|
673
|
+
|
|
674
|
+
That way, the preprocessor define `NOMINMAX` will be picked up by cotire and applied to the
|
|
675
|
+
pre-compilation of the prefix header.
|
|
676
|
+
|
|
677
|
+
### organize includes added to the prefix header
|
|
678
|
+
|
|
679
|
+
Sometimes the order of the includes in the automatically generated prefix header may result in
|
|
680
|
+
compilation errors due to subtile header dependencies.
|
|
681
|
+
|
|
682
|
+
To work around the problem, the target property `COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH`
|
|
683
|
+
can be set to a list of directories. Header files whose path matches one of these directories will
|
|
684
|
+
be inserted at the beginning of generated prefix header. Header files are sorted according to
|
|
685
|
+
the order of the directories in the property. Headers not matching one of these directories are
|
|
686
|
+
left untouched.
|
|
687
|
+
|
|
688
|
+
The property `COTIRE_PREFIX_HEADER_INCLUDE_PRIORITY_PATH` can also be set on directories. A target
|
|
689
|
+
inherits the property value from its enclosing directory.
|
|
690
|
+
|
|
691
|
+
common pitfalls
|
|
692
|
+
---------------
|
|
693
|
+
|
|
694
|
+
### include the `cotire.cmake` module correclty
|
|
695
|
+
|
|
696
|
+
If CMake issues the message `Unknown CMake command "cotire"`, double check that the cotire module
|
|
697
|
+
has been included correctly in your project. See the manual section "cotire basic usage".
|
|
698
|
+
|
|
699
|
+
### do not modify a target's build related properties after applying cotire
|
|
700
|
+
|
|
701
|
+
Cotire only considers build related settings of a target at the time of the `cotire` function call.
|
|
702
|
+
If target properties that control the build are changed after the call to the `cotire` function,
|
|
703
|
+
the build rules set up by cotire for the precompiled header and unity build may not work correctly.
|
|
704
|
+
|
|
705
|
+
Don't do this:
|
|
706
|
+
|
|
707
|
+
add_executable(example main.cpp example.cpp log.cpp log.h example.h)
|
|
708
|
+
cotire(example)
|
|
709
|
+
...
|
|
710
|
+
set_target_properties(example PROPERTIES POSITION_INDEPENDENT_CODE ON) # affects build
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
### always apply cotire in the same source directory where a target has been added
|
|
714
|
+
|
|
715
|
+
CMake targets are globally visible. Nevertheless, it is important that the `cotire` function is called
|
|
716
|
+
for a target in the exact same directory that creates the target with `add_library` or `add_executable`.
|
|
717
|
+
|
|
718
|
+
Don't do this:
|
|
719
|
+
|
|
720
|
+
add_subdirectory(src)
|
|
721
|
+
...
|
|
722
|
+
cotire(mytarget) # mytarget added in src directory
|
|
723
|
+
|
|
724
|
+
Cotire may fail to inspect the target's source files correctly, if the target has been added in a
|
|
725
|
+
different directory and you may get odd messages about missing source files.
|
|
726
|
+
|
|
727
|
+
known issues
|
|
728
|
+
------------
|
|
729
|
+
|
|
730
|
+
### using source files for multiple targets
|
|
731
|
+
|
|
732
|
+
When the same set of source files is used for different targets (e.g., for producing a static
|
|
733
|
+
and a shared library variant from the same sources), using a precompiled header may not work.
|
|
734
|
+
Under certain circumstances, cotire cannot enable the precompiled header usage by changing the
|
|
735
|
+
`COMPILE_FLAGS` property of the whole target, but must set the `COMPILE_FLAGS` properties of
|
|
736
|
+
individual target source files instead. This will break the usage of the source file for
|
|
737
|
+
multiple targets.
|
|
738
|
+
|
|
739
|
+
### multi-architecture builds under Mac OS X
|
|
740
|
+
|
|
741
|
+
Neither GCC nor Clang support the use of precompiled headers when performing a Mac OS X
|
|
742
|
+
multi-architecture build (e.g., using option `-DCMAKE_OSX_ARCHITECTURES=i386;x86_64`).
|
|
743
|
+
|
|
744
|
+
### Objective-C
|
|
745
|
+
|
|
746
|
+
CMake targets that contain Objective-C or Objective-C++ source files cannot be cotired. Source
|
|
747
|
+
files ending with .m and .mm are excluded by default through the initial default setting of
|
|
748
|
+
`COTIRE_UNITY_SOURCE_EXCLUDE_EXTENSIONS`.
|
|
749
|
+
|
|
750
|
+
### Intel C++
|
|
751
|
+
|
|
752
|
+
Intel C++ support has only been tested with [Intel C++ Composer XE 2013 for Linux][icc_linux] and
|
|
753
|
+
may not work with other platforms or versions.
|
|
754
|
+
|
|
755
|
+
The Intel compiler may issue incorrect warnings #672 (the command line options do not match those
|
|
756
|
+
used when precompiled header was created) or #673 (the initial sequence of preprocessing directives
|
|
757
|
+
is not compatible with those of precompiled header file) upon compilation of cotired targets.
|
|
758
|
+
|
|
759
|
+
### IncrediBuild
|
|
760
|
+
|
|
761
|
+
Cotire is not compatible with [Xoreax IncrediBuild][XGE].
|
|
762
|
+
|
|
763
|
+
[1260]:http://www.cmake.org/Bug/view.php?id=1260
|
|
764
|
+
[ccch]:http://ccache.samba.org/
|
|
765
|
+
[ccch_pch]:http://ccache.samba.org/manual.html#_precompiled_headers
|
|
766
|
+
[clang_pch]:http://clang.llvm.org/docs/UsersManual.html#precompiled-headers
|
|
767
|
+
[fsedit_qt4]:http://www.vikingsoft.eu/fseditor.html
|
|
768
|
+
[fsedit_qt5]:https://github.com/joonhwan/fsedit-qt5
|
|
769
|
+
[gcc_pch]:http://gcc.gnu.org/onlinedocs/gcc/Precompiled-Headers.html
|
|
770
|
+
[kde4macros]:http://kbfxmenu.googlecode.com/svn/trunk/kbfx3/cmakemodules/KDE4Macros.cmake
|
|
771
|
+
[msvc_pch]:http://msdn.microsoft.com/en-us/library/szfdksca(v=vs.90).aspx
|
|
772
|
+
[msvc_pch_create]:http://msdn.microsoft.com/en-us/library/7zc28563(v=vs.90).aspx
|
|
773
|
+
[msvc_pch_use]:http://msdn.microsoft.com/en-us/library/z0atkd6c(v=vs.90).aspx
|
|
774
|
+
[EoUB]:http://engineering-game-dev.com/2009/12/15/the-evils-of-unity-builds/
|
|
775
|
+
[pch]:http://en.wikipedia.org/wiki/Precompiled_header
|
|
776
|
+
[scu]:http://en.wikipedia.org/wiki/Single_Compilation_Unit
|
|
777
|
+
[objlib]:http://www.cmake.org/cmake/help/v2.8.12/cmake.html#command:add_library
|
|
778
|
+
[pfh]:http://en.wikipedia.org/wiki/Prefix_header
|
|
779
|
+
[icc_linux]:http://software.intel.com/en-us/non-commercial-software-development
|
|
780
|
+
[XGE]:http://www.incredibuild.com
|