├── .gitattributes ├── .gitignore ├── .idea ├── .name ├── codeStyleSettings.xml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── jsLibraryMappings.xml ├── libraries │ └── jscomp_node_modules.xml ├── misc.xml ├── modules.xml ├── typescript-compiler.xml ├── uiDesigner.xml └── vcs.xml ├── AUTHORS ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.adoc ├── acorn.iml ├── acorn ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .npmignore ├── .tern-project ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── bin │ ├── acorn │ ├── build-acorn.js │ ├── generate-identifier-regex.js │ ├── prepublish.sh │ ├── update_authors.sh │ └── without_eval ├── dist │ └── .keep ├── package.json ├── src │ ├── expression.js │ ├── identifier.js │ ├── index.js │ ├── location.js │ ├── loose │ │ ├── acorn_loose.js │ │ ├── expression.js │ │ ├── index.js │ │ ├── parseutil.js │ │ ├── state.js │ │ ├── statement.js │ │ └── tokenize.js │ ├── lval.js │ ├── node.js │ ├── options.js │ ├── parseutil.js │ ├── state.js │ ├── statement.js │ ├── tokencontext.js │ ├── tokenize.js │ ├── tokentype.js │ ├── util.js │ ├── walk │ │ └── index.js │ └── whitespace.js └── test │ ├── bench.html │ ├── codemirror-string.js │ ├── compare │ ├── esprima.js │ └── traceur.js │ ├── driver.js │ ├── index.html │ ├── jquery-string.js │ ├── run.js │ ├── tests-harmony.js │ └── tests.js ├── bugs └── object-seal.js ├── docs └── hacking.adoc ├── examples ├── factorial.js └── inheritance.js ├── js └── acorn │ ├── acorn_csp.d.ts │ └── acorn_csp.js ├── jsc ├── jscomp.iml ├── lib ├── StringMap.ts └── bmh.ts ├── main.ts ├── package.json ├── runtime ├── .gitignore ├── CMakeLists.txt ├── deps │ ├── CMakeLists.txt │ ├── JSON-js │ │ ├── README │ │ ├── cycle.js │ │ ├── json2.js │ │ ├── json_parse.js │ │ └── json_parse_state.js │ ├── dtoa │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── changes │ │ ├── dtoa.c │ │ └── g_fmt.c │ ├── gyp │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── DEPS │ │ ├── LICENSE │ │ ├── OWNERS │ │ ├── PRESUBMIT.py │ │ ├── README.md │ │ ├── buildbot │ │ │ ├── buildbot_run.py │ │ │ └── commit_queue │ │ │ │ ├── OWNERS │ │ │ │ ├── README │ │ │ │ └── cq_config.json │ │ ├── codereview.settings │ │ ├── data │ │ │ └── win │ │ │ │ └── large-pdb-shim.cc │ │ ├── docs │ │ │ ├── Buildbot.md │ │ │ ├── GypVsCMake.md │ │ │ ├── Hacking.md │ │ │ ├── InputFormatReference.md │ │ │ ├── LanguageSpecification.md │ │ │ ├── Source.md │ │ │ ├── Testing.md │ │ │ └── UserDocumentation.md │ │ ├── gyp │ │ ├── gyp.bat │ │ ├── gyp_main.py │ │ ├── gyptest.py │ │ ├── pylib │ │ │ └── gyp │ │ │ │ ├── MSVSNew.py │ │ │ │ ├── MSVSProject.py │ │ │ │ ├── MSVSSettings.py │ │ │ │ ├── MSVSSettings_test.py │ │ │ │ ├── MSVSToolFile.py │ │ │ │ ├── MSVSUserFile.py │ │ │ │ ├── MSVSUtil.py │ │ │ │ ├── MSVSVersion.py │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── common_test.py │ │ │ │ ├── easy_xml.py │ │ │ │ ├── easy_xml_test.py │ │ │ │ ├── flock_tool.py │ │ │ │ ├── generator │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer.py │ │ │ │ ├── cmake.py │ │ │ │ ├── dump_dependency_json.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── gypd.py │ │ │ │ ├── gypsh.py │ │ │ │ ├── make.py │ │ │ │ ├── msvs.py │ │ │ │ ├── msvs_test.py │ │ │ │ ├── ninja.py │ │ │ │ ├── ninja_test.py │ │ │ │ ├── xcode.py │ │ │ │ └── xcode_test.py │ │ │ │ ├── input.py │ │ │ │ ├── input_test.py │ │ │ │ ├── mac_tool.py │ │ │ │ ├── msvs_emulation.py │ │ │ │ ├── ninja_syntax.py │ │ │ │ ├── ordered_dict.py │ │ │ │ ├── simple_copy.py │ │ │ │ ├── win_tool.py │ │ │ │ ├── xcode_emulation.py │ │ │ │ ├── xcode_ninja.py │ │ │ │ ├── xcodeproj_file.py │ │ │ │ └── xml_fix.py │ │ ├── samples │ │ │ ├── samples │ │ │ └── samples.bat │ │ ├── setup.py │ │ ├── test │ │ │ ├── actions-bare │ │ │ │ ├── gyptest-bare.py │ │ │ │ └── src │ │ │ │ │ ├── bare.gyp │ │ │ │ │ └── bare.py │ │ │ ├── actions-depfile │ │ │ │ ├── depfile.gyp │ │ │ │ ├── gyptest-all.py │ │ │ │ └── input.txt │ │ │ ├── actions-multiple-outputs-with-dependencies │ │ │ │ ├── gyptest-action.py │ │ │ │ └── src │ │ │ │ │ ├── action.gyp │ │ │ │ │ └── rcopy.py │ │ │ ├── actions-multiple-outputs │ │ │ │ ├── gyptest-multiple-outputs.py │ │ │ │ └── src │ │ │ │ │ ├── multiple-outputs.gyp │ │ │ │ │ └── touch.py │ │ │ ├── actions-multiple │ │ │ │ ├── gyptest-all.py │ │ │ │ └── src │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── copy.py │ │ │ │ │ ├── filter.py │ │ │ │ │ ├── foo.c │ │ │ │ │ ├── input.txt │ │ │ │ │ └── main.c │ │ │ ├── actions-none │ │ │ │ ├── gyptest-none.py │ │ │ │ └── src │ │ │ │ │ ├── fake_cross.py │ │ │ │ │ ├── foo.cc │ │ │ │ │ └── none_with_source_files.gyp │ │ │ ├── actions-subdir │ │ │ │ ├── gyptest-action.py │ │ │ │ └── src │ │ │ │ │ ├── make-file.py │ │ │ │ │ ├── none.gyp │ │ │ │ │ └── subdir │ │ │ │ │ ├── make-subdir-file.py │ │ │ │ │ └── subdir.gyp │ │ │ ├── actions │ │ │ │ ├── generated-header │ │ │ │ │ ├── action.py │ │ │ │ │ ├── main.cc │ │ │ │ │ └── test.gyp │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-errors.py │ │ │ │ ├── gyptest-generated-header.py │ │ │ │ └── src │ │ │ │ │ ├── action_missing_name.gyp │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── confirm-dep-files.py │ │ │ │ │ ├── subdir1 │ │ │ │ │ ├── counter.py │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── make-prog1.py │ │ │ │ │ ├── make-prog2.py │ │ │ │ │ └── program.c │ │ │ │ │ ├── subdir2 │ │ │ │ │ ├── make-file.py │ │ │ │ │ └── none.gyp │ │ │ │ │ └── subdir3 │ │ │ │ │ ├── generate_main.py │ │ │ │ │ └── null_input.gyp │ │ │ ├── additional-targets │ │ │ │ ├── gyptest-additional.py │ │ │ │ └── src │ │ │ │ │ ├── all.gyp │ │ │ │ │ └── dir1 │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── emit.py │ │ │ │ │ └── lib1.c │ │ │ ├── analyzer │ │ │ │ ├── common.gypi │ │ │ │ ├── gyptest-analyzer.py │ │ │ │ ├── static_library_test.gyp │ │ │ │ ├── subdir │ │ │ │ │ ├── subdir.gyp │ │ │ │ │ └── subdir2 │ │ │ │ │ │ └── subdir2.gyp │ │ │ │ ├── subdir2 │ │ │ │ │ ├── subdir.gyp │ │ │ │ │ └── subdir.includes.gypi │ │ │ │ ├── test.gyp │ │ │ │ ├── test2.gyp │ │ │ │ ├── test2.includes.gypi │ │ │ │ ├── test2.includes.includes.gypi │ │ │ │ ├── test2.toplevel_includes.gypi │ │ │ │ ├── test3.gyp │ │ │ │ ├── test4.gyp │ │ │ │ └── test5.gyp │ │ │ ├── arflags │ │ │ │ ├── gyptest-arflags.py │ │ │ │ ├── lib.cc │ │ │ │ └── test.gyp │ │ │ ├── assembly │ │ │ │ ├── gyptest-assembly.py │ │ │ │ ├── gyptest-override.py │ │ │ │ └── src │ │ │ │ │ ├── as.bat │ │ │ │ │ ├── assembly.gyp │ │ │ │ │ ├── lib1.S │ │ │ │ │ ├── lib1.c │ │ │ │ │ ├── override.gyp │ │ │ │ │ ├── override_asm.asm │ │ │ │ │ └── program.c │ │ │ ├── build-option │ │ │ │ ├── gyptest-build.py │ │ │ │ ├── hello.c │ │ │ │ └── hello.gyp │ │ │ ├── builddir │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ └── src │ │ │ │ │ ├── builddir.gypi │ │ │ │ │ ├── func1.c │ │ │ │ │ ├── func2.c │ │ │ │ │ ├── func3.c │ │ │ │ │ ├── func4.c │ │ │ │ │ ├── func5.c │ │ │ │ │ ├── prog1.c │ │ │ │ │ ├── prog1.gyp │ │ │ │ │ └── subdir2 │ │ │ │ │ ├── prog2.c │ │ │ │ │ ├── prog2.gyp │ │ │ │ │ └── subdir3 │ │ │ │ │ ├── prog3.c │ │ │ │ │ ├── prog3.gyp │ │ │ │ │ └── subdir4 │ │ │ │ │ ├── prog4.c │ │ │ │ │ ├── prog4.gyp │ │ │ │ │ └── subdir5 │ │ │ │ │ ├── prog5.c │ │ │ │ │ └── prog5.gyp │ │ │ ├── cflags │ │ │ │ ├── cflags.c │ │ │ │ ├── cflags.gyp │ │ │ │ └── gyptest-cflags.py │ │ │ ├── compilable │ │ │ │ ├── gyptest-headers.py │ │ │ │ └── src │ │ │ │ │ ├── headers.gyp │ │ │ │ │ ├── lib1.cpp │ │ │ │ │ ├── lib1.hpp │ │ │ │ │ └── program.cpp │ │ │ ├── compiler-override │ │ │ │ ├── compiler-exe.gyp │ │ │ │ ├── compiler-global-settings.gyp.in │ │ │ │ ├── compiler-host.gyp │ │ │ │ ├── compiler-shared-lib.gyp │ │ │ │ ├── cxxtest.cc │ │ │ │ ├── gyptest-compiler-env-toolchain.py │ │ │ │ ├── gyptest-compiler-env.py │ │ │ │ ├── gyptest-compiler-global-settings.py │ │ │ │ ├── my_cc.py │ │ │ │ ├── my_cxx.py │ │ │ │ ├── my_ld.py │ │ │ │ ├── my_nm.py │ │ │ │ ├── my_readelf.py │ │ │ │ └── test.c │ │ │ ├── conditions │ │ │ │ └── elseif │ │ │ │ │ ├── elseif.gyp │ │ │ │ │ ├── elseif_bad1.gyp │ │ │ │ │ ├── elseif_bad2.gyp │ │ │ │ │ ├── elseif_bad3.gyp │ │ │ │ │ ├── elseif_conditions.gypi │ │ │ │ │ ├── gyptest_elseif.py │ │ │ │ │ └── program.cc │ │ │ ├── configurations │ │ │ │ ├── basics │ │ │ │ │ ├── configurations.c │ │ │ │ │ ├── configurations.gyp │ │ │ │ │ └── gyptest-configurations.py │ │ │ │ ├── inheritance │ │ │ │ │ ├── configurations.c │ │ │ │ │ ├── configurations.gyp │ │ │ │ │ ├── duplicates.gyp │ │ │ │ │ ├── duplicates.gypd.golden │ │ │ │ │ ├── gyptest-duplicates.py │ │ │ │ │ └── gyptest-inheritance.py │ │ │ │ ├── invalid │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── all_dependent_settings.gyp │ │ │ │ │ ├── configurations.gyp │ │ │ │ │ ├── dependencies.gyp │ │ │ │ │ ├── direct_dependent_settings.gyp │ │ │ │ │ ├── gyptest-configurations.py │ │ │ │ │ ├── libraries.gyp │ │ │ │ │ ├── link_settings.gyp │ │ │ │ │ ├── sources.gyp │ │ │ │ │ ├── standalone_static_library.gyp │ │ │ │ │ ├── target_name.gyp │ │ │ │ │ └── type.gyp │ │ │ │ ├── target_platform │ │ │ │ │ ├── configurations.gyp │ │ │ │ │ ├── front.c │ │ │ │ │ ├── gyptest-target_platform.py │ │ │ │ │ ├── left.c │ │ │ │ │ └── right.c │ │ │ │ └── x64 │ │ │ │ │ ├── configurations.c │ │ │ │ │ ├── configurations.gyp │ │ │ │ │ └── gyptest-x86.py │ │ │ ├── copies │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-attribs.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-samedir.py │ │ │ │ ├── gyptest-slash.py │ │ │ │ ├── gyptest-updir.py │ │ │ │ └── src │ │ │ │ │ ├── copies-attribs.gyp │ │ │ │ │ ├── copies-samedir.gyp │ │ │ │ │ ├── copies-slash.gyp │ │ │ │ │ ├── copies-updir.gyp │ │ │ │ │ ├── copies.gyp │ │ │ │ │ ├── directory │ │ │ │ │ ├── file3 │ │ │ │ │ ├── file4 │ │ │ │ │ └── subdir │ │ │ │ │ │ └── file5 │ │ │ │ │ ├── executable-file.sh │ │ │ │ │ ├── file1 │ │ │ │ │ ├── file2 │ │ │ │ │ └── parentdir │ │ │ │ │ └── subdir │ │ │ │ │ └── file6 │ │ │ ├── custom-generator │ │ │ │ ├── gyptest-custom-generator.py │ │ │ │ ├── mygenerator.py │ │ │ │ └── test.gyp │ │ │ ├── cxxflags │ │ │ │ ├── cxxflags.cc │ │ │ │ ├── cxxflags.gyp │ │ │ │ └── gyptest-cxxflags.py │ │ │ ├── defines-escaping │ │ │ │ ├── defines-escaping.c │ │ │ │ ├── defines-escaping.gyp │ │ │ │ └── gyptest-defines-escaping.py │ │ │ ├── defines │ │ │ │ ├── defines-env.gyp │ │ │ │ ├── defines.c │ │ │ │ ├── defines.gyp │ │ │ │ ├── gyptest-define-override.py │ │ │ │ ├── gyptest-defines-env-regyp.py │ │ │ │ ├── gyptest-defines-env.py │ │ │ │ └── gyptest-defines.py │ │ │ ├── dependencies │ │ │ │ ├── a.c │ │ │ │ ├── adso │ │ │ │ │ ├── all_dependent_settings_order.gyp │ │ │ │ │ └── write_args.py │ │ │ │ ├── b │ │ │ │ │ ├── b.c │ │ │ │ │ ├── b.gyp │ │ │ │ │ └── b3.c │ │ │ │ ├── c │ │ │ │ │ ├── c.c │ │ │ │ │ ├── c.gyp │ │ │ │ │ └── d.c │ │ │ │ ├── double_dependency.gyp │ │ │ │ ├── double_dependent.gyp │ │ │ │ ├── extra_targets.gyp │ │ │ │ ├── gyptest-all-dependent-settings-order.py │ │ │ │ ├── gyptest-double-dependency.py │ │ │ │ ├── gyptest-extra-targets.py │ │ │ │ ├── gyptest-lib-only.py │ │ │ │ ├── gyptest-none-traversal.py │ │ │ │ ├── gyptest-sharedlib-linksettings.py │ │ │ │ ├── lib_only.gyp │ │ │ │ ├── main.c │ │ │ │ ├── none_traversal.gyp │ │ │ │ └── sharedlib-linksettings │ │ │ │ │ ├── program.c │ │ │ │ │ ├── sharedlib.c │ │ │ │ │ ├── staticlib.c │ │ │ │ │ └── test.gyp │ │ │ ├── dependency-copy │ │ │ │ ├── gyptest-copy.py │ │ │ │ └── src │ │ │ │ │ ├── copies.gyp │ │ │ │ │ ├── file1.c │ │ │ │ │ └── file2.c │ │ │ ├── empty-target │ │ │ │ ├── empty-target.gyp │ │ │ │ └── gyptest-empty-target.py │ │ │ ├── errors │ │ │ │ ├── dependency_cycle.gyp │ │ │ │ ├── duplicate_basenames.gyp │ │ │ │ ├── duplicate_node.gyp │ │ │ │ ├── duplicate_rule.gyp │ │ │ │ ├── duplicate_targets.gyp │ │ │ │ ├── error_command.gyp │ │ │ │ ├── file_cycle0.gyp │ │ │ │ ├── file_cycle1.gyp │ │ │ │ ├── gyptest-errors.py │ │ │ │ ├── missing_command.gyp │ │ │ │ ├── missing_dep.gyp │ │ │ │ └── missing_targets.gyp │ │ │ ├── escaping │ │ │ │ ├── colon │ │ │ │ │ └── test.gyp │ │ │ │ └── gyptest-colon.py │ │ │ ├── exclusion │ │ │ │ ├── exclusion.gyp │ │ │ │ ├── gyptest-exclusion.py │ │ │ │ └── hello.c │ │ │ ├── external-cross-compile │ │ │ │ ├── gyptest-cross.py │ │ │ │ └── src │ │ │ │ │ ├── bogus1.cc │ │ │ │ │ ├── bogus2.c │ │ │ │ │ ├── cross.gyp │ │ │ │ │ ├── cross_compile.gypi │ │ │ │ │ ├── fake_cross.py │ │ │ │ │ ├── program.cc │ │ │ │ │ ├── test1.cc │ │ │ │ │ ├── test2.c │ │ │ │ │ ├── test3.cc │ │ │ │ │ ├── test4.c │ │ │ │ │ └── tochar.py │ │ │ ├── generator-output │ │ │ │ ├── actions │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── subdir1 │ │ │ │ │ │ ├── actions-out │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── executable.gyp │ │ │ │ │ │ ├── make-prog1.py │ │ │ │ │ │ ├── make-prog2.py │ │ │ │ │ │ └── program.c │ │ │ │ │ └── subdir2 │ │ │ │ │ │ ├── actions-out │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── make-file.py │ │ │ │ │ │ └── none.gyp │ │ │ │ ├── copies │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── copies-out │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── copies.gyp │ │ │ │ │ ├── file1 │ │ │ │ │ ├── file2 │ │ │ │ │ └── subdir │ │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── copies-out │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── file3 │ │ │ │ │ │ ├── file4 │ │ │ │ │ │ └── subdir.gyp │ │ │ │ ├── gyptest-actions.py │ │ │ │ ├── gyptest-copies.py │ │ │ │ ├── gyptest-depth.py │ │ │ │ ├── gyptest-mac-bundle.py │ │ │ │ ├── gyptest-relocate.py │ │ │ │ ├── gyptest-rules.py │ │ │ │ ├── gyptest-subdir2-deep.py │ │ │ │ ├── gyptest-symlink.py │ │ │ │ ├── gyptest-top-all.py │ │ │ │ ├── mac-bundle │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── app.order │ │ │ │ │ ├── header.h │ │ │ │ │ ├── main.c │ │ │ │ │ ├── resource.sb │ │ │ │ │ └── test.gyp │ │ │ │ ├── rules │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── copy-file.py │ │ │ │ │ ├── rules.gyp │ │ │ │ │ ├── subdir1 │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── define3.in0 │ │ │ │ │ │ ├── define4.in0 │ │ │ │ │ │ ├── executable.gyp │ │ │ │ │ │ ├── function1.in1 │ │ │ │ │ │ ├── function2.in1 │ │ │ │ │ │ └── program.c │ │ │ │ │ └── subdir2 │ │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── file1.in0 │ │ │ │ │ │ ├── file2.in0 │ │ │ │ │ │ ├── file3.in1 │ │ │ │ │ │ ├── file4.in1 │ │ │ │ │ │ ├── none.gyp │ │ │ │ │ │ └── rules-out │ │ │ │ │ │ └── README.txt │ │ │ │ └── src │ │ │ │ │ ├── build │ │ │ │ │ └── README.txt │ │ │ │ │ ├── inc.h │ │ │ │ │ ├── inc1 │ │ │ │ │ └── include1.h │ │ │ │ │ ├── prog1.c │ │ │ │ │ ├── prog1.gyp │ │ │ │ │ ├── subdir2 │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── deeper │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── README.txt │ │ │ │ │ │ ├── deeper.c │ │ │ │ │ │ ├── deeper.gyp │ │ │ │ │ │ └── deeper.h │ │ │ │ │ ├── inc2 │ │ │ │ │ │ └── include2.h │ │ │ │ │ ├── prog2.c │ │ │ │ │ └── prog2.gyp │ │ │ │ │ ├── subdir3 │ │ │ │ │ ├── build │ │ │ │ │ │ └── README.txt │ │ │ │ │ ├── inc3 │ │ │ │ │ │ └── include3.h │ │ │ │ │ ├── prog3.c │ │ │ │ │ └── prog3.gyp │ │ │ │ │ └── symroot.gypi │ │ │ ├── gyp-defines │ │ │ │ ├── defines.gyp │ │ │ │ ├── echo.py │ │ │ │ ├── gyptest-multiple-values.py │ │ │ │ └── gyptest-regyp.py │ │ │ ├── hard_dependency │ │ │ │ ├── gyptest-exported-hard-dependency.py │ │ │ │ ├── gyptest-no-exported-hard-dependency.py │ │ │ │ └── src │ │ │ │ │ ├── a.c │ │ │ │ │ ├── a.h │ │ │ │ │ ├── b.c │ │ │ │ │ ├── b.h │ │ │ │ │ ├── c.c │ │ │ │ │ ├── c.h │ │ │ │ │ ├── d.c │ │ │ │ │ ├── emit.py │ │ │ │ │ └── hard_dependency.gyp │ │ │ ├── hello │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-disable-regyp.py │ │ │ │ ├── gyptest-regyp-output.py │ │ │ │ ├── gyptest-regyp.py │ │ │ │ ├── gyptest-target.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ ├── hello2.c │ │ │ │ └── hello2.gyp │ │ │ ├── home_dot_gyp │ │ │ │ ├── gyptest-home-includes-config-arg.py │ │ │ │ ├── gyptest-home-includes-config-env.py │ │ │ │ ├── gyptest-home-includes-regyp.py │ │ │ │ ├── gyptest-home-includes.py │ │ │ │ ├── home │ │ │ │ │ └── .gyp │ │ │ │ │ │ └── include.gypi │ │ │ │ ├── home2 │ │ │ │ │ ├── .gyp │ │ │ │ │ │ └── include.gypi │ │ │ │ │ └── .gyp_new │ │ │ │ │ │ └── include.gypi │ │ │ │ └── src │ │ │ │ │ ├── all.gyp │ │ │ │ │ └── printfoo.c │ │ │ ├── include_dirs │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ └── src │ │ │ │ │ ├── inc.h │ │ │ │ │ ├── inc1 │ │ │ │ │ └── include1.h │ │ │ │ │ ├── includes.c │ │ │ │ │ ├── includes.gyp │ │ │ │ │ ├── shadow1 │ │ │ │ │ └── shadow.h │ │ │ │ │ ├── shadow2 │ │ │ │ │ └── shadow.h │ │ │ │ │ └── subdir │ │ │ │ │ ├── inc.h │ │ │ │ │ ├── inc2 │ │ │ │ │ └── include2.h │ │ │ │ │ ├── subdir_includes.c │ │ │ │ │ └── subdir_includes.gyp │ │ │ ├── intermediate_dir │ │ │ │ ├── gyptest-intermediate-dir.py │ │ │ │ └── src │ │ │ │ │ ├── script.py │ │ │ │ │ ├── shared_infile.txt │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── test2.gyp │ │ │ ├── ios │ │ │ │ ├── app-bundle │ │ │ │ │ ├── TestApp │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ │ │ └── Main_iPhone.storyboard │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── image.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ │ │ │ └── super_sylvain@3x.png │ │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ │ ├── check_no_signature.py │ │ │ │ │ │ ├── main.m │ │ │ │ │ │ ├── only-compile-in-32-bits.m │ │ │ │ │ │ └── only-compile-in-64-bits.m │ │ │ │ │ ├── test-archs.gyp │ │ │ │ │ ├── test-assets-catalog.gyp │ │ │ │ │ ├── test-crosscompile.gyp │ │ │ │ │ ├── test-device.gyp │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── tool_main.cc │ │ │ │ ├── deployment-target │ │ │ │ │ ├── check-version-min.c │ │ │ │ │ └── deployment-target.gyp │ │ │ │ ├── extension │ │ │ │ │ ├── ActionExtension │ │ │ │ │ │ ├── ActionViewController.h │ │ │ │ │ │ ├── ActionViewController.m │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ │ ├── ExtensionContainer │ │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── ViewController.h │ │ │ │ │ │ ├── ViewController.m │ │ │ │ │ │ └── main.m │ │ │ │ │ └── extension.gyp │ │ │ │ ├── gyptest-app-ios-assets-catalog.py │ │ │ │ ├── gyptest-app-ios.py │ │ │ │ ├── gyptest-archs.py │ │ │ │ ├── gyptest-crosscompile.py │ │ │ │ ├── gyptest-deployment-target.py │ │ │ │ ├── gyptest-extension.py │ │ │ │ ├── gyptest-per-config-settings.py │ │ │ │ ├── gyptest-watch.py │ │ │ │ ├── gyptest-xcode-ninja.py │ │ │ │ └── watch │ │ │ │ │ ├── WatchApp │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── Interface.storyboard │ │ │ │ │ ├── WatchContainer │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ └── Main.storyboard │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── ViewController.h │ │ │ │ │ ├── ViewController.m │ │ │ │ │ └── main.m │ │ │ │ │ ├── WatchKitExtension │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ └── MyImage.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── InterfaceController.h │ │ │ │ │ ├── InterfaceController.m │ │ │ │ │ └── MainInterface.storyboard │ │ │ │ │ └── watch.gyp │ │ │ ├── lib │ │ │ │ ├── README.txt │ │ │ │ ├── TestCmd.py │ │ │ │ ├── TestCommon.py │ │ │ │ ├── TestGyp.py │ │ │ │ ├── TestMac.py │ │ │ │ └── TestWin.py │ │ │ ├── library │ │ │ │ ├── gyptest-shared-obj-install-path.py │ │ │ │ ├── gyptest-shared.py │ │ │ │ ├── gyptest-static.py │ │ │ │ └── src │ │ │ │ │ ├── lib1.c │ │ │ │ │ ├── lib1_moveable.c │ │ │ │ │ ├── lib2.c │ │ │ │ │ ├── lib2_moveable.c │ │ │ │ │ ├── library.gyp │ │ │ │ │ ├── program.c │ │ │ │ │ └── shared_dependency.gyp │ │ │ ├── library_dirs │ │ │ │ ├── gyptest-library-dirs.py │ │ │ │ └── subdir │ │ │ │ │ ├── README.txt │ │ │ │ │ ├── hello.cc │ │ │ │ │ ├── mylib.cc │ │ │ │ │ ├── mylib.h │ │ │ │ │ ├── test-win.gyp │ │ │ │ │ └── test.gyp │ │ │ ├── link-dependency │ │ │ │ ├── gyptest-link-dependency.py │ │ │ │ ├── main.c │ │ │ │ ├── mymalloc.c │ │ │ │ └── test.gyp │ │ │ ├── link-objects │ │ │ │ ├── base.c │ │ │ │ ├── extra.c │ │ │ │ ├── gyptest-all.py │ │ │ │ └── link-objects.gyp │ │ │ ├── linux │ │ │ │ ├── gyptest-implicit-rpath.py │ │ │ │ ├── gyptest-ldflags-duplicates.py │ │ │ │ ├── implicit-rpath │ │ │ │ │ ├── file.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ └── ldflags-duplicates │ │ │ │ │ ├── check-ldflags.py │ │ │ │ │ ├── lib1.c │ │ │ │ │ ├── lib2.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ ├── mac │ │ │ │ ├── action-envvars │ │ │ │ │ └── action │ │ │ │ │ │ ├── action.gyp │ │ │ │ │ │ └── action.sh │ │ │ │ ├── app-bundle │ │ │ │ │ ├── TestApp │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ ├── InfoPlist-error.strings │ │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ │ ├── MainMenu.xib │ │ │ │ │ │ │ ├── utf-16be.strings │ │ │ │ │ │ │ └── utf-16le.strings │ │ │ │ │ │ ├── Images.xcassets │ │ │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── image.imageset │ │ │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ │ │ ├── super_sylvain.png │ │ │ │ │ │ │ │ ├── super_sylvain@2x.png │ │ │ │ │ │ │ │ └── super_sylvain@3x.png │ │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ │ ├── TestAppAppDelegate.h │ │ │ │ │ │ ├── TestAppAppDelegate.m │ │ │ │ │ │ └── main.m │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── test-assets-catalog.gyp │ │ │ │ │ ├── test-error.gyp │ │ │ │ │ └── test.gyp │ │ │ │ ├── archs │ │ │ │ │ ├── empty_main.cc │ │ │ │ │ ├── file.mm │ │ │ │ │ ├── file_a.cc │ │ │ │ │ ├── file_a.h │ │ │ │ │ ├── file_b.cc │ │ │ │ │ ├── file_b.h │ │ │ │ │ ├── file_c.cc │ │ │ │ │ ├── file_d.cc │ │ │ │ │ ├── header.h │ │ │ │ │ ├── my_file.cc │ │ │ │ │ ├── my_main_file.cc │ │ │ │ │ ├── test-archs-multiarch.gyp │ │ │ │ │ ├── test-archs-x86_64.gyp │ │ │ │ │ ├── test-dependencies.gyp │ │ │ │ │ ├── test-no-archs.gyp │ │ │ │ │ └── test-valid-archs.gyp │ │ │ │ ├── bundle-resources │ │ │ │ │ ├── change.sh │ │ │ │ │ ├── executable-file.sh │ │ │ │ │ ├── secret.txt │ │ │ │ │ └── test.gyp │ │ │ │ ├── cflags │ │ │ │ │ ├── ccfile.cc │ │ │ │ │ ├── ccfile_withcflags.cc │ │ │ │ │ ├── cfile.c │ │ │ │ │ ├── cppfile.cpp │ │ │ │ │ ├── cppfile_withcflags.cpp │ │ │ │ │ ├── cxxfile.cxx │ │ │ │ │ ├── cxxfile_withcflags.cxx │ │ │ │ │ ├── mfile.m │ │ │ │ │ ├── mmfile.mm │ │ │ │ │ ├── mmfile_withcflags.mm │ │ │ │ │ └── test.gyp │ │ │ │ ├── clang-cxx-language-standard │ │ │ │ │ ├── c++11.cc │ │ │ │ │ ├── c++98.cc │ │ │ │ │ └── clang-cxx-language-standard.gyp │ │ │ │ ├── clang-cxx-library │ │ │ │ │ ├── clang-cxx-library.gyp │ │ │ │ │ ├── libc++.cc │ │ │ │ │ └── libstdc++.cc │ │ │ │ ├── copy-dylib │ │ │ │ │ ├── empty.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── debuginfo │ │ │ │ │ ├── file.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── depend-on-bundle │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── bundle.c │ │ │ │ │ ├── executable.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── deployment-target │ │ │ │ │ ├── check-version-min.c │ │ │ │ │ └── deployment-target.gyp │ │ │ │ ├── framework-dirs │ │ │ │ │ ├── calculate.c │ │ │ │ │ └── framework-dirs.gyp │ │ │ │ ├── framework-headers │ │ │ │ │ ├── myframework.h │ │ │ │ │ ├── myframework.m │ │ │ │ │ └── test.gyp │ │ │ │ ├── framework │ │ │ │ │ ├── TestFramework │ │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── ObjCVector.h │ │ │ │ │ │ ├── ObjCVector.mm │ │ │ │ │ │ ├── ObjCVectorInternal.h │ │ │ │ │ │ └── TestFramework_Prefix.pch │ │ │ │ │ ├── empty.c │ │ │ │ │ └── framework.gyp │ │ │ │ ├── global-settings │ │ │ │ │ └── src │ │ │ │ │ │ ├── dir1 │ │ │ │ │ │ └── dir1.gyp │ │ │ │ │ │ └── dir2 │ │ │ │ │ │ ├── dir2.gyp │ │ │ │ │ │ └── file.txt │ │ │ │ ├── gyptest-action-envvars.py │ │ │ │ ├── gyptest-app-assets-catalog.py │ │ │ │ ├── gyptest-app-error.py │ │ │ │ ├── gyptest-app.py │ │ │ │ ├── gyptest-archs.py │ │ │ │ ├── gyptest-bundle-resources.py │ │ │ │ ├── gyptest-cflags.py │ │ │ │ ├── gyptest-clang-cxx-language-standard.py │ │ │ │ ├── gyptest-clang-cxx-library.py │ │ │ │ ├── gyptest-copies.py │ │ │ │ ├── gyptest-copy-dylib.py │ │ │ │ ├── gyptest-debuginfo.py │ │ │ │ ├── gyptest-depend-on-bundle.py │ │ │ │ ├── gyptest-deployment-target.py │ │ │ │ ├── gyptest-framework-dirs.py │ │ │ │ ├── gyptest-framework-headers.py │ │ │ │ ├── gyptest-framework.py │ │ │ │ ├── gyptest-global-settings.py │ │ │ │ ├── gyptest-identical-name.py │ │ │ │ ├── gyptest-infoplist-process.py │ │ │ │ ├── gyptest-installname.py │ │ │ │ ├── gyptest-ldflags-passed-to-libtool.py │ │ │ │ ├── gyptest-ldflags.py │ │ │ │ ├── gyptest-libraries.py │ │ │ │ ├── gyptest-libtool-zero.py │ │ │ │ ├── gyptest-loadable-module-bundle-product-extension.py │ │ │ │ ├── gyptest-loadable-module.py │ │ │ │ ├── gyptest-lto.py │ │ │ │ ├── gyptest-missing-cfbundlesignature.py │ │ │ │ ├── gyptest-non-strs-flattened-to-env.py │ │ │ │ ├── gyptest-objc-arc.py │ │ │ │ ├── gyptest-objc-gc.py │ │ │ │ ├── gyptest-postbuild-copy-bundle.py │ │ │ │ ├── gyptest-postbuild-defaults.py │ │ │ │ ├── gyptest-postbuild-fail.py │ │ │ │ ├── gyptest-postbuild-multiple-configurations.py │ │ │ │ ├── gyptest-postbuild-static-library.py │ │ │ │ ├── gyptest-postbuild.py │ │ │ │ ├── gyptest-prefixheader.py │ │ │ │ ├── gyptest-rebuild.py │ │ │ │ ├── gyptest-rpath.py │ │ │ │ ├── gyptest-sdkroot.py │ │ │ │ ├── gyptest-sourceless-module.py │ │ │ │ ├── gyptest-strip-default.py │ │ │ │ ├── gyptest-strip.py │ │ │ │ ├── gyptest-swift-library.py │ │ │ │ ├── gyptest-type-envvars.py │ │ │ │ ├── gyptest-unicode-settings.py │ │ │ │ ├── gyptest-xcode-env-order.py │ │ │ │ ├── gyptest-xcode-gcc-clang.py │ │ │ │ ├── gyptest-xcode-gcc.py │ │ │ │ ├── gyptest-xcode-support-actions.py │ │ │ │ ├── gyptest-xctest.py │ │ │ │ ├── identical-name │ │ │ │ │ ├── proxy │ │ │ │ │ │ ├── proxy.cc │ │ │ │ │ │ ├── proxy.gyp │ │ │ │ │ │ └── testlib │ │ │ │ │ │ │ ├── testlib.cc │ │ │ │ │ │ │ └── testlib.gyp │ │ │ │ │ ├── test-should-fail.gyp │ │ │ │ │ ├── test.gyp │ │ │ │ │ ├── test.gypi │ │ │ │ │ └── testlib │ │ │ │ │ │ ├── main.cc │ │ │ │ │ │ ├── testlib.gyp │ │ │ │ │ │ └── void.cc │ │ │ │ ├── infoplist-process │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── main.c │ │ │ │ │ ├── test1.gyp │ │ │ │ │ ├── test2.gyp │ │ │ │ │ └── test3.gyp │ │ │ │ ├── installname │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── file.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── ldflags-libtool │ │ │ │ │ ├── file.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── ldflags │ │ │ │ │ └── subdirectory │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── file.c │ │ │ │ │ │ ├── symbol_list.def │ │ │ │ │ │ └── test.gyp │ │ │ │ ├── libraries │ │ │ │ │ └── subdir │ │ │ │ │ │ ├── README.txt │ │ │ │ │ │ ├── hello.cc │ │ │ │ │ │ ├── mylib.c │ │ │ │ │ │ └── test.gyp │ │ │ │ ├── libtool-zero │ │ │ │ │ ├── mylib.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── loadable-module-bundle-product-extension │ │ │ │ │ ├── src.cc │ │ │ │ │ └── test.gyp │ │ │ │ ├── loadable-module │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── module.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── lto │ │ │ │ │ ├── asmfile.S │ │ │ │ │ ├── ccfile.cc │ │ │ │ │ ├── cfile.c │ │ │ │ │ ├── mfile.m │ │ │ │ │ ├── mmfile.mm │ │ │ │ │ └── test.gyp │ │ │ │ ├── missing-cfbundlesignature │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Other-Info.plist │ │ │ │ │ ├── Third-Info.plist │ │ │ │ │ ├── file.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── non-strs-flattened-to-env │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── objc-arc │ │ │ │ │ ├── c-file.c │ │ │ │ │ ├── cc-file.cc │ │ │ │ │ ├── m-file-no-arc.m │ │ │ │ │ ├── m-file.m │ │ │ │ │ ├── mm-file-no-arc.mm │ │ │ │ │ ├── mm-file.mm │ │ │ │ │ └── test.gyp │ │ │ │ ├── objc-gc │ │ │ │ │ ├── c-file.c │ │ │ │ │ ├── cc-file.cc │ │ │ │ │ ├── main.m │ │ │ │ │ ├── needs-gc-mm.mm │ │ │ │ │ ├── needs-gc.m │ │ │ │ │ └── test.gyp │ │ │ │ ├── postbuild-copy-bundle │ │ │ │ │ ├── Framework-Info.plist │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ ├── copied.txt │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── postbuild-copy-framework.sh │ │ │ │ │ ├── resource_file.sb │ │ │ │ │ └── test.gyp │ │ │ │ ├── postbuild-defaults │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── main.c │ │ │ │ │ ├── postbuild-defaults.sh │ │ │ │ │ └── test.gyp │ │ │ │ ├── postbuild-fail │ │ │ │ │ ├── file.c │ │ │ │ │ ├── postbuild-fail.sh │ │ │ │ │ ├── test.gyp │ │ │ │ │ ├── touch-dynamic.sh │ │ │ │ │ └── touch-static.sh │ │ │ │ ├── postbuild-multiple-configurations │ │ │ │ │ ├── main.c │ │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ │ └── test.gyp │ │ │ │ ├── postbuild-static-library │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── postbuild-touch-file.sh │ │ │ │ │ └── test.gyp │ │ │ │ ├── postbuilds │ │ │ │ │ ├── copy.sh │ │ │ │ │ ├── file.c │ │ │ │ │ ├── file_g.c │ │ │ │ │ ├── file_h.c │ │ │ │ │ ├── script │ │ │ │ │ │ ├── shared_library_postbuild.sh │ │ │ │ │ │ └── static_library_postbuild.sh │ │ │ │ │ ├── subdirectory │ │ │ │ │ │ ├── copied_file.txt │ │ │ │ │ │ └── nested_target.gyp │ │ │ │ │ └── test.gyp │ │ │ │ ├── prefixheader │ │ │ │ │ ├── file.c │ │ │ │ │ ├── file.cc │ │ │ │ │ ├── file.m │ │ │ │ │ ├── file.mm │ │ │ │ │ ├── header.h │ │ │ │ │ └── test.gyp │ │ │ │ ├── rebuild │ │ │ │ │ ├── TestApp-Info.plist │ │ │ │ │ ├── delay-touch.sh │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── rpath │ │ │ │ │ ├── file.c │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── sdkroot │ │ │ │ │ ├── file.cc │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── test_shorthand.sh │ │ │ │ ├── sourceless-module │ │ │ │ │ ├── empty.c │ │ │ │ │ ├── empty.txt │ │ │ │ │ ├── fun.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── strip │ │ │ │ │ ├── file.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── strip.saves │ │ │ │ │ ├── subdirectory │ │ │ │ │ │ ├── nested_file.c │ │ │ │ │ │ ├── nested_strip.saves │ │ │ │ │ │ ├── subdirectory.gyp │ │ │ │ │ │ └── test_reading_save_file_from_postbuild.sh │ │ │ │ │ ├── test-defaults.gyp │ │ │ │ │ └── test.gyp │ │ │ │ ├── swift-library │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── file.swift │ │ │ │ │ └── test.gyp │ │ │ │ ├── type_envvars │ │ │ │ │ ├── file.c │ │ │ │ │ ├── test.gyp │ │ │ │ │ ├── test_bundle_executable.sh │ │ │ │ │ ├── test_bundle_loadable_module.sh │ │ │ │ │ ├── test_bundle_shared_library.sh │ │ │ │ │ ├── test_check_sdkroot.sh │ │ │ │ │ ├── test_nonbundle_executable.sh │ │ │ │ │ ├── test_nonbundle_loadable_module.sh │ │ │ │ │ ├── test_nonbundle_none.sh │ │ │ │ │ ├── test_nonbundle_shared_library.sh │ │ │ │ │ └── test_nonbundle_static_library.sh │ │ │ │ ├── unicode-settings │ │ │ │ │ ├── file.cc │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── test_bundle_display_name.sh │ │ │ │ ├── xcode-env-order │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── file.ext1 │ │ │ │ │ ├── file.ext2 │ │ │ │ │ ├── file.ext3 │ │ │ │ │ ├── main.c │ │ │ │ │ └── test.gyp │ │ │ │ ├── xcode-gcc │ │ │ │ │ ├── aliasing.cc │ │ │ │ │ ├── test-clang.gyp │ │ │ │ │ ├── test.gyp │ │ │ │ │ ├── valid_c.c │ │ │ │ │ ├── valid_cc.cc │ │ │ │ │ ├── valid_m.m │ │ │ │ │ ├── valid_mm.mm │ │ │ │ │ ├── warn_about_invalid_offsetof_macro.cc │ │ │ │ │ └── warn_about_missing_newline.c │ │ │ │ ├── xcode-support-actions │ │ │ │ │ ├── source.c │ │ │ │ │ └── test.gyp │ │ │ │ └── xctest │ │ │ │ │ ├── MyClass.h │ │ │ │ │ ├── MyClass.m │ │ │ │ │ ├── TestCase.m │ │ │ │ │ ├── resource.txt │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── test.xcodeproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── classes.xcscheme │ │ │ ├── make │ │ │ │ ├── dependencies.gyp │ │ │ │ ├── gyptest-dependencies.py │ │ │ │ ├── gyptest-noload.py │ │ │ │ ├── main.cc │ │ │ │ ├── main.h │ │ │ │ └── noload │ │ │ │ │ ├── all.gyp │ │ │ │ │ ├── lib │ │ │ │ │ ├── shared.c │ │ │ │ │ ├── shared.gyp │ │ │ │ │ └── shared.h │ │ │ │ │ └── main.c │ │ │ ├── make_global_settings │ │ │ │ ├── ar │ │ │ │ │ ├── gyptest-make_global_settings_ar.py │ │ │ │ │ └── make_global_settings_ar.gyp │ │ │ │ ├── basics │ │ │ │ │ ├── gyptest-make_global_settings.py │ │ │ │ │ └── make_global_settings.gyp │ │ │ │ ├── env-wrapper │ │ │ │ │ ├── gyptest-wrapper.py │ │ │ │ │ └── wrapper.gyp │ │ │ │ ├── full-toolchain │ │ │ │ │ ├── bar.cc │ │ │ │ │ ├── foo.c │ │ │ │ │ ├── gyptest-make_global_settings.py │ │ │ │ │ ├── make_global_settings.gyp │ │ │ │ │ ├── my_nm.py │ │ │ │ │ └── my_readelf.py │ │ │ │ ├── ld │ │ │ │ │ ├── gyptest-make_global_settings_ld.py │ │ │ │ │ └── make_global_settings_ld.gyp │ │ │ │ └── wrapper │ │ │ │ │ ├── gyptest-wrapper.py │ │ │ │ │ └── wrapper.gyp │ │ │ ├── many-actions │ │ │ │ ├── file0 │ │ │ │ ├── file1 │ │ │ │ ├── file2 │ │ │ │ ├── file3 │ │ │ │ ├── file4 │ │ │ │ ├── gyptest-many-actions-unsorted.py │ │ │ │ ├── gyptest-many-actions.py │ │ │ │ ├── many-actions-unsorted.gyp │ │ │ │ └── many-actions.gyp │ │ │ ├── module │ │ │ │ ├── gyptest-default.py │ │ │ │ └── src │ │ │ │ │ ├── lib1.c │ │ │ │ │ ├── lib2.c │ │ │ │ │ ├── module.gyp │ │ │ │ │ └── program.c │ │ │ ├── msvs │ │ │ │ ├── buildevents │ │ │ │ │ ├── buildevents.gyp │ │ │ │ │ ├── gyptest-msbuild-supports-prepostbuild.py │ │ │ │ │ ├── gyptest-ninja-warnings.py │ │ │ │ │ └── main.cc │ │ │ │ ├── config_attrs │ │ │ │ │ ├── gyptest-config_attrs.py │ │ │ │ │ ├── hello.c │ │ │ │ │ └── hello.gyp │ │ │ │ ├── express │ │ │ │ │ ├── base │ │ │ │ │ │ └── base.gyp │ │ │ │ │ ├── express.gyp │ │ │ │ │ └── gyptest-express.py │ │ │ │ ├── external_builder │ │ │ │ │ ├── external.gyp │ │ │ │ │ ├── external_builder.py │ │ │ │ │ ├── gyptest-all.py │ │ │ │ │ ├── hello.cpp │ │ │ │ │ ├── hello.z │ │ │ │ │ ├── msbuild_action.py │ │ │ │ │ └── msbuild_rule.py │ │ │ │ ├── filters │ │ │ │ │ ├── filters.gyp │ │ │ │ │ ├── gyptest-filters-2008.py │ │ │ │ │ └── gyptest-filters-2010.py │ │ │ │ ├── list_excluded │ │ │ │ │ ├── gyptest-all.py │ │ │ │ │ ├── hello.cpp │ │ │ │ │ ├── hello_exclude.gyp │ │ │ │ │ └── hello_mac.cpp │ │ │ │ ├── missing_sources │ │ │ │ │ ├── gyptest-missing.py │ │ │ │ │ └── hello_missing.gyp │ │ │ │ ├── multiple_actions_error_handling │ │ │ │ │ ├── action_fail.py │ │ │ │ │ ├── action_succeed.py │ │ │ │ │ ├── actions.gyp │ │ │ │ │ └── gyptest.py │ │ │ │ ├── props │ │ │ │ │ ├── AppName.props │ │ │ │ │ ├── AppName.vsprops │ │ │ │ │ ├── gyptest-props.py │ │ │ │ │ ├── hello.c │ │ │ │ │ └── hello.gyp │ │ │ │ ├── rules_stdout_stderr │ │ │ │ │ ├── dummy.bar │ │ │ │ │ ├── dummy.foo │ │ │ │ │ ├── gyptest-rules-stdout-stderr.py │ │ │ │ │ ├── rule_stderr.py │ │ │ │ │ ├── rule_stdout.py │ │ │ │ │ └── rules-stdout-stderr.gyp │ │ │ │ ├── shared_output │ │ │ │ │ ├── common.gypi │ │ │ │ │ ├── gyptest-shared_output.py │ │ │ │ │ ├── hello.c │ │ │ │ │ ├── hello.gyp │ │ │ │ │ └── there │ │ │ │ │ │ ├── there.c │ │ │ │ │ │ └── there.gyp │ │ │ │ └── uldi2010 │ │ │ │ │ ├── gyptest-all.py │ │ │ │ │ ├── hello.c │ │ │ │ │ ├── hello.gyp │ │ │ │ │ └── hello2.c │ │ │ ├── multiple-targets │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ └── src │ │ │ │ │ ├── common.c │ │ │ │ │ ├── multiple.gyp │ │ │ │ │ ├── prog1.c │ │ │ │ │ └── prog2.c │ │ │ ├── ninja │ │ │ │ ├── action-rule-hash │ │ │ │ │ ├── gyptest-action-rule-hash.py │ │ │ │ │ └── subdir │ │ │ │ │ │ ├── action-rule-hash.gyp │ │ │ │ │ │ └── emit.py │ │ │ │ ├── action_dependencies │ │ │ │ │ ├── gyptest-action-dependencies.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── a.c │ │ │ │ │ │ ├── a.h │ │ │ │ │ │ ├── action_dependencies.gyp │ │ │ │ │ │ ├── b.c │ │ │ │ │ │ ├── b.h │ │ │ │ │ │ ├── c.c │ │ │ │ │ │ ├── c.h │ │ │ │ │ │ └── emit.py │ │ │ │ ├── chained-dependency │ │ │ │ │ ├── chained-dependency.gyp │ │ │ │ │ ├── chained.c │ │ │ │ │ └── gyptest-chained-dependency.py │ │ │ │ ├── empty-and-non-empty-duplicate-name │ │ │ │ │ ├── gyptest-empty-and-non-empty-duplicate-name.py │ │ │ │ │ ├── subdir │ │ │ │ │ │ └── included.gyp │ │ │ │ │ └── test.gyp │ │ │ │ ├── normalize-paths-win │ │ │ │ │ ├── gyptest-normalize-paths.py │ │ │ │ │ ├── hello.cc │ │ │ │ │ └── normalize-paths.gyp │ │ │ │ ├── s-needs-no-depfiles │ │ │ │ │ ├── empty.s │ │ │ │ │ ├── gyptest-s-needs-no-depfiles.py │ │ │ │ │ └── s-needs-no-depfiles.gyp │ │ │ │ ├── solibs_avoid_relinking │ │ │ │ │ ├── gyptest-solibs-avoid-relinking.py │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── solib.cc │ │ │ │ │ └── solibs_avoid_relinking.gyp │ │ │ │ ├── use-console │ │ │ │ │ ├── foo.bar │ │ │ │ │ ├── gyptest-use-console.py │ │ │ │ │ └── use-console.gyp │ │ │ │ └── use-custom-environment-files │ │ │ │ │ ├── gyptest-use-custom-environment-files.py │ │ │ │ │ ├── use-custom-environment-files.cc │ │ │ │ │ └── use-custom-environment-files.gyp │ │ │ ├── no-cpp │ │ │ │ ├── gyptest-no-cpp.py │ │ │ │ └── src │ │ │ │ │ ├── call-f-main.c │ │ │ │ │ ├── empty-main.c │ │ │ │ │ ├── f.cc │ │ │ │ │ └── test.gyp │ │ │ ├── no-output │ │ │ │ ├── gyptest-no-output.py │ │ │ │ └── src │ │ │ │ │ └── nooutput.gyp │ │ │ ├── product │ │ │ │ ├── gyptest-product.py │ │ │ │ ├── hello.c │ │ │ │ └── product.gyp │ │ │ ├── prune_targets │ │ │ │ ├── gyptest-prune-targets.py │ │ │ │ ├── lib1.cc │ │ │ │ ├── lib2.cc │ │ │ │ ├── lib3.cc │ │ │ │ ├── lib_indirect.cc │ │ │ │ ├── program.cc │ │ │ │ ├── test1.gyp │ │ │ │ └── test2.gyp │ │ │ ├── relative │ │ │ │ ├── foo │ │ │ │ │ ├── a │ │ │ │ │ │ ├── a.cc │ │ │ │ │ │ ├── a.gyp │ │ │ │ │ │ └── c │ │ │ │ │ │ │ ├── c.cc │ │ │ │ │ │ │ └── c.gyp │ │ │ │ │ └── b │ │ │ │ │ │ ├── b.cc │ │ │ │ │ │ └── b.gyp │ │ │ │ └── gyptest-default.py │ │ │ ├── rename │ │ │ │ ├── filecase │ │ │ │ │ ├── file.c │ │ │ │ │ ├── test-casesensitive.gyp │ │ │ │ │ └── test.gyp │ │ │ │ └── gyptest-filecase.py │ │ │ ├── restat │ │ │ │ ├── gyptest-restat.py │ │ │ │ └── src │ │ │ │ │ ├── create_intermediate.py │ │ │ │ │ ├── restat.gyp │ │ │ │ │ └── touch.py │ │ │ ├── rules-dirname │ │ │ │ ├── gyptest-dirname.py │ │ │ │ └── src │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── copy-file.py │ │ │ │ │ └── subdir │ │ │ │ │ ├── a │ │ │ │ │ └── b │ │ │ │ │ │ ├── c.gencc │ │ │ │ │ │ └── c.printvars │ │ │ │ │ ├── foo │ │ │ │ │ └── bar │ │ │ │ │ │ ├── baz.gencc │ │ │ │ │ │ └── baz.printvars │ │ │ │ │ ├── input-rule-dirname.gyp │ │ │ │ │ ├── main.cc │ │ │ │ │ ├── nodir.gencc │ │ │ │ │ └── printvars.py │ │ │ ├── rules-rebuild │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ └── src │ │ │ │ │ ├── main.c │ │ │ │ │ ├── make-sources.py │ │ │ │ │ ├── prog1.in │ │ │ │ │ ├── prog2.in │ │ │ │ │ └── same_target.gyp │ │ │ ├── rules-use-built-dependencies │ │ │ │ ├── gyptest-use-built-dependencies.py │ │ │ │ └── src │ │ │ │ │ ├── main.cc │ │ │ │ │ └── use-built-dependencies-rule.gyp │ │ │ ├── rules-variables │ │ │ │ ├── gyptest-rules-variables.py │ │ │ │ └── src │ │ │ │ │ ├── input_ext.c │ │ │ │ │ ├── input_name │ │ │ │ │ └── test.c │ │ │ │ │ ├── input_path │ │ │ │ │ └── subdir │ │ │ │ │ │ └── test.c │ │ │ │ │ ├── subdir │ │ │ │ │ ├── input_dirname.c │ │ │ │ │ └── test.c │ │ │ │ │ ├── test.input_root.c │ │ │ │ │ └── variables.gyp │ │ │ ├── rules │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-input-root.py │ │ │ │ ├── gyptest-special-variables.py │ │ │ │ └── src │ │ │ │ │ ├── actions.gyp │ │ │ │ │ ├── an_asm.S │ │ │ │ │ ├── as.bat │ │ │ │ │ ├── copy-file.py │ │ │ │ │ ├── external │ │ │ │ │ ├── external.gyp │ │ │ │ │ ├── file1.in │ │ │ │ │ └── file2.in │ │ │ │ │ ├── input-root.gyp │ │ │ │ │ ├── noaction │ │ │ │ │ ├── file1.in │ │ │ │ │ └── no_action_with_rules_fails.gyp │ │ │ │ │ ├── rule.py │ │ │ │ │ ├── somefile.ext │ │ │ │ │ ├── special-variables.gyp │ │ │ │ │ ├── subdir1 │ │ │ │ │ ├── executable.gyp │ │ │ │ │ ├── function1.in │ │ │ │ │ ├── function2.in │ │ │ │ │ └── program.c │ │ │ │ │ ├── subdir2 │ │ │ │ │ ├── both_rule_and_action_input.gyp │ │ │ │ │ ├── file1.in │ │ │ │ │ ├── file2.in │ │ │ │ │ ├── never_used.gyp │ │ │ │ │ ├── no_action.gyp │ │ │ │ │ ├── no_inputs.gyp │ │ │ │ │ ├── none.gyp │ │ │ │ │ └── program.c │ │ │ │ │ ├── subdir3 │ │ │ │ │ ├── executable2.gyp │ │ │ │ │ ├── function3.in │ │ │ │ │ └── program.c │ │ │ │ │ └── subdir4 │ │ │ │ │ ├── asm-function.assem │ │ │ │ │ ├── build-asm.gyp │ │ │ │ │ └── program.c │ │ │ ├── same-gyp-name │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-library.py │ │ │ │ ├── library │ │ │ │ │ ├── one │ │ │ │ │ │ └── sub.gyp │ │ │ │ │ ├── test.gyp │ │ │ │ │ └── two │ │ │ │ │ │ └── sub.gyp │ │ │ │ └── src │ │ │ │ │ ├── all.gyp │ │ │ │ │ ├── subdir1 │ │ │ │ │ ├── executable.gyp │ │ │ │ │ └── main1.cc │ │ │ │ │ └── subdir2 │ │ │ │ │ ├── executable.gyp │ │ │ │ │ └── main2.cc │ │ │ ├── same-rule-output-file-name │ │ │ │ ├── gyptest-all.py │ │ │ │ └── src │ │ │ │ │ ├── subdir1 │ │ │ │ │ └── subdir1.gyp │ │ │ │ │ ├── subdir2 │ │ │ │ │ └── subdir2.gyp │ │ │ │ │ ├── subdirs.gyp │ │ │ │ │ └── touch.py │ │ │ ├── same-source-file-name │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-default.py │ │ │ │ ├── gyptest-pass-executable.py │ │ │ │ ├── gyptest-pass-shared.py │ │ │ │ ├── gyptest-static.py │ │ │ │ └── src │ │ │ │ │ ├── all.gyp │ │ │ │ │ ├── double-executable.gyp │ │ │ │ │ ├── double-shared.gyp │ │ │ │ │ ├── double-static.gyp │ │ │ │ │ ├── func.c │ │ │ │ │ ├── prog1.c │ │ │ │ │ ├── prog2.c │ │ │ │ │ ├── prog3.c │ │ │ │ │ ├── subdir1 │ │ │ │ │ └── func.c │ │ │ │ │ └── subdir2 │ │ │ │ │ └── func.c │ │ │ ├── same-target-name-different-directory │ │ │ │ ├── gyptest-all.py │ │ │ │ └── src │ │ │ │ │ ├── subdir1 │ │ │ │ │ └── subdir1.gyp │ │ │ │ │ ├── subdir2 │ │ │ │ │ └── subdir2.gyp │ │ │ │ │ ├── subdirs.gyp │ │ │ │ │ └── touch.py │ │ │ ├── same-target-name │ │ │ │ ├── gyptest-same-target-name.py │ │ │ │ └── src │ │ │ │ │ ├── all.gyp │ │ │ │ │ ├── executable1.gyp │ │ │ │ │ └── executable2.gyp │ │ │ ├── sanitize-rule-names │ │ │ │ ├── blah.S │ │ │ │ ├── gyptest-sanitize-rule-names.py │ │ │ │ ├── hello.cc │ │ │ │ ├── sanitize-rule-names.gyp │ │ │ │ └── script.py │ │ │ ├── self-dependency │ │ │ │ ├── common.gypi │ │ │ │ ├── dep.gyp │ │ │ │ ├── gyptest-self-dependency.py │ │ │ │ └── self_dependency.gyp │ │ │ ├── sibling │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── gyptest-relocate.py │ │ │ │ └── src │ │ │ │ │ ├── build │ │ │ │ │ └── all.gyp │ │ │ │ │ ├── prog1 │ │ │ │ │ ├── prog1.c │ │ │ │ │ └── prog1.gyp │ │ │ │ │ └── prog2 │ │ │ │ │ ├── prog2.c │ │ │ │ │ └── prog2.gyp │ │ │ ├── small │ │ │ │ └── gyptest-small.py │ │ │ ├── standalone-static-library │ │ │ │ ├── gyptest-standalone-static-library.py │ │ │ │ ├── invalid.gyp │ │ │ │ ├── mylib.c │ │ │ │ ├── mylib.gyp │ │ │ │ └── prog.c │ │ │ ├── standalone │ │ │ │ ├── gyptest-standalone.py │ │ │ │ └── standalone.gyp │ │ │ ├── subdirectory │ │ │ │ ├── gyptest-SYMROOT-all.py │ │ │ │ ├── gyptest-SYMROOT-default.py │ │ │ │ ├── gyptest-subdir-all.py │ │ │ │ ├── gyptest-subdir-default.py │ │ │ │ ├── gyptest-subdir2-deep.py │ │ │ │ ├── gyptest-top-all.py │ │ │ │ ├── gyptest-top-default.py │ │ │ │ └── src │ │ │ │ │ ├── prog1.c │ │ │ │ │ ├── prog1.gyp │ │ │ │ │ ├── subdir │ │ │ │ │ ├── prog2.c │ │ │ │ │ ├── prog2.gyp │ │ │ │ │ └── subdir2 │ │ │ │ │ │ ├── prog3.c │ │ │ │ │ │ └── prog3.gyp │ │ │ │ │ └── symroot.gypi │ │ │ ├── target │ │ │ │ ├── gyptest-target.py │ │ │ │ ├── hello.c │ │ │ │ └── target.gyp │ │ │ ├── toolsets │ │ │ │ ├── gyptest-toolsets.py │ │ │ │ ├── main.cc │ │ │ │ ├── toolsets.cc │ │ │ │ ├── toolsets.gyp │ │ │ │ └── toolsets_shared.cc │ │ │ ├── toplevel-dir │ │ │ │ ├── gyptest-toplevel-dir.py │ │ │ │ └── src │ │ │ │ │ ├── sub1 │ │ │ │ │ ├── main.gyp │ │ │ │ │ └── prog1.c │ │ │ │ │ └── sub2 │ │ │ │ │ ├── prog2.c │ │ │ │ │ └── prog2.gyp │ │ │ ├── variables │ │ │ │ ├── commands │ │ │ │ │ ├── commands-repeated.gyp │ │ │ │ │ ├── commands-repeated.gyp.stdout │ │ │ │ │ ├── commands-repeated.gypd.golden │ │ │ │ │ ├── commands.gyp │ │ │ │ │ ├── commands.gyp.ignore-env.stdout │ │ │ │ │ ├── commands.gyp.stdout │ │ │ │ │ ├── commands.gypd.golden │ │ │ │ │ ├── commands.gypi │ │ │ │ │ ├── gyptest-commands-ignore-env.py │ │ │ │ │ ├── gyptest-commands-repeated-multidir.py │ │ │ │ │ ├── gyptest-commands-repeated.py │ │ │ │ │ ├── gyptest-commands.py │ │ │ │ │ ├── repeated_multidir │ │ │ │ │ │ ├── dir_1 │ │ │ │ │ │ │ └── test_1.gyp │ │ │ │ │ │ ├── dir_2 │ │ │ │ │ │ │ └── test_2.gyp │ │ │ │ │ │ ├── main.gyp │ │ │ │ │ │ ├── print_cwd_basename.py │ │ │ │ │ │ └── repeated_command_common.gypi │ │ │ │ │ ├── test.py │ │ │ │ │ └── update_golden │ │ │ │ ├── filelist │ │ │ │ │ ├── filelist.gyp.stdout │ │ │ │ │ ├── filelist.gypd.golden │ │ │ │ │ ├── gyptest-filelist-golden.py │ │ │ │ │ ├── gyptest-filelist.py │ │ │ │ │ ├── src │ │ │ │ │ │ ├── dummy.py │ │ │ │ │ │ ├── filelist.gyp │ │ │ │ │ │ └── filelist2.gyp │ │ │ │ │ └── update_golden │ │ │ │ ├── latelate │ │ │ │ │ ├── gyptest-latelate.py │ │ │ │ │ └── src │ │ │ │ │ │ ├── latelate.gyp │ │ │ │ │ │ └── program.cc │ │ │ │ └── variable-in-path │ │ │ │ │ ├── C1 │ │ │ │ │ └── hello.cc │ │ │ │ │ ├── gyptest-variable-in-path.py │ │ │ │ │ └── variable-in-path.gyp │ │ │ └── win │ │ │ │ ├── asm-files │ │ │ │ ├── asm-files.gyp │ │ │ │ ├── b.s │ │ │ │ ├── c.S │ │ │ │ └── hello.cc │ │ │ │ ├── batch-file-action │ │ │ │ ├── batch-file-action.gyp │ │ │ │ ├── infile │ │ │ │ └── somecmd.bat │ │ │ │ ├── command-quote │ │ │ │ ├── a.S │ │ │ │ ├── bat with spaces.bat │ │ │ │ ├── command-quote.gyp │ │ │ │ ├── go.bat │ │ │ │ └── subdir │ │ │ │ │ └── and │ │ │ │ │ └── another │ │ │ │ │ └── in-subdir.gyp │ │ │ │ ├── compiler-flags │ │ │ │ ├── additional-include-dirs.cc │ │ │ │ ├── additional-include-dirs.gyp │ │ │ │ ├── additional-options.cc │ │ │ │ ├── additional-options.gyp │ │ │ │ ├── analysis.gyp │ │ │ │ ├── buffer-security-check.gyp │ │ │ │ ├── buffer-security.cc │ │ │ │ ├── calling-convention-cdecl.def │ │ │ │ ├── calling-convention-fastcall.def │ │ │ │ ├── calling-convention-stdcall.def │ │ │ │ ├── calling-convention-vectorcall.def │ │ │ │ ├── calling-convention.cc │ │ │ │ ├── calling-convention.gyp │ │ │ │ ├── character-set-mbcs.cc │ │ │ │ ├── character-set-unicode.cc │ │ │ │ ├── character-set.gyp │ │ │ │ ├── compile-as-managed.cc │ │ │ │ ├── compile-as-managed.gyp │ │ │ │ ├── debug-format.gyp │ │ │ │ ├── default-char-is-unsigned.cc │ │ │ │ ├── default-char-is-unsigned.gyp │ │ │ │ ├── disable-specific-warnings.cc │ │ │ │ ├── disable-specific-warnings.gyp │ │ │ │ ├── enable-enhanced-instruction-set.cc │ │ │ │ ├── enable-enhanced-instruction-set.gyp │ │ │ │ ├── exception-handling-on.cc │ │ │ │ ├── exception-handling.gyp │ │ │ │ ├── floating-point-model-fast.cc │ │ │ │ ├── floating-point-model-precise.cc │ │ │ │ ├── floating-point-model-strict.cc │ │ │ │ ├── floating-point-model.gyp │ │ │ │ ├── force-include-files-with-precompiled.cc │ │ │ │ ├── force-include-files.cc │ │ │ │ ├── force-include-files.gyp │ │ │ │ ├── function-level-linking.cc │ │ │ │ ├── function-level-linking.gyp │ │ │ │ ├── hello.cc │ │ │ │ ├── optimizations.gyp │ │ │ │ ├── pdbname-override.gyp │ │ │ │ ├── pdbname.cc │ │ │ │ ├── pdbname.gyp │ │ │ │ ├── precomp.cc │ │ │ │ ├── rtti-on.cc │ │ │ │ ├── rtti.gyp │ │ │ │ ├── runtime-checks.cc │ │ │ │ ├── runtime-checks.gyp │ │ │ │ ├── runtime-library-md.cc │ │ │ │ ├── runtime-library-mdd.cc │ │ │ │ ├── runtime-library-mt.cc │ │ │ │ ├── runtime-library-mtd.cc │ │ │ │ ├── runtime-library.gyp │ │ │ │ ├── subdir │ │ │ │ │ └── header.h │ │ │ │ ├── treat-wchar-t-as-built-in-type.gyp │ │ │ │ ├── treat-wchar-t-as-built-in-type1.cc │ │ │ │ ├── treat-wchar-t-as-built-in-type2.cc │ │ │ │ ├── uninit.cc │ │ │ │ ├── warning-as-error.cc │ │ │ │ ├── warning-as-error.gyp │ │ │ │ ├── warning-level.gyp │ │ │ │ ├── warning-level1.cc │ │ │ │ ├── warning-level2.cc │ │ │ │ ├── warning-level3.cc │ │ │ │ └── warning-level4.cc │ │ │ │ ├── enable-winrt │ │ │ │ ├── dllmain.cc │ │ │ │ └── enable-winrt.gyp │ │ │ │ ├── generator-output-different-drive │ │ │ │ ├── gyptest-generator-output-different-drive.py │ │ │ │ ├── prog.c │ │ │ │ └── prog.gyp │ │ │ │ ├── gyptest-asm-files.py │ │ │ │ ├── gyptest-cl-additional-include-dirs.py │ │ │ │ ├── gyptest-cl-additional-options.py │ │ │ │ ├── gyptest-cl-analysis.py │ │ │ │ ├── gyptest-cl-buffer-security-check.py │ │ │ │ ├── gyptest-cl-calling-convention.py │ │ │ │ ├── gyptest-cl-character-set.py │ │ │ │ ├── gyptest-cl-compile-as-managed.py │ │ │ │ ├── gyptest-cl-debug-format.py │ │ │ │ ├── gyptest-cl-default-char-is-unsigned.py │ │ │ │ ├── gyptest-cl-disable-specific-warnings.py │ │ │ │ ├── gyptest-cl-enable-enhanced-instruction-set.py │ │ │ │ ├── gyptest-cl-exception-handling.py │ │ │ │ ├── gyptest-cl-floating-point-model.py │ │ │ │ ├── gyptest-cl-force-include-files.py │ │ │ │ ├── gyptest-cl-function-level-linking.py │ │ │ │ ├── gyptest-cl-optimizations.py │ │ │ │ ├── gyptest-cl-pdbname-override.py │ │ │ │ ├── gyptest-cl-pdbname.py │ │ │ │ ├── gyptest-cl-rtti.py │ │ │ │ ├── gyptest-cl-runtime-checks.py │ │ │ │ ├── gyptest-cl-runtime-library.py │ │ │ │ ├── gyptest-cl-treat-wchar-t-as-built-in-type.py │ │ │ │ ├── gyptest-cl-warning-as-error.py │ │ │ │ ├── gyptest-cl-warning-level.py │ │ │ │ ├── gyptest-command-quote.py │ │ │ │ ├── gyptest-lib-ltcg.py │ │ │ │ ├── gyptest-link-additional-deps.py │ │ │ │ ├── gyptest-link-additional-options.py │ │ │ │ ├── gyptest-link-aslr.py │ │ │ │ ├── gyptest-link-base-address.py │ │ │ │ ├── gyptest-link-debug-info.py │ │ │ │ ├── gyptest-link-default-libs.py │ │ │ │ ├── gyptest-link-deffile.py │ │ │ │ ├── gyptest-link-defrelink.py │ │ │ │ ├── gyptest-link-delay-load-dlls.py │ │ │ │ ├── gyptest-link-embed-manifest.py │ │ │ │ ├── gyptest-link-enable-uac.py │ │ │ │ ├── gyptest-link-enable-winrt-app-revision.py │ │ │ │ ├── gyptest-link-enable-winrt-target-platform-version.py │ │ │ │ ├── gyptest-link-enable-winrt.py │ │ │ │ ├── gyptest-link-entrypointsymbol.py │ │ │ │ ├── gyptest-link-fixed-base.py │ │ │ │ ├── gyptest-link-force-symbol-reference.py │ │ │ │ ├── gyptest-link-generate-manifest.py │ │ │ │ ├── gyptest-link-incremental.py │ │ │ │ ├── gyptest-link-large-address-aware.py │ │ │ │ ├── gyptest-link-large-pdb.py │ │ │ │ ├── gyptest-link-library-adjust.py │ │ │ │ ├── gyptest-link-library-directories.py │ │ │ │ ├── gyptest-link-ltcg.py │ │ │ │ ├── gyptest-link-mapfile.py │ │ │ │ ├── gyptest-link-nodefaultlib.py │ │ │ │ ├── gyptest-link-noimportlib.py │ │ │ │ ├── gyptest-link-nxcompat.py │ │ │ │ ├── gyptest-link-opt-icf.py │ │ │ │ ├── gyptest-link-opt-ref.py │ │ │ │ ├── gyptest-link-ordering.py │ │ │ │ ├── gyptest-link-outputfile.py │ │ │ │ ├── gyptest-link-pdb-no-output.py │ │ │ │ ├── gyptest-link-pdb-output.py │ │ │ │ ├── gyptest-link-pdb.py │ │ │ │ ├── gyptest-link-pgo.py │ │ │ │ ├── gyptest-link-profile.py │ │ │ │ ├── gyptest-link-restat-importlib.py │ │ │ │ ├── gyptest-link-safeseh.py │ │ │ │ ├── gyptest-link-shard.py │ │ │ │ ├── gyptest-link-stacksize.py │ │ │ │ ├── gyptest-link-subsystem.py │ │ │ │ ├── gyptest-link-target-machine.py │ │ │ │ ├── gyptest-link-tsaware.py │ │ │ │ ├── gyptest-link-uldi.py │ │ │ │ ├── gyptest-link-unsupported-manifest.py │ │ │ │ ├── gyptest-link-update-manifest.py │ │ │ │ ├── gyptest-link-warnings-as-errors.py │ │ │ │ ├── gyptest-long-command-line.py │ │ │ │ ├── gyptest-macro-projectname.py │ │ │ │ ├── gyptest-macro-targetext.py │ │ │ │ ├── gyptest-macro-targetfilename.py │ │ │ │ ├── gyptest-macro-targetname.py │ │ │ │ ├── gyptest-macro-targetpath.py │ │ │ │ ├── gyptest-macro-vcinstalldir.py │ │ │ │ ├── gyptest-macros-containing-gyp.py │ │ │ │ ├── gyptest-macros-in-inputs-and-outputs.py │ │ │ │ ├── gyptest-midl-excluded.py │ │ │ │ ├── gyptest-midl-includedirs.py │ │ │ │ ├── gyptest-midl-rules.py │ │ │ │ ├── gyptest-ml-safeseh.py │ │ │ │ ├── gyptest-quoting-commands.py │ │ │ │ ├── gyptest-rc-build.py │ │ │ │ ├── gyptest-system-include.py │ │ │ │ ├── idl-excluded │ │ │ │ ├── bad.idl │ │ │ │ ├── copy-file.py │ │ │ │ ├── idl-excluded.gyp │ │ │ │ └── program.cc │ │ │ │ ├── idl-includedirs │ │ │ │ ├── hello.cc │ │ │ │ ├── idl-includedirs.gyp │ │ │ │ └── subdir │ │ │ │ │ ├── bar.idl │ │ │ │ │ └── foo.idl │ │ │ │ ├── idl-rules │ │ │ │ ├── Window.idl │ │ │ │ ├── basic-idl.gyp │ │ │ │ ├── history_indexer.idl │ │ │ │ ├── history_indexer_user.cc │ │ │ │ └── idl_compiler.py │ │ │ │ ├── importlib │ │ │ │ ├── dll_no_exports.cc │ │ │ │ ├── has-exports.cc │ │ │ │ ├── hello.cc │ │ │ │ ├── importlib.gyp │ │ │ │ └── noimplib.gyp │ │ │ │ ├── large-pdb │ │ │ │ ├── dllmain.cc │ │ │ │ ├── large-pdb.gyp │ │ │ │ └── main.cc │ │ │ │ ├── lib-flags │ │ │ │ ├── answer.cc │ │ │ │ ├── answer.h │ │ │ │ └── ltcg.gyp │ │ │ │ ├── linker-flags │ │ │ │ ├── a │ │ │ │ │ ├── x.cc │ │ │ │ │ └── z.cc │ │ │ │ ├── additional-deps.cc │ │ │ │ ├── additional-deps.gyp │ │ │ │ ├── additional-options.gyp │ │ │ │ ├── aslr.gyp │ │ │ │ ├── b │ │ │ │ │ └── y.cc │ │ │ │ ├── base-address.gyp │ │ │ │ ├── debug-info.gyp │ │ │ │ ├── deffile-multiple.gyp │ │ │ │ ├── deffile.cc │ │ │ │ ├── deffile.def │ │ │ │ ├── deffile.gyp │ │ │ │ ├── delay-load-dlls.gyp │ │ │ │ ├── delay-load.cc │ │ │ │ ├── embed-manifest.gyp │ │ │ │ ├── enable-uac.gyp │ │ │ │ ├── entrypointsymbol.cc │ │ │ │ ├── entrypointsymbol.gyp │ │ │ │ ├── extra.manifest │ │ │ │ ├── extra2.manifest │ │ │ │ ├── fixed-base.gyp │ │ │ │ ├── force-symbol-reference.gyp │ │ │ │ ├── generate-manifest.gyp │ │ │ │ ├── hello.cc │ │ │ │ ├── incremental.gyp │ │ │ │ ├── inline_test.cc │ │ │ │ ├── inline_test.h │ │ │ │ ├── inline_test_main.cc │ │ │ │ ├── large-address-aware.gyp │ │ │ │ ├── library-adjust.cc │ │ │ │ ├── library-adjust.gyp │ │ │ │ ├── library-directories-define.cc │ │ │ │ ├── library-directories-reference.cc │ │ │ │ ├── library-directories.gyp │ │ │ │ ├── link-ordering.gyp │ │ │ │ ├── link-warning.cc │ │ │ │ ├── ltcg.gyp │ │ │ │ ├── main-crt.c │ │ │ │ ├── manifest-in-comment.cc │ │ │ │ ├── mapfile.cc │ │ │ │ ├── mapfile.gyp │ │ │ │ ├── no-default-libs.cc │ │ │ │ ├── no-default-libs.gyp │ │ │ │ ├── nodefaultlib.cc │ │ │ │ ├── nodefaultlib.gyp │ │ │ │ ├── nxcompat.gyp │ │ │ │ ├── opt-icf.cc │ │ │ │ ├── opt-icf.gyp │ │ │ │ ├── opt-ref.cc │ │ │ │ ├── opt-ref.gyp │ │ │ │ ├── outputfile.gyp │ │ │ │ ├── pdb-output.gyp │ │ │ │ ├── pgo.gyp │ │ │ │ ├── profile.gyp │ │ │ │ ├── program-database.gyp │ │ │ │ ├── safeseh.gyp │ │ │ │ ├── safeseh_hello.cc │ │ │ │ ├── safeseh_zero.asm │ │ │ │ ├── safeseh_zero64.asm │ │ │ │ ├── stacksize.gyp │ │ │ │ ├── subdir │ │ │ │ │ └── library.gyp │ │ │ │ ├── subsystem-windows.cc │ │ │ │ ├── subsystem.gyp │ │ │ │ ├── target-machine.gyp │ │ │ │ ├── tsaware.gyp │ │ │ │ ├── unsupported-manifest.gyp │ │ │ │ ├── update_pgd.py │ │ │ │ ├── warn-as-error.gyp │ │ │ │ ├── x.cc │ │ │ │ ├── y.cc │ │ │ │ └── z.cc │ │ │ │ ├── long-command-line │ │ │ │ ├── function.cc │ │ │ │ ├── hello.cc │ │ │ │ └── long-command-line.gyp │ │ │ │ ├── ml-safeseh │ │ │ │ ├── a.asm │ │ │ │ ├── hello.cc │ │ │ │ └── ml-safeseh.gyp │ │ │ │ ├── precompiled │ │ │ │ ├── gyptest-all.py │ │ │ │ ├── hello.c │ │ │ │ ├── hello.gyp │ │ │ │ ├── hello2.c │ │ │ │ └── precomp.c │ │ │ │ ├── rc-build │ │ │ │ ├── Resource.h │ │ │ │ ├── hello.cpp │ │ │ │ ├── hello.gyp │ │ │ │ ├── hello.h │ │ │ │ ├── hello.ico │ │ │ │ ├── hello.rc │ │ │ │ ├── hello3.rc │ │ │ │ ├── small.ico │ │ │ │ ├── subdir │ │ │ │ │ ├── hello2.rc │ │ │ │ │ └── include.h │ │ │ │ └── targetver.h │ │ │ │ ├── shard │ │ │ │ ├── hello.cc │ │ │ │ ├── hello1.cc │ │ │ │ ├── hello2.cc │ │ │ │ ├── hello3.cc │ │ │ │ ├── hello4.cc │ │ │ │ ├── shard.gyp │ │ │ │ └── shard_ref.gyp │ │ │ │ ├── system-include │ │ │ │ ├── bar │ │ │ │ │ └── header.h │ │ │ │ ├── common │ │ │ │ │ └── commonheader.h │ │ │ │ ├── foo │ │ │ │ │ └── header.h │ │ │ │ ├── main.cc │ │ │ │ └── test.gyp │ │ │ │ ├── uldi │ │ │ │ ├── a.cc │ │ │ │ ├── b.cc │ │ │ │ ├── main.cc │ │ │ │ └── uldi.gyp │ │ │ │ ├── vs-macros │ │ │ │ ├── as.py │ │ │ │ ├── containing-gyp.gyp │ │ │ │ ├── do_stuff.py │ │ │ │ ├── hello.cc │ │ │ │ ├── input-output-macros.gyp │ │ │ │ ├── input.S │ │ │ │ ├── projectname.gyp │ │ │ │ ├── stuff.blah │ │ │ │ ├── targetext.gyp │ │ │ │ ├── targetfilename.gyp │ │ │ │ ├── targetname.gyp │ │ │ │ ├── targetpath.gyp │ │ │ │ ├── test_exists.py │ │ │ │ └── vcinstalldir.gyp │ │ │ │ ├── win-tool │ │ │ │ ├── copies_readonly_files.gyp │ │ │ │ └── gyptest-win-tool-handles-readonly-files.py │ │ │ │ ├── winrt-app-type-revision │ │ │ │ ├── dllmain.cc │ │ │ │ └── winrt-app-type-revison.gyp │ │ │ │ └── winrt-target-platform-version │ │ │ │ ├── dllmain.cc │ │ │ │ └── winrt-target-platform-version.gyp │ │ └── tools │ │ │ ├── README │ │ │ ├── Xcode │ │ │ ├── README │ │ │ └── Specifications │ │ │ │ ├── gyp.pbfilespec │ │ │ │ └── gyp.xclangspec │ │ │ ├── emacs │ │ │ ├── README │ │ │ ├── gyp-tests.el │ │ │ ├── gyp.el │ │ │ ├── run-unit-tests.sh │ │ │ └── testdata │ │ │ │ ├── media.gyp │ │ │ │ └── media.gyp.fontified │ │ │ ├── graphviz.py │ │ │ ├── pretty_gyp.py │ │ │ ├── pretty_sln.py │ │ │ └── pretty_vcproj.py │ ├── libuv │ │ ├── .gitignore │ │ ├── .mailmap │ │ ├── AUTHORS │ │ ├── CONTRIBUTING.md │ │ ├── ChangeLog │ │ ├── LICENSE │ │ ├── MAINTAINERS.md │ │ ├── Makefile.am │ │ ├── Makefile.mingw │ │ ├── README.md │ │ ├── android-configure │ │ ├── appveyor.yml │ │ ├── autogen.sh │ │ ├── checksparse.sh │ │ ├── common.gypi │ │ ├── configure.ac │ │ ├── docs │ │ │ ├── make.bat │ │ │ └── src │ │ │ │ ├── async.rst │ │ │ │ ├── check.rst │ │ │ │ ├── conf.py │ │ │ │ ├── design.rst │ │ │ │ ├── dll.rst │ │ │ │ ├── dns.rst │ │ │ │ ├── errors.rst │ │ │ │ ├── fs.rst │ │ │ │ ├── fs_event.rst │ │ │ │ ├── fs_poll.rst │ │ │ │ ├── handle.rst │ │ │ │ ├── idle.rst │ │ │ │ ├── index.rst │ │ │ │ ├── loop.rst │ │ │ │ ├── migration_010_100.rst │ │ │ │ ├── misc.rst │ │ │ │ ├── pipe.rst │ │ │ │ ├── poll.rst │ │ │ │ ├── prepare.rst │ │ │ │ ├── process.rst │ │ │ │ ├── request.rst │ │ │ │ ├── signal.rst │ │ │ │ ├── sphinx-plugins │ │ │ │ └── manpage.py │ │ │ │ ├── static │ │ │ │ ├── architecture.png │ │ │ │ ├── diagrams.key │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── st0-311.jpg │ │ │ │ │ │ └── st1-475.jpg │ │ │ │ │ ├── Index.zip │ │ │ │ │ ├── Metadata │ │ │ │ │ │ ├── BuildVersionHistory.plist │ │ │ │ │ │ ├── DocumentIdentifier │ │ │ │ │ │ └── Properties.plist │ │ │ │ │ ├── preview-micro.jpg │ │ │ │ │ ├── preview-web.jpg │ │ │ │ │ └── preview.jpg │ │ │ │ ├── favicon.ico │ │ │ │ ├── logo.png │ │ │ │ └── loop_iteration.png │ │ │ │ ├── stream.rst │ │ │ │ ├── tcp.rst │ │ │ │ ├── threading.rst │ │ │ │ ├── threadpool.rst │ │ │ │ ├── timer.rst │ │ │ │ ├── tty.rst │ │ │ │ ├── udp.rst │ │ │ │ └── version.rst │ │ ├── gyp_uv.py │ │ ├── img │ │ │ ├── banner.png │ │ │ └── logos.svg │ │ ├── include │ │ │ ├── android-ifaddrs.h │ │ │ ├── pthread-fixes.h │ │ │ ├── stdint-msvc2008.h │ │ │ ├── tree.h │ │ │ ├── uv-aix.h │ │ │ ├── uv-bsd.h │ │ │ ├── uv-darwin.h │ │ │ ├── uv-errno.h │ │ │ ├── uv-linux.h │ │ │ ├── uv-sunos.h │ │ │ ├── uv-threadpool.h │ │ │ ├── uv-unix.h │ │ │ ├── uv-version.h │ │ │ ├── uv-win.h │ │ │ └── uv.h │ │ ├── libuv.nsi │ │ ├── libuv.pc.in │ │ ├── m4 │ │ │ ├── .gitignore │ │ │ ├── as_case.m4 │ │ │ └── libuv-check-flags.m4 │ │ ├── samples │ │ │ ├── .gitignore │ │ │ └── socks5-proxy │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── build.gyp │ │ │ │ ├── client.c │ │ │ │ ├── defs.h │ │ │ │ ├── getopt.c │ │ │ │ ├── main.c │ │ │ │ ├── s5.c │ │ │ │ ├── s5.h │ │ │ │ ├── server.c │ │ │ │ └── util.c │ │ ├── src │ │ │ ├── fs-poll.c │ │ │ ├── heap-inl.h │ │ │ ├── inet.c │ │ │ ├── queue.h │ │ │ ├── threadpool.c │ │ │ ├── unix │ │ │ │ ├── aix.c │ │ │ │ ├── android-ifaddrs.c │ │ │ │ ├── async.c │ │ │ │ ├── atomic-ops.h │ │ │ │ ├── core.c │ │ │ │ ├── darwin-proctitle.c │ │ │ │ ├── darwin.c │ │ │ │ ├── dl.c │ │ │ │ ├── freebsd.c │ │ │ │ ├── fs.c │ │ │ │ ├── fsevents.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── internal.h │ │ │ │ ├── kqueue.c │ │ │ │ ├── linux-core.c │ │ │ │ ├── linux-inotify.c │ │ │ │ ├── linux-syscalls.c │ │ │ │ ├── linux-syscalls.h │ │ │ │ ├── loop-watcher.c │ │ │ │ ├── loop.c │ │ │ │ ├── netbsd.c │ │ │ │ ├── openbsd.c │ │ │ │ ├── pipe.c │ │ │ │ ├── poll.c │ │ │ │ ├── process.c │ │ │ │ ├── proctitle.c │ │ │ │ ├── pthread-fixes.c │ │ │ │ ├── signal.c │ │ │ │ ├── spinlock.h │ │ │ │ ├── stream.c │ │ │ │ ├── sunos.c │ │ │ │ ├── tcp.c │ │ │ │ ├── thread.c │ │ │ │ ├── timer.c │ │ │ │ ├── tty.c │ │ │ │ └── udp.c │ │ │ ├── uv-common.c │ │ │ ├── uv-common.h │ │ │ ├── version.c │ │ │ └── win │ │ │ │ ├── async.c │ │ │ │ ├── atomicops-inl.h │ │ │ │ ├── core.c │ │ │ │ ├── dl.c │ │ │ │ ├── error.c │ │ │ │ ├── fs-event.c │ │ │ │ ├── fs.c │ │ │ │ ├── getaddrinfo.c │ │ │ │ ├── getnameinfo.c │ │ │ │ ├── handle-inl.h │ │ │ │ ├── handle.c │ │ │ │ ├── internal.h │ │ │ │ ├── loop-watcher.c │ │ │ │ ├── pipe.c │ │ │ │ ├── poll.c │ │ │ │ ├── process-stdio.c │ │ │ │ ├── process.c │ │ │ │ ├── req-inl.h │ │ │ │ ├── req.c │ │ │ │ ├── signal.c │ │ │ │ ├── stream-inl.h │ │ │ │ ├── stream.c │ │ │ │ ├── tcp.c │ │ │ │ ├── thread.c │ │ │ │ ├── timer.c │ │ │ │ ├── tty.c │ │ │ │ ├── udp.c │ │ │ │ ├── util.c │ │ │ │ ├── winapi.c │ │ │ │ ├── winapi.h │ │ │ │ ├── winsock.c │ │ │ │ └── winsock.h │ │ ├── test │ │ │ ├── benchmark-async-pummel.c │ │ │ ├── benchmark-async.c │ │ │ ├── benchmark-fs-stat.c │ │ │ ├── benchmark-getaddrinfo.c │ │ │ ├── benchmark-list.h │ │ │ ├── benchmark-loop-count.c │ │ │ ├── benchmark-million-async.c │ │ │ ├── benchmark-million-timers.c │ │ │ ├── benchmark-multi-accept.c │ │ │ ├── benchmark-ping-pongs.c │ │ │ ├── benchmark-pound.c │ │ │ ├── benchmark-pump.c │ │ │ ├── benchmark-sizes.c │ │ │ ├── benchmark-spawn.c │ │ │ ├── benchmark-tcp-write-batch.c │ │ │ ├── benchmark-thread.c │ │ │ ├── benchmark-udp-pummel.c │ │ │ ├── blackhole-server.c │ │ │ ├── dns-server.c │ │ │ ├── echo-server.c │ │ │ ├── fixtures │ │ │ │ ├── empty_file │ │ │ │ └── load_error.node │ │ │ ├── run-benchmarks.c │ │ │ ├── run-tests.c │ │ │ ├── runner-unix.c │ │ │ ├── runner-unix.h │ │ │ ├── runner-win.c │ │ │ ├── runner-win.h │ │ │ ├── runner.c │ │ │ ├── runner.h │ │ │ ├── task.h │ │ │ ├── test-active.c │ │ │ ├── test-async-null-cb.c │ │ │ ├── test-async.c │ │ │ ├── test-barrier.c │ │ │ ├── test-callback-order.c │ │ │ ├── test-callback-stack.c │ │ │ ├── test-close-fd.c │ │ │ ├── test-close-order.c │ │ │ ├── test-condvar.c │ │ │ ├── test-connection-fail.c │ │ │ ├── test-cwd-and-chdir.c │ │ │ ├── test-default-loop-close.c │ │ │ ├── test-delayed-accept.c │ │ │ ├── test-dlerror.c │ │ │ ├── test-embed.c │ │ │ ├── test-emfile.c │ │ │ ├── test-error.c │ │ │ ├── test-fail-always.c │ │ │ ├── test-fs-event.c │ │ │ ├── test-fs-poll.c │ │ │ ├── test-fs.c │ │ │ ├── test-get-currentexe.c │ │ │ ├── test-get-loadavg.c │ │ │ ├── test-get-memory.c │ │ │ ├── test-getaddrinfo.c │ │ │ ├── test-getnameinfo.c │ │ │ ├── test-getsockname.c │ │ │ ├── test-handle-fileno.c │ │ │ ├── test-homedir.c │ │ │ ├── test-hrtime.c │ │ │ ├── test-idle.c │ │ │ ├── test-ip4-addr.c │ │ │ ├── test-ip6-addr.c │ │ │ ├── test-ipc-send-recv.c │ │ │ ├── test-ipc.c │ │ │ ├── test-list.h │ │ │ ├── test-loop-alive.c │ │ │ ├── test-loop-close.c │ │ │ ├── test-loop-configure.c │ │ │ ├── test-loop-handles.c │ │ │ ├── test-loop-stop.c │ │ │ ├── test-loop-time.c │ │ │ ├── test-multiple-listen.c │ │ │ ├── test-mutexes.c │ │ │ ├── test-osx-select.c │ │ │ ├── test-pass-always.c │ │ │ ├── test-ping-pong.c │ │ │ ├── test-pipe-bind-error.c │ │ │ ├── test-pipe-close-stdout-read-stdin.c │ │ │ ├── test-pipe-connect-error.c │ │ │ ├── test-pipe-connect-multiple.c │ │ │ ├── test-pipe-connect-prepare.c │ │ │ ├── test-pipe-getsockname.c │ │ │ ├── test-pipe-pending-instances.c │ │ │ ├── test-pipe-sendmsg.c │ │ │ ├── test-pipe-server-close.c │ │ │ ├── test-pipe-set-non-blocking.c │ │ │ ├── test-platform-output.c │ │ │ ├── test-poll-close-doesnt-corrupt-stack.c │ │ │ ├── test-poll-close.c │ │ │ ├── test-poll-closesocket.c │ │ │ ├── test-poll.c │ │ │ ├── test-process-title.c │ │ │ ├── test-ref.c │ │ │ ├── test-run-nowait.c │ │ │ ├── test-run-once.c │ │ │ ├── test-semaphore.c │ │ │ ├── test-shutdown-close.c │ │ │ ├── test-shutdown-eof.c │ │ │ ├── test-shutdown-twice.c │ │ │ ├── test-signal-multiple-loops.c │ │ │ ├── test-signal.c │ │ │ ├── test-socket-buffer-size.c │ │ │ ├── test-spawn.c │ │ │ ├── test-stdio-over-pipes.c │ │ │ ├── test-tcp-bind-error.c │ │ │ ├── test-tcp-bind6-error.c │ │ │ ├── test-tcp-close-accept.c │ │ │ ├── test-tcp-close-while-connecting.c │ │ │ ├── test-tcp-close.c │ │ │ ├── test-tcp-connect-error-after-write.c │ │ │ ├── test-tcp-connect-error.c │ │ │ ├── test-tcp-connect-timeout.c │ │ │ ├── test-tcp-connect6-error.c │ │ │ ├── test-tcp-create-socket-early.c │ │ │ ├── test-tcp-flags.c │ │ │ ├── test-tcp-oob.c │ │ │ ├── test-tcp-open.c │ │ │ ├── test-tcp-read-stop.c │ │ │ ├── test-tcp-shutdown-after-write.c │ │ │ ├── test-tcp-try-write.c │ │ │ ├── test-tcp-unexpected-read.c │ │ │ ├── test-tcp-write-after-connect.c │ │ │ ├── test-tcp-write-fail.c │ │ │ ├── test-tcp-write-queue-order.c │ │ │ ├── test-tcp-write-to-half-open-connection.c │ │ │ ├── test-tcp-writealot.c │ │ │ ├── test-thread-equal.c │ │ │ ├── test-thread.c │ │ │ ├── test-threadpool-cancel.c │ │ │ ├── test-threadpool.c │ │ │ ├── test-timer-again.c │ │ │ ├── test-timer-from-check.c │ │ │ ├── test-timer.c │ │ │ ├── test-tty.c │ │ │ ├── test-udp-bind.c │ │ │ ├── test-udp-create-socket-early.c │ │ │ ├── test-udp-dgram-too-big.c │ │ │ ├── test-udp-ipv6.c │ │ │ ├── test-udp-multicast-interface.c │ │ │ ├── test-udp-multicast-interface6.c │ │ │ ├── test-udp-multicast-join.c │ │ │ ├── test-udp-multicast-join6.c │ │ │ ├── test-udp-multicast-ttl.c │ │ │ ├── test-udp-open.c │ │ │ ├── test-udp-options.c │ │ │ ├── test-udp-send-and-recv.c │ │ │ ├── test-udp-send-immediate.c │ │ │ ├── test-udp-send-unreachable.c │ │ │ ├── test-udp-try-send.c │ │ │ ├── test-walk-handles.c │ │ │ └── test-watcher-cross-stop.c │ │ ├── uv.gyp │ │ └── vcbuild.bat │ └── pcre2 │ │ ├── 132html │ │ ├── AUTHORS │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── ChangeLog │ │ ├── CheckMan │ │ ├── CleanTxt │ │ ├── Detrail │ │ ├── HACKING │ │ ├── INSTALL │ │ ├── LICENCE │ │ ├── Makefile.am │ │ ├── Makefile.in │ │ ├── NEWS │ │ ├── NON-AUTOTOOLS-BUILD │ │ ├── PrepareRelease │ │ ├── README │ │ ├── RunGrepTest │ │ ├── RunTest │ │ ├── RunTest.bat │ │ ├── aclocal.m4 │ │ ├── ar-lib │ │ ├── cmake │ │ ├── COPYING-CMAKE-SCRIPTS │ │ ├── FindEditline.cmake │ │ ├── FindPackageHandleStandardArgs.cmake │ │ └── FindReadline.cmake │ │ ├── compile │ │ ├── config-cmake.h.in │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure │ │ ├── configure.ac │ │ ├── depcomp │ │ ├── doc │ │ ├── html │ │ │ ├── NON-AUTOTOOLS-BUILD.txt │ │ │ ├── README.txt │ │ │ ├── index.html │ │ │ ├── pcre2-config.html │ │ │ ├── pcre2.html │ │ │ ├── pcre2_callout_enumerate.html │ │ │ ├── pcre2_code_free.html │ │ │ ├── pcre2_compile.html │ │ │ ├── pcre2_compile_context_copy.html │ │ │ ├── pcre2_compile_context_create.html │ │ │ ├── pcre2_compile_context_free.html │ │ │ ├── pcre2_config.html │ │ │ ├── pcre2_dfa_match.html │ │ │ ├── pcre2_general_context_copy.html │ │ │ ├── pcre2_general_context_create.html │ │ │ ├── pcre2_general_context_free.html │ │ │ ├── pcre2_get_error_message.html │ │ │ ├── pcre2_get_mark.html │ │ │ ├── pcre2_get_ovector_count.html │ │ │ ├── pcre2_get_ovector_pointer.html │ │ │ ├── pcre2_get_startchar.html │ │ │ ├── pcre2_jit_compile.html │ │ │ ├── pcre2_jit_free_unused_memory.html │ │ │ ├── pcre2_jit_match.html │ │ │ ├── pcre2_jit_stack_assign.html │ │ │ ├── pcre2_jit_stack_create.html │ │ │ ├── pcre2_jit_stack_free.html │ │ │ ├── pcre2_maketables.html │ │ │ ├── pcre2_match.html │ │ │ ├── pcre2_match_context_copy.html │ │ │ ├── pcre2_match_context_create.html │ │ │ ├── pcre2_match_context_free.html │ │ │ ├── pcre2_match_data_create.html │ │ │ ├── pcre2_match_data_create_from_pattern.html │ │ │ ├── pcre2_match_data_free.html │ │ │ ├── pcre2_pattern_info.html │ │ │ ├── pcre2_serialize_decode.html │ │ │ ├── pcre2_serialize_encode.html │ │ │ ├── pcre2_serialize_free.html │ │ │ ├── pcre2_serialize_get_number_of_codes.html │ │ │ ├── pcre2_set_bsr.html │ │ │ ├── pcre2_set_callout.html │ │ │ ├── pcre2_set_character_tables.html │ │ │ ├── pcre2_set_compile_recursion_guard.html │ │ │ ├── pcre2_set_match_limit.html │ │ │ ├── pcre2_set_newline.html │ │ │ ├── pcre2_set_parens_nest_limit.html │ │ │ ├── pcre2_set_recursion_limit.html │ │ │ ├── pcre2_set_recursion_memory_management.html │ │ │ ├── pcre2_substitute.html │ │ │ ├── pcre2_substring_copy_byname.html │ │ │ ├── pcre2_substring_copy_bynumber.html │ │ │ ├── pcre2_substring_free.html │ │ │ ├── pcre2_substring_get_byname.html │ │ │ ├── pcre2_substring_get_bynumber.html │ │ │ ├── pcre2_substring_length_byname.html │ │ │ ├── pcre2_substring_length_bynumber.html │ │ │ ├── pcre2_substring_list_free.html │ │ │ ├── pcre2_substring_list_get.html │ │ │ ├── pcre2_substring_nametable_scan.html │ │ │ ├── pcre2_substring_number_from_name.html │ │ │ ├── pcre2api.html │ │ │ ├── pcre2build.html │ │ │ ├── pcre2callout.html │ │ │ ├── pcre2compat.html │ │ │ ├── pcre2demo.html │ │ │ ├── pcre2grep.html │ │ │ ├── pcre2jit.html │ │ │ ├── pcre2limits.html │ │ │ ├── pcre2matching.html │ │ │ ├── pcre2partial.html │ │ │ ├── pcre2pattern.html │ │ │ ├── pcre2perform.html │ │ │ ├── pcre2posix.html │ │ │ ├── pcre2sample.html │ │ │ ├── pcre2serialize.html │ │ │ ├── pcre2stack.html │ │ │ ├── pcre2syntax.html │ │ │ ├── pcre2test.html │ │ │ └── pcre2unicode.html │ │ ├── index.html.src │ │ ├── pcre2-config.1 │ │ ├── pcre2-config.txt │ │ ├── pcre2.3 │ │ ├── pcre2.txt │ │ ├── pcre2_callout_enumerate.3 │ │ ├── pcre2_code_free.3 │ │ ├── pcre2_compile.3 │ │ ├── pcre2_compile_context_copy.3 │ │ ├── pcre2_compile_context_create.3 │ │ ├── pcre2_compile_context_free.3 │ │ ├── pcre2_config.3 │ │ ├── pcre2_dfa_match.3 │ │ ├── pcre2_general_context_copy.3 │ │ ├── pcre2_general_context_create.3 │ │ ├── pcre2_general_context_free.3 │ │ ├── pcre2_get_error_message.3 │ │ ├── pcre2_get_mark.3 │ │ ├── pcre2_get_ovector_count.3 │ │ ├── pcre2_get_ovector_pointer.3 │ │ ├── pcre2_get_startchar.3 │ │ ├── pcre2_jit_compile.3 │ │ ├── pcre2_jit_free_unused_memory.3 │ │ ├── pcre2_jit_match.3 │ │ ├── pcre2_jit_stack_assign.3 │ │ ├── pcre2_jit_stack_create.3 │ │ ├── pcre2_jit_stack_free.3 │ │ ├── pcre2_maketables.3 │ │ ├── pcre2_match.3 │ │ ├── pcre2_match_context_copy.3 │ │ ├── pcre2_match_context_create.3 │ │ ├── pcre2_match_context_free.3 │ │ ├── pcre2_match_data_create.3 │ │ ├── pcre2_match_data_create_from_pattern.3 │ │ ├── pcre2_match_data_free.3 │ │ ├── pcre2_pattern_info.3 │ │ ├── pcre2_serialize_decode.3 │ │ ├── pcre2_serialize_encode.3 │ │ ├── pcre2_serialize_free.3 │ │ ├── pcre2_serialize_get_number_of_codes.3 │ │ ├── pcre2_set_bsr.3 │ │ ├── pcre2_set_callout.3 │ │ ├── pcre2_set_character_tables.3 │ │ ├── pcre2_set_compile_recursion_guard.3 │ │ ├── pcre2_set_match_limit.3 │ │ ├── pcre2_set_newline.3 │ │ ├── pcre2_set_parens_nest_limit.3 │ │ ├── pcre2_set_recursion_limit.3 │ │ ├── pcre2_set_recursion_memory_management.3 │ │ ├── pcre2_substitute.3 │ │ ├── pcre2_substring_copy_byname.3 │ │ ├── pcre2_substring_copy_bynumber.3 │ │ ├── pcre2_substring_free.3 │ │ ├── pcre2_substring_get_byname.3 │ │ ├── pcre2_substring_get_bynumber.3 │ │ ├── pcre2_substring_length_byname.3 │ │ ├── pcre2_substring_length_bynumber.3 │ │ ├── pcre2_substring_list_free.3 │ │ ├── pcre2_substring_list_get.3 │ │ ├── pcre2_substring_nametable_scan.3 │ │ ├── pcre2_substring_number_from_name.3 │ │ ├── pcre2api.3 │ │ ├── pcre2build.3 │ │ ├── pcre2callout.3 │ │ ├── pcre2compat.3 │ │ ├── pcre2demo.3 │ │ ├── pcre2grep.1 │ │ ├── pcre2grep.txt │ │ ├── pcre2jit.3 │ │ ├── pcre2limits.3 │ │ ├── pcre2matching.3 │ │ ├── pcre2partial.3 │ │ ├── pcre2pattern.3 │ │ ├── pcre2perform.3 │ │ ├── pcre2posix.3 │ │ ├── pcre2sample.3 │ │ ├── pcre2serialize.3 │ │ ├── pcre2stack.3 │ │ ├── pcre2syntax.3 │ │ ├── pcre2test.1 │ │ ├── pcre2test.txt │ │ └── pcre2unicode.3 │ │ ├── install-sh │ │ ├── libpcre2-16.pc.in │ │ ├── libpcre2-32.pc.in │ │ ├── libpcre2-8.pc.in │ │ ├── libpcre2-posix.pc.in │ │ ├── ltmain.sh │ │ ├── m4 │ │ ├── ax_pthread.m4 │ │ ├── libtool.m4 │ │ ├── ltoptions.m4 │ │ ├── ltsugar.m4 │ │ ├── ltversion.m4 │ │ ├── lt~obsolete.m4 │ │ └── pcre2_visibility.m4 │ │ ├── missing │ │ ├── pcre2-config.in │ │ ├── perltest.sh │ │ ├── src │ │ ├── config.h.generic │ │ ├── config.h.in │ │ ├── dftables.c │ │ ├── pcre2.h.generic │ │ ├── pcre2.h.in │ │ ├── pcre2_auto_possess.c │ │ ├── pcre2_chartables.c.dist │ │ ├── pcre2_compile.c │ │ ├── pcre2_config.c │ │ ├── pcre2_context.c │ │ ├── pcre2_dfa_match.c │ │ ├── pcre2_error.c │ │ ├── pcre2_internal.h │ │ ├── pcre2_intmodedep.h │ │ ├── pcre2_jit_compile.c │ │ ├── pcre2_jit_match.c │ │ ├── pcre2_jit_misc.c │ │ ├── pcre2_jit_test.c │ │ ├── pcre2_maketables.c │ │ ├── pcre2_match.c │ │ ├── pcre2_match_data.c │ │ ├── pcre2_newline.c │ │ ├── pcre2_ord2utf.c │ │ ├── pcre2_pattern_info.c │ │ ├── pcre2_printint.c │ │ ├── pcre2_serialize.c │ │ ├── pcre2_string_utils.c │ │ ├── pcre2_study.c │ │ ├── pcre2_substitute.c │ │ ├── pcre2_substring.c │ │ ├── pcre2_tables.c │ │ ├── pcre2_ucd.c │ │ ├── pcre2_ucp.h │ │ ├── pcre2_valid_utf.c │ │ ├── pcre2_xclass.c │ │ ├── pcre2demo.c │ │ ├── pcre2grep.c │ │ ├── pcre2posix.c │ │ ├── pcre2posix.h │ │ ├── pcre2test.c │ │ └── sljit │ │ │ ├── sljitConfig.h │ │ │ ├── sljitConfigInternal.h │ │ │ ├── sljitExecAllocator.c │ │ │ ├── sljitLir.c │ │ │ ├── sljitLir.h │ │ │ ├── sljitNativeARM_32.c │ │ │ ├── sljitNativeARM_64.c │ │ │ ├── sljitNativeARM_T2_32.c │ │ │ ├── sljitNativeMIPS_32.c │ │ │ ├── sljitNativeMIPS_64.c │ │ │ ├── sljitNativeMIPS_common.c │ │ │ ├── sljitNativePPC_32.c │ │ │ ├── sljitNativePPC_64.c │ │ │ ├── sljitNativePPC_common.c │ │ │ ├── sljitNativeSPARC_32.c │ │ │ ├── sljitNativeSPARC_common.c │ │ │ ├── sljitNativeTILEGX-encoder.c │ │ │ ├── sljitNativeTILEGX_64.c │ │ │ ├── sljitNativeX86_32.c │ │ │ ├── sljitNativeX86_64.c │ │ │ ├── sljitNativeX86_common.c │ │ │ └── sljitUtils.c │ │ ├── test-driver │ │ └── testdata │ │ ├── grepbinary │ │ ├── grepfilelist │ │ ├── grepinput │ │ ├── grepinput3 │ │ ├── grepinput8 │ │ ├── grepinputv │ │ ├── grepinputx │ │ ├── greplist │ │ ├── grepoutput │ │ ├── grepoutput8 │ │ ├── grepoutputN │ │ ├── greppatN4 │ │ ├── testinput1 │ │ ├── testinput10 │ │ ├── testinput11 │ │ ├── testinput12 │ │ ├── testinput13 │ │ ├── testinput14 │ │ ├── testinput15 │ │ ├── testinput16 │ │ ├── testinput17 │ │ ├── testinput18 │ │ ├── testinput19 │ │ ├── testinput2 │ │ ├── testinput3 │ │ ├── testinput4 │ │ ├── testinput5 │ │ ├── testinput6 │ │ ├── testinput7 │ │ ├── testinput8 │ │ ├── testinput9 │ │ ├── testinputEBC │ │ ├── testoutput1 │ │ ├── testoutput10 │ │ ├── testoutput11-16 │ │ ├── testoutput11-32 │ │ ├── testoutput12-16 │ │ ├── testoutput12-32 │ │ ├── testoutput13 │ │ ├── testoutput14 │ │ ├── testoutput15 │ │ ├── testoutput16 │ │ ├── testoutput17 │ │ ├── testoutput18 │ │ ├── testoutput19 │ │ ├── testoutput2 │ │ ├── testoutput3 │ │ ├── testoutput3A │ │ ├── testoutput3B │ │ ├── testoutput4 │ │ ├── testoutput5 │ │ ├── testoutput6 │ │ ├── testoutput7 │ │ ├── testoutput8-16 │ │ ├── testoutput8-32 │ │ ├── testoutput8-8 │ │ ├── testoutput9 │ │ ├── testoutputEBC │ │ ├── wintestinput3 │ │ └── wintestoutput3 ├── examples │ ├── ex1.cpp │ └── test1.cxx ├── include │ └── jsc │ │ ├── common.h │ │ ├── config.h.in │ │ ├── dtoa.h │ │ ├── fs.h │ │ ├── jsimpl.h │ │ ├── jsni.h │ │ ├── jsruntime.h │ │ ├── objects.h │ │ ├── pcre2.h │ │ ├── sort.h │ │ ├── typedarrays.h │ │ ├── uri.h │ │ └── utf.h ├── js │ ├── core │ │ ├── 01core.js │ │ ├── 02math.js │ │ ├── 03date.js │ │ ├── 03number.js │ │ ├── 03typedarray.js │ │ ├── 10regexp.js │ │ ├── 11json.js │ │ ├── 20module.js │ │ ├── 90global.js │ │ ├── 95init.js │ │ └── 96evloop.js │ ├── modules │ │ ├── _constants.js │ │ ├── _fs.js │ │ ├── _jsc.js │ │ ├── assert.js │ │ ├── buffer │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── .zuul.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ ├── download-node-tests.js │ │ │ │ └── test.js │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ ├── base64-js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bench │ │ │ │ │ │ └── bench.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── b64.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── convert.js │ │ │ │ │ │ └── url-safe.js │ │ │ │ ├── ieee754 │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ └── basic.js │ │ │ │ └── is-array │ │ │ │ │ ├── .jepso-ci.json │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ └── test.html │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── _polyfill.js │ │ │ │ ├── base64.js │ │ │ │ ├── basic.js │ │ │ │ ├── compare.js │ │ │ │ ├── constructor.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── es6 │ │ │ │ ├── README.txt │ │ │ │ └── test-buffer-iterator.js │ │ │ │ ├── from-string.js │ │ │ │ ├── methods.js │ │ │ │ ├── node │ │ │ │ ├── README.txt │ │ │ │ ├── test-buffer-ascii.js │ │ │ │ ├── test-buffer-big.js │ │ │ │ ├── test-buffer-concat.js │ │ │ │ ├── test-buffer-indexof.js │ │ │ │ ├── test-buffer-inspect.js │ │ │ │ ├── test-buffer-slice.js │ │ │ │ └── test-buffer.js │ │ │ │ ├── slice.js │ │ │ │ ├── static.js │ │ │ │ ├── to-string.js │ │ │ │ └── write.js │ │ ├── child_process.js │ │ ├── console.js │ │ └── process.js │ ├── nodelib │ │ ├── LICENSE │ │ ├── _stream_duplex.js │ │ ├── _stream_passthrough.js │ │ ├── _stream_readable.js │ │ ├── _stream_transform.js │ │ ├── _stream_writable.js │ │ ├── domain.js │ │ ├── events.js │ │ ├── fs.js │ │ ├── path.js │ │ ├── smalloc.js │ │ ├── stream.js │ │ ├── string_decoder.js │ │ ├── util.js │ │ └── versions.txt │ └── runtime.js └── src │ ├── convert.cpp │ ├── fs.cpp │ ├── gc.cxx │ ├── handles.cpp │ ├── jsimpl.cpp │ ├── jsni.cpp │ ├── math.cpp │ ├── operators.cpp │ ├── runtime.cxx │ ├── sort.cpp │ ├── string.cpp │ ├── typedarrays.cxx │ ├── uri.cpp │ └── utf.cxx ├── src ├── compiler.ts ├── cxxbackend.ts ├── estree-x.d.ts └── hir.ts ├── tests ├── apply.js ├── array-concat.js ├── array-foreach.js ├── array-shift.js ├── array-slice.js ├── array-sort1.js ├── array-splice.js ├── array_tostring.js ├── arrayjoin.js ├── binary.js ├── bind.js ├── defineprop.js ├── delete.js ├── empty.js ├── errors.js ├── hasownprop.js ├── iftrue.js ├── in.js ├── inittag.js ├── instanceof.js ├── isnan.js ├── json1.js ├── math-consts1.js ├── math1.js ├── mustprint0.js ├── mustprint10.js ├── naninf.js ├── object-keys.js ├── object-tostring.js ├── parsefloat.js ├── parseint.js ├── parseint2.js ├── proto.js ├── pushpop.js ├── quicksort-killer.js ├── regexp1.js ├── regexp2.js ├── regexp3-uni.js ├── sortbench1.js ├── sortbench2.js ├── sortbench3.js ├── sortbench4.js ├── sortbench5.js ├── sortbench6.js ├── sorttest1.js ├── strict-caller.js ├── strindex.js ├── string-fromcharcode.js ├── string-indexof.js ├── string-lastindexof.js ├── string-slice.js ├── string-split1.js ├── string-substr.js ├── string-substring.js ├── string_case.js ├── switch.js ├── trycatch.js ├── typedarray1.js ├── typeof.js ├── unary.js ├── undefined.js ├── unistr1.js └── uri-encode-decode.js ├── tsd.json └── typings ├── acorn └── acorn.d.ts ├── acorn_csp └── acorn_csp.d.ts ├── estree └── estree.d.ts ├── node └── node.d.ts └── tsd.d.ts /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | jscomp -------------------------------------------------------------------------------- /.idea/codeStyleSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/codeStyleSettings.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /.idea/libraries/jscomp_node_modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/libraries/jscomp_node_modules.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/typescript-compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/typescript-compiler.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/AUTHORS -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/Makefile -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/README.adoc -------------------------------------------------------------------------------- /acorn.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn.iml -------------------------------------------------------------------------------- /acorn/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/.editorconfig -------------------------------------------------------------------------------- /acorn/.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /acorn/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.tern-port 3 | /local 4 | /dist 5 | -------------------------------------------------------------------------------- /acorn/.npmignore: -------------------------------------------------------------------------------- 1 | /.tern-port 2 | /test 3 | /local 4 | -------------------------------------------------------------------------------- /acorn/.tern-project: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /acorn/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/.travis.yml -------------------------------------------------------------------------------- /acorn/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/AUTHORS -------------------------------------------------------------------------------- /acorn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/LICENSE -------------------------------------------------------------------------------- /acorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/README.md -------------------------------------------------------------------------------- /acorn/bin/acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/acorn -------------------------------------------------------------------------------- /acorn/bin/build-acorn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/build-acorn.js -------------------------------------------------------------------------------- /acorn/bin/generate-identifier-regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/generate-identifier-regex.js -------------------------------------------------------------------------------- /acorn/bin/prepublish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/prepublish.sh -------------------------------------------------------------------------------- /acorn/bin/update_authors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/update_authors.sh -------------------------------------------------------------------------------- /acorn/bin/without_eval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/bin/without_eval -------------------------------------------------------------------------------- /acorn/dist/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acorn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/package.json -------------------------------------------------------------------------------- /acorn/src/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/expression.js -------------------------------------------------------------------------------- /acorn/src/identifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/identifier.js -------------------------------------------------------------------------------- /acorn/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/index.js -------------------------------------------------------------------------------- /acorn/src/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/location.js -------------------------------------------------------------------------------- /acorn/src/loose/acorn_loose.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /acorn/src/loose/expression.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/expression.js -------------------------------------------------------------------------------- /acorn/src/loose/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/index.js -------------------------------------------------------------------------------- /acorn/src/loose/parseutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/parseutil.js -------------------------------------------------------------------------------- /acorn/src/loose/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/state.js -------------------------------------------------------------------------------- /acorn/src/loose/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/statement.js -------------------------------------------------------------------------------- /acorn/src/loose/tokenize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/loose/tokenize.js -------------------------------------------------------------------------------- /acorn/src/lval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/lval.js -------------------------------------------------------------------------------- /acorn/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/node.js -------------------------------------------------------------------------------- /acorn/src/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/options.js -------------------------------------------------------------------------------- /acorn/src/parseutil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/parseutil.js -------------------------------------------------------------------------------- /acorn/src/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/state.js -------------------------------------------------------------------------------- /acorn/src/statement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/statement.js -------------------------------------------------------------------------------- /acorn/src/tokencontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/tokencontext.js -------------------------------------------------------------------------------- /acorn/src/tokenize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/tokenize.js -------------------------------------------------------------------------------- /acorn/src/tokentype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/tokentype.js -------------------------------------------------------------------------------- /acorn/src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/util.js -------------------------------------------------------------------------------- /acorn/src/walk/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/walk/index.js -------------------------------------------------------------------------------- /acorn/src/whitespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/src/whitespace.js -------------------------------------------------------------------------------- /acorn/test/bench.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/bench.html -------------------------------------------------------------------------------- /acorn/test/codemirror-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/codemirror-string.js -------------------------------------------------------------------------------- /acorn/test/compare/esprima.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/compare/esprima.js -------------------------------------------------------------------------------- /acorn/test/compare/traceur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/compare/traceur.js -------------------------------------------------------------------------------- /acorn/test/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/driver.js -------------------------------------------------------------------------------- /acorn/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/index.html -------------------------------------------------------------------------------- /acorn/test/jquery-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/jquery-string.js -------------------------------------------------------------------------------- /acorn/test/run.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/run.js -------------------------------------------------------------------------------- /acorn/test/tests-harmony.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/tests-harmony.js -------------------------------------------------------------------------------- /acorn/test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/acorn/test/tests.js -------------------------------------------------------------------------------- /bugs/object-seal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/bugs/object-seal.js -------------------------------------------------------------------------------- /docs/hacking.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/docs/hacking.adoc -------------------------------------------------------------------------------- /examples/factorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/examples/factorial.js -------------------------------------------------------------------------------- /examples/inheritance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/examples/inheritance.js -------------------------------------------------------------------------------- /js/acorn/acorn_csp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/js/acorn/acorn_csp.d.ts -------------------------------------------------------------------------------- /js/acorn/acorn_csp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/js/acorn/acorn_csp.js -------------------------------------------------------------------------------- /jsc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | node --use_strict main.js $@ 4 | -------------------------------------------------------------------------------- /jscomp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/jscomp.iml -------------------------------------------------------------------------------- /lib/StringMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/lib/StringMap.ts -------------------------------------------------------------------------------- /lib/bmh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/lib/bmh.ts -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/main.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/package.json -------------------------------------------------------------------------------- /runtime/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | -------------------------------------------------------------------------------- /runtime/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/deps/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/deps/JSON-js/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/JSON-js/README -------------------------------------------------------------------------------- /runtime/deps/JSON-js/cycle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/JSON-js/cycle.js -------------------------------------------------------------------------------- /runtime/deps/JSON-js/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/JSON-js/json2.js -------------------------------------------------------------------------------- /runtime/deps/JSON-js/json_parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/JSON-js/json_parse.js -------------------------------------------------------------------------------- /runtime/deps/JSON-js/json_parse_state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/JSON-js/json_parse_state.js -------------------------------------------------------------------------------- /runtime/deps/dtoa/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/dtoa/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/deps/dtoa/README: -------------------------------------------------------------------------------- 1 | Downloaded from http://www.netlib.org/fp/ 2015-08-28 2 | -------------------------------------------------------------------------------- /runtime/deps/dtoa/changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/dtoa/changes -------------------------------------------------------------------------------- /runtime/deps/dtoa/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/dtoa/dtoa.c -------------------------------------------------------------------------------- /runtime/deps/dtoa/g_fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/dtoa/g_fmt.c -------------------------------------------------------------------------------- /runtime/deps/gyp/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/AUTHORS -------------------------------------------------------------------------------- /runtime/deps/gyp/DEPS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/DEPS -------------------------------------------------------------------------------- /runtime/deps/gyp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/LICENSE -------------------------------------------------------------------------------- /runtime/deps/gyp/OWNERS: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/PRESUBMIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/PRESUBMIT.py -------------------------------------------------------------------------------- /runtime/deps/gyp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/README.md -------------------------------------------------------------------------------- /runtime/deps/gyp/buildbot/buildbot_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/buildbot/buildbot_run.py -------------------------------------------------------------------------------- /runtime/deps/gyp/codereview.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/codereview.settings -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/Buildbot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/Buildbot.md -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/GypVsCMake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/GypVsCMake.md -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/Hacking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/Hacking.md -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/Source.md -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/Testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/Testing.md -------------------------------------------------------------------------------- /runtime/deps/gyp/docs/UserDocumentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/docs/UserDocumentation.md -------------------------------------------------------------------------------- /runtime/deps/gyp/gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/gyp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/gyp.bat -------------------------------------------------------------------------------- /runtime/deps/gyp/gyp_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/gyp_main.py -------------------------------------------------------------------------------- /runtime/deps/gyp/gyptest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/gyptest.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSNew.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSNew.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSProject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSProject.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSSettings.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSToolFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSToolFile.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSUserFile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSUserFile.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSUtil.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/MSVSVersion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/MSVSVersion.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/__init__.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/common.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/common_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/common_test.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/easy_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/easy_xml.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/flock_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/flock_tool.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/input.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/input_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/input_test.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/mac_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/mac_tool.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/ninja_syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/ninja_syntax.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/ordered_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/ordered_dict.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/simple_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/simple_copy.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/win_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/win_tool.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/xcode_ninja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/xcode_ninja.py -------------------------------------------------------------------------------- /runtime/deps/gyp/pylib/gyp/xml_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/pylib/gyp/xml_fix.py -------------------------------------------------------------------------------- /runtime/deps/gyp/samples/samples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/samples/samples -------------------------------------------------------------------------------- /runtime/deps/gyp/samples/samples.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/samples/samples.bat -------------------------------------------------------------------------------- /runtime/deps/gyp/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/setup.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/actions-depfile/input.txt: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/actions-multiple/src/input.txt: -------------------------------------------------------------------------------- 1 | hello there 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/actions-none/src/foo.cc: -------------------------------------------------------------------------------- 1 | foo.cc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/common.gypi -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/test2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/test2.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/test3.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/test3.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/test4.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/test4.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/analyzer/test5.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/analyzer/test5.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/arflags/lib.cc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/arflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/arflags/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/assembly/src/as.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :: Mock windows assembler. 3 | cl /MD /c %1 /Fo"%2" 4 | 5 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/assembly/src/lib1.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/assembly/src/lib1.S -------------------------------------------------------------------------------- /runtime/deps/gyp/test/assembly/src/lib1.c: -------------------------------------------------------------------------------- 1 | int lib1_function(void) { 2 | return 42; 3 | } 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/build-option/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/build-option/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/func1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/func1.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/func2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/func2.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/func3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/func3.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/func4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/func4.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/func5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/func5.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/builddir/src/prog1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/builddir/src/prog1.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/cflags/cflags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/cflags/cflags.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/cflags/cflags.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/cflags/cflags.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/configurations/target_platform/left.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "left"; 3 | } 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/configurations/target_platform/right.c: -------------------------------------------------------------------------------- 1 | const char *message(void) { 2 | return "right"; 3 | } 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/directory/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/directory/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/directory/subdir/file5: -------------------------------------------------------------------------------- 1 | file5 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/copies/src/parentdir/subdir/file6: -------------------------------------------------------------------------------- 1 | file6 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/cxxflags/cxxflags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/cxxflags/cxxflags.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/defines/defines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/defines/defines.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/defines/defines.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/defines/defines.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/a.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/b/b.c: -------------------------------------------------------------------------------- 1 | int funcB() { 2 | return 2; 3 | } 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/b/b.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/b/b3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/b/b3.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/c/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/c/c.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/c/c.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/c/c.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/c/d.c: -------------------------------------------------------------------------------- 1 | int funcD() { 2 | return 4; 3 | } 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/dependencies/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/dependencies/main.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/exclusion/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/exclusion/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/bogus1.cc: -------------------------------------------------------------------------------- 1 | From bogus1.cc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/bogus2.c: -------------------------------------------------------------------------------- 1 | From bogus2.c 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/test1.cc: -------------------------------------------------------------------------------- 1 | From test1.cc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/test2.c: -------------------------------------------------------------------------------- 1 | From test2.c 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/test3.cc: -------------------------------------------------------------------------------- 1 | From test3.cc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/external-cross-compile/src/test4.c: -------------------------------------------------------------------------------- 1 | From test4.c 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/copies/file1: -------------------------------------------------------------------------------- 1 | file1 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/copies/file2: -------------------------------------------------------------------------------- 1 | file2 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/copies/subdir/file3: -------------------------------------------------------------------------------- 1 | file3 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/copies/subdir/file4: -------------------------------------------------------------------------------- 1 | file4 contents 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/mac-bundle/app.order: -------------------------------------------------------------------------------- 1 | _main 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/mac-bundle/header.h: -------------------------------------------------------------------------------- 1 | int f(); 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/mac-bundle/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/mac-bundle/resource.sb: -------------------------------------------------------------------------------- 1 | A text file. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/rules/subdir2/file1.in0: -------------------------------------------------------------------------------- 1 | Hello from file1.in0 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/rules/subdir2/file2.in0: -------------------------------------------------------------------------------- 1 | Hello from file2.in0 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/rules/subdir2/file3.in1: -------------------------------------------------------------------------------- 1 | Hello from file3.in1 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/rules/subdir2/file4.in1: -------------------------------------------------------------------------------- 1 | Hello from file4.in1 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "inc1/include1.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/src/subdir2/inc2/include2.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE2_STRING "inc2/include2.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/generator-output/src/subdir3/inc3/include3.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE3_STRING "inc3/include3.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/gyp-defines/echo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/gyp-defines/echo.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/hello/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/hello/gyptest-all.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/hello/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/hello/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/hello/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/hello/hello.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/hello/hello2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/hello/hello2.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/hello/hello2.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/hello/hello2.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/include_dirs/src/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "inc.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/include_dirs/src/inc1/include1.h: -------------------------------------------------------------------------------- 1 | #define INCLUDE1_STRING "include1.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/include_dirs/src/subdir/inc.h: -------------------------------------------------------------------------------- 1 | #define INC_STRING "subdir/inc.h" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/intermediate_dir/src/shared_infile.txt: -------------------------------------------------------------------------------- 1 | dummy input 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/ios/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/ios/gyptest-archs.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/ios/gyptest-watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/ios/gyptest-watch.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/ios/watch/watch.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/ios/watch/watch.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/README.txt -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/TestCmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/TestCmd.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/TestCommon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/TestCommon.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/TestGyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/TestGyp.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/TestMac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/TestMac.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/lib/TestWin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/lib/TestWin.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/library/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/library/src/lib1.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/library/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/library/src/lib2.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/link-objects/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/link-objects/base.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/link-objects/extra.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | void extra() { 4 | printf("PASS\n"); 5 | } 6 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/linux/implicit-rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/linux/implicit-rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/app-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/empty_main.cc: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_a.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_a.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_a.h -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_b.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_b.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_b.h -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_c.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/file_d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/file_d.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/archs/my_file.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/archs/my_file.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/bundle-resources/secret.txt: -------------------------------------------------------------------------------- 1 | abc 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/cflags/ccfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/cflags/ccfile.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/cflags/cfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/cflags/cfile.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/cflags/mfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/cflags/mfile.m -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/cflags/mmfile.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/cflags/mmfile.mm -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/cflags/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/cflags/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/copy-dylib/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/debuginfo/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/debuginfo/file.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/depend-on-bundle/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/depend-on-bundle/bundle.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/framework/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/global-settings/src/dir2/file.txt: -------------------------------------------------------------------------------- 1 | File. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/gyptest-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/gyptest-app.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/gyptest-archs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/gyptest-archs.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/gyptest-lto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/gyptest-lto.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/gyptest-rpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/gyptest-rpath.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/gyptest-strip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/gyptest-strip.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/identical-name/proxy/proxy.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/identical-name/proxy/testlib/testlib.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/identical-name/testlib/void.cc: -------------------------------------------------------------------------------- 1 | // Empty file 2 | 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/installname/file.c: -------------------------------------------------------------------------------- 1 | int f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/installname/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/ldflags-libtool/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/ldflags/subdirectory/symbol_list.def: -------------------------------------------------------------------------------- 1 | _f 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/asmfile.S: -------------------------------------------------------------------------------- 1 | .globl _asfun 2 | ret 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/ccfile.cc: -------------------------------------------------------------------------------- 1 | void ccfun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/cfile.c: -------------------------------------------------------------------------------- 1 | void cfun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/mfile.m: -------------------------------------------------------------------------------- 1 | void mfun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/mmfile.mm: -------------------------------------------------------------------------------- 1 | void mmfun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/lto/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/lto/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/missing-cfbundlesignature/file.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/c-file.c: -------------------------------------------------------------------------------- 1 | void c_fun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/cc-file.cc: -------------------------------------------------------------------------------- 1 | void cc_fun() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/objc-gc/main.m -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/needs-gc-mm.mm: -------------------------------------------------------------------------------- 1 | void objcpp_fun() { } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/needs-gc.m: -------------------------------------------------------------------------------- 1 | void objc_fun() { } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/objc-gc/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/objc-gc/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/postbuild-copy-bundle/copied.txt: -------------------------------------------------------------------------------- 1 | old copied file 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/postbuild-copy-bundle/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/postbuilds/copy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | cp "$@" 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/postbuilds/subdirectory/copied_file.txt: -------------------------------------------------------------------------------- 1 | This file should be copied to the products dir. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/prefixheader/file.c: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/prefixheader/file.cc: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/prefixheader/file.m: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/prefixheader/file.mm: -------------------------------------------------------------------------------- 1 | MyInt f() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/prefixheader/header.h: -------------------------------------------------------------------------------- 1 | typedef int MyInt; 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rebuild/empty.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rebuild/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rebuild/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/rebuild/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rpath/file.c: -------------------------------------------------------------------------------- 1 | void f() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rpath/main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/rpath/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/rpath/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/sdkroot/file.cc: -------------------------------------------------------------------------------- 1 | #include 2 | using std::map; 3 | 4 | int main() { 5 | } 6 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/sdkroot/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/sdkroot/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/sourceless-module/empty.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/sourceless-module/empty.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/sourceless-module/fun.c: -------------------------------------------------------------------------------- 1 | int f() { return 42; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/strip/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/strip/file.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/strip/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/strip/main.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/strip/subdirectory/nested_file.c: -------------------------------------------------------------------------------- 1 | void nested_f() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/strip/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/strip/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/unicode-settings/file.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | } 3 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xcode-env-order/file.ext1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xcode-env-order/file.ext2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xcode-env-order/file.ext3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xcode-support-actions/source.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xctest/MyClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/xctest/MyClass.h -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xctest/MyClass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/xctest/MyClass.m -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xctest/resource.txt: -------------------------------------------------------------------------------- 1 | foo 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/mac/xctest/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/mac/xctest/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/make/main.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make/main.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make/noload/all.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/make/noload/all.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make/noload/lib/shared.h: -------------------------------------------------------------------------------- 1 | extern const char kSharedStr[]; 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make/noload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/make/noload/main.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make_global_settings/full-toolchain/bar.cc: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/make_global_settings/full-toolchain/foo.c: -------------------------------------------------------------------------------- 1 | #error Not a real source file 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/many-actions/file0: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/many-actions/file1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/many-actions/file2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/many-actions/file3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/many-actions/file4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/module/src/lib1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/module/src/lib1.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/module/src/lib2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/module/src/lib2.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/module/src/program.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/module/src/program.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/msvs/props/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/msvs/props/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/msvs/props/hello.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/msvs/props/hello.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/ninja/s-needs-no-depfiles/empty.s: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/no-cpp/src/empty-main.c: -------------------------------------------------------------------------------- 1 | int main() {} 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/no-cpp/src/f.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/no-cpp/src/f.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/no-cpp/src/test.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/no-cpp/src/test.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/product/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/product/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/product/product.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/product/product.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/relative/foo/a/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/relative/foo/a/a.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/relative/foo/a/a.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/relative/foo/a/a.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/relative/foo/b/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/relative/foo/b/b.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/relative/foo/b/b.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/relative/foo/b/b.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rename/filecase/file.c: -------------------------------------------------------------------------------- 1 | int main() { return 0; } 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/restat/src/touch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/restat/src/touch.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules-dirname/src/subdir/a/b/c.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules-dirname/src/subdir/foo/bar/baz.printvars: -------------------------------------------------------------------------------- 1 | # Empty file for testing build rules 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/gyptest-all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/rules/gyptest-all.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/an_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/rules/src/an_asm.S -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/as.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/rules/src/as.bat -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/external/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/external/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/noaction/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/rules/src/rule.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/somefile.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/subdir2/file1.in: -------------------------------------------------------------------------------- 1 | Hello from file1.in 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/rules/src/subdir2/file2.in: -------------------------------------------------------------------------------- 1 | Hello from file2.in 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/sanitize-rule-names/blah.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/target/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/target/hello.c -------------------------------------------------------------------------------- /runtime/deps/gyp/test/target/target.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/target/target.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/toolsets/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/toolsets/main.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/toolsets/toolsets.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/toolsets/toolsets.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/variables/commands/test.py: -------------------------------------------------------------------------------- 1 | print "sample\\path\\foo.cpp" 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/asm-files/b.s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/asm-files/c.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/batch-file-action/infile: -------------------------------------------------------------------------------- 1 | input 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/command-quote/a.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/compiler-flags/subdir/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/ml-safeseh/a.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/ml-safeseh/a.asm -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/rc-build/hello.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/rc-build/subdir/include.h: -------------------------------------------------------------------------------- 1 | // Just exists to make sure it can be included. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/hello.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/hello.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/hello1.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/hello1.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/hello2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/hello2.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/hello3.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/hello3.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/hello4.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/hello4.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/shard/shard.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/shard/shard.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/system-include/bar/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/system-include/common/commonheader.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/system-include/foo/header.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/uldi/a.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/uldi/a.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/uldi/b.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/uldi/b.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/uldi/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/uldi/main.cc -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/uldi/uldi.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/uldi/uldi.gyp -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/vs-macros/as.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/test/win/vs-macros/as.py -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/vs-macros/input.S: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/gyp/test/win/vs-macros/stuff.blah: -------------------------------------------------------------------------------- 1 | Random data file. 2 | -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/README -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/Xcode/README -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/emacs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/emacs/README -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/emacs/gyp-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/emacs/gyp-tests.el -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/emacs/gyp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/emacs/gyp.el -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/graphviz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/graphviz.py -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/pretty_gyp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/pretty_gyp.py -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/pretty_sln.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/pretty_sln.py -------------------------------------------------------------------------------- /runtime/deps/gyp/tools/pretty_vcproj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/gyp/tools/pretty_vcproj.py -------------------------------------------------------------------------------- /runtime/deps/libuv/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/.gitignore -------------------------------------------------------------------------------- /runtime/deps/libuv/.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/.mailmap -------------------------------------------------------------------------------- /runtime/deps/libuv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/AUTHORS -------------------------------------------------------------------------------- /runtime/deps/libuv/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/CONTRIBUTING.md -------------------------------------------------------------------------------- /runtime/deps/libuv/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/ChangeLog -------------------------------------------------------------------------------- /runtime/deps/libuv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/LICENSE -------------------------------------------------------------------------------- /runtime/deps/libuv/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/MAINTAINERS.md -------------------------------------------------------------------------------- /runtime/deps/libuv/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/Makefile.am -------------------------------------------------------------------------------- /runtime/deps/libuv/Makefile.mingw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/Makefile.mingw -------------------------------------------------------------------------------- /runtime/deps/libuv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/README.md -------------------------------------------------------------------------------- /runtime/deps/libuv/android-configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/android-configure -------------------------------------------------------------------------------- /runtime/deps/libuv/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/appveyor.yml -------------------------------------------------------------------------------- /runtime/deps/libuv/autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/autogen.sh -------------------------------------------------------------------------------- /runtime/deps/libuv/checksparse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/checksparse.sh -------------------------------------------------------------------------------- /runtime/deps/libuv/common.gypi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/common.gypi -------------------------------------------------------------------------------- /runtime/deps/libuv/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/configure.ac -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/make.bat -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/async.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/async.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/check.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/check.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/conf.py -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/design.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/design.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/dll.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/dll.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/dns.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/dns.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/errors.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/errors.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/fs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/fs.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/fs_event.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/fs_event.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/fs_poll.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/fs_poll.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/handle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/handle.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/idle.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/idle.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/index.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/loop.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/loop.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/misc.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/pipe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/pipe.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/poll.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/poll.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/prepare.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/prepare.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/process.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/request.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/request.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/signal.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/signal.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/static/diagrams.key/Metadata/DocumentIdentifier: -------------------------------------------------------------------------------- 1 | F69E9CD9-EEF1-4223-9DA4-A1EA7FE112BA -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/stream.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/stream.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/tcp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/tcp.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/threading.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/threading.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/threadpool.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/threadpool.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/timer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/timer.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/tty.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/tty.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/udp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/udp.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/docs/src/version.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/docs/src/version.rst -------------------------------------------------------------------------------- /runtime/deps/libuv/gyp_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/gyp_uv.py -------------------------------------------------------------------------------- /runtime/deps/libuv/img/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/img/banner.png -------------------------------------------------------------------------------- /runtime/deps/libuv/img/logos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/img/logos.svg -------------------------------------------------------------------------------- /runtime/deps/libuv/include/pthread-fixes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/pthread-fixes.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/tree.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-aix.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-bsd.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-darwin.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-errno.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-linux.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-sunos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-sunos.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-threadpool.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-unix.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-version.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv-win.h -------------------------------------------------------------------------------- /runtime/deps/libuv/include/uv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/include/uv.h -------------------------------------------------------------------------------- /runtime/deps/libuv/libuv.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/libuv.nsi -------------------------------------------------------------------------------- /runtime/deps/libuv/libuv.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/libuv.pc.in -------------------------------------------------------------------------------- /runtime/deps/libuv/m4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/m4/.gitignore -------------------------------------------------------------------------------- /runtime/deps/libuv/m4/as_case.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/m4/as_case.m4 -------------------------------------------------------------------------------- /runtime/deps/libuv/m4/libuv-check-flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/m4/libuv-check-flags.m4 -------------------------------------------------------------------------------- /runtime/deps/libuv/samples/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/samples/.gitignore -------------------------------------------------------------------------------- /runtime/deps/libuv/src/fs-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/fs-poll.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/heap-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/heap-inl.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/inet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/inet.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/queue.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/threadpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/threadpool.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/aix.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/async.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/atomic-ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/atomic-ops.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/core.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/darwin.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/dl.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/freebsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/freebsd.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/fs.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/fsevents.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/fsevents.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/getaddrinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/getnameinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/internal.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/kqueue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/kqueue.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/linux-core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/linux-core.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/loop-watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/loop-watcher.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/loop.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/netbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/netbsd.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/openbsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/openbsd.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/pipe.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/poll.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/process.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/proctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/proctitle.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/signal.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/spinlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/spinlock.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/stream.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/sunos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/sunos.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/tcp.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/thread.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/timer.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/tty.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/unix/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/unix/udp.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/uv-common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/uv-common.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/uv-common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/uv-common.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/version.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/async.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/atomicops-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/atomicops-inl.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/core.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/dl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/dl.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/error.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/fs-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/fs-event.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/fs.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/getaddrinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/getnameinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/handle-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/handle-inl.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/handle.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/internal.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/loop-watcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/loop-watcher.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/pipe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/pipe.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/poll.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/process-stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/process-stdio.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/process.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/req-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/req-inl.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/req.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/signal.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/stream-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/stream-inl.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/stream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/stream.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/tcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/tcp.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/thread.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/timer.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/tty.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/udp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/udp.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/util.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/winapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/winapi.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/winapi.h -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/winsock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/winsock.c -------------------------------------------------------------------------------- /runtime/deps/libuv/src/win/winsock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/src/win/winsock.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-async.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-list.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-pound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-pound.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-pump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-pump.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-sizes.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-spawn.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/benchmark-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/benchmark-thread.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/blackhole-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/blackhole-server.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/dns-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/dns-server.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/echo-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/echo-server.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/fixtures/empty_file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/deps/libuv/test/fixtures/load_error.node: -------------------------------------------------------------------------------- 1 | foobar 2 | -------------------------------------------------------------------------------- /runtime/deps/libuv/test/run-benchmarks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/run-benchmarks.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/run-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/run-tests.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner-unix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner-unix.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner-unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner-unix.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner-win.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner-win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner-win.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/runner.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/task.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-active.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-async.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-async.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-barrier.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-barrier.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-close-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-close-fd.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-close-order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-close-order.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-condvar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-condvar.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-dlerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-dlerror.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-embed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-embed.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-emfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-emfile.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-error.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-fail-always.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-fail-always.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-fs-event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-fs-event.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-fs-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-fs-poll.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-fs.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-get-loadavg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-get-loadavg.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-get-memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-get-memory.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-getaddrinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-getaddrinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-getnameinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-getnameinfo.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-getsockname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-getsockname.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-homedir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-homedir.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-hrtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-hrtime.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-idle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-idle.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-ip4-addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-ip4-addr.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-ip6-addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-ip6-addr.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-ipc.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-list.h -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-loop-alive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-loop-alive.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-loop-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-loop-close.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-loop-stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-loop-stop.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-loop-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-loop-time.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-mutexes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-mutexes.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-osx-select.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-osx-select.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-pass-always.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-pass-always.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-ping-pong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-ping-pong.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-poll-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-poll-close.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-poll.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-ref.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-run-nowait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-run-nowait.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-run-once.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-run-once.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-semaphore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-semaphore.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-signal.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-spawn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-spawn.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-tcp-oob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-tcp-oob.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-tcp-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-tcp-open.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-thread.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-timer.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-tty.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-udp-bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-udp-bind.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-udp-ipv6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-udp-ipv6.c -------------------------------------------------------------------------------- /runtime/deps/libuv/test/test-udp-open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/test/test-udp-open.c -------------------------------------------------------------------------------- /runtime/deps/libuv/uv.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/uv.gyp -------------------------------------------------------------------------------- /runtime/deps/libuv/vcbuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/libuv/vcbuild.bat -------------------------------------------------------------------------------- /runtime/deps/pcre2/132html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/132html -------------------------------------------------------------------------------- /runtime/deps/pcre2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/AUTHORS -------------------------------------------------------------------------------- /runtime/deps/pcre2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/CMakeLists.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/COPYING -------------------------------------------------------------------------------- /runtime/deps/pcre2/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/ChangeLog -------------------------------------------------------------------------------- /runtime/deps/pcre2/CheckMan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/CheckMan -------------------------------------------------------------------------------- /runtime/deps/pcre2/CleanTxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/CleanTxt -------------------------------------------------------------------------------- /runtime/deps/pcre2/Detrail: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/Detrail -------------------------------------------------------------------------------- /runtime/deps/pcre2/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/HACKING -------------------------------------------------------------------------------- /runtime/deps/pcre2/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/INSTALL -------------------------------------------------------------------------------- /runtime/deps/pcre2/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/LICENCE -------------------------------------------------------------------------------- /runtime/deps/pcre2/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/Makefile.am -------------------------------------------------------------------------------- /runtime/deps/pcre2/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/Makefile.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/NEWS -------------------------------------------------------------------------------- /runtime/deps/pcre2/NON-AUTOTOOLS-BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/NON-AUTOTOOLS-BUILD -------------------------------------------------------------------------------- /runtime/deps/pcre2/PrepareRelease: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/PrepareRelease -------------------------------------------------------------------------------- /runtime/deps/pcre2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/README -------------------------------------------------------------------------------- /runtime/deps/pcre2/RunGrepTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/RunGrepTest -------------------------------------------------------------------------------- /runtime/deps/pcre2/RunTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/RunTest -------------------------------------------------------------------------------- /runtime/deps/pcre2/RunTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/RunTest.bat -------------------------------------------------------------------------------- /runtime/deps/pcre2/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/aclocal.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/ar-lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/ar-lib -------------------------------------------------------------------------------- /runtime/deps/pcre2/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/compile -------------------------------------------------------------------------------- /runtime/deps/pcre2/config-cmake.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/config-cmake.h.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/config.guess -------------------------------------------------------------------------------- /runtime/deps/pcre2/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/config.sub -------------------------------------------------------------------------------- /runtime/deps/pcre2/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/configure -------------------------------------------------------------------------------- /runtime/deps/pcre2/configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/configure.ac -------------------------------------------------------------------------------- /runtime/deps/pcre2/depcomp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/depcomp -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/html/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/html/README.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/html/index.html -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/html/pcre2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/html/pcre2.html -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/index.html.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/index.html.src -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2-config.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2-config.1 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2-config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2-config.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2_compile.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2_compile.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2_config.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2_config.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2_get_mark.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2_get_mark.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2_match.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2_match.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2_set_bsr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2_set_bsr.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2api.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2api.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2build.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2build.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2callout.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2callout.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2compat.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2compat.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2demo.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2demo.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2grep.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2grep.1 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2grep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2grep.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2jit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2jit.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2limits.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2limits.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2matching.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2matching.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2partial.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2partial.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2pattern.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2pattern.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2perform.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2perform.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2posix.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2posix.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2sample.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2sample.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2serialize.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2serialize.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2stack.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2stack.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2syntax.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2syntax.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2test.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2test.1 -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2test.txt -------------------------------------------------------------------------------- /runtime/deps/pcre2/doc/pcre2unicode.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/doc/pcre2unicode.3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/install-sh -------------------------------------------------------------------------------- /runtime/deps/pcre2/libpcre2-16.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/libpcre2-16.pc.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/libpcre2-32.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/libpcre2-32.pc.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/libpcre2-8.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/libpcre2-8.pc.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/libpcre2-posix.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/libpcre2-posix.pc.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/ltmain.sh -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/libtool.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/libtool.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/ltoptions.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/ltoptions.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/ltsugar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/ltsugar.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/ltversion.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/ltversion.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/m4/lt~obsolete.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/m4/lt~obsolete.m4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/missing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/missing -------------------------------------------------------------------------------- /runtime/deps/pcre2/pcre2-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/pcre2-config.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/perltest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/perltest.sh -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/config.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/config.h.generic -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/config.h.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/dftables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/dftables.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2.h.generic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2.h.generic -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2.h.in -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_compile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_compile.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_config.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_context.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_error.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_internal.h -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_jit_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_jit_misc.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_jit_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_jit_test.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_match.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_newline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_newline.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_ord2utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_ord2utf.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_printint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_printint.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_study.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_study.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_tables.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_tables.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_ucd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_ucd.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_ucp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_ucp.h -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2_xclass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2_xclass.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2demo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2demo.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2grep.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2posix.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2posix.h -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/pcre2test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/pcre2test.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/sljit/sljitLir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/sljit/sljitLir.c -------------------------------------------------------------------------------- /runtime/deps/pcre2/src/sljit/sljitLir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/src/sljit/sljitLir.h -------------------------------------------------------------------------------- /runtime/deps/pcre2/test-driver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/test-driver -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepbinary: -------------------------------------------------------------------------------- 1 | The quick brown fx jumps over the lazy dog. 2 | -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepinput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepinput -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepinput3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepinput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepinput8 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepinputv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepinputv -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepinputx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepinputx -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/greplist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/greplist -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepoutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepoutput -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepoutput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepoutput8 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/grepoutputN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/grepoutputN -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/greppatN4: -------------------------------------------------------------------------------- 1 | xxx 2 | jkl -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput1 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput10 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput11 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput12 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput13 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput14 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput15 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput16 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput17 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput18 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput19 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput2 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput5 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput6 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput7 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput8 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testinput9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testinput9 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput1 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput2 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput3 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput4 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput5 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput6 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput7 -------------------------------------------------------------------------------- /runtime/deps/pcre2/testdata/testoutput9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/deps/pcre2/testdata/testoutput9 -------------------------------------------------------------------------------- /runtime/examples/ex1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/examples/ex1.cpp -------------------------------------------------------------------------------- /runtime/examples/test1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/examples/test1.cxx -------------------------------------------------------------------------------- /runtime/include/jsc/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/common.h -------------------------------------------------------------------------------- /runtime/include/jsc/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/config.h.in -------------------------------------------------------------------------------- /runtime/include/jsc/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/dtoa.h -------------------------------------------------------------------------------- /runtime/include/jsc/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/fs.h -------------------------------------------------------------------------------- /runtime/include/jsc/jsimpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/jsimpl.h -------------------------------------------------------------------------------- /runtime/include/jsc/jsni.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/jsni.h -------------------------------------------------------------------------------- /runtime/include/jsc/jsruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/jsruntime.h -------------------------------------------------------------------------------- /runtime/include/jsc/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/objects.h -------------------------------------------------------------------------------- /runtime/include/jsc/pcre2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/pcre2.h -------------------------------------------------------------------------------- /runtime/include/jsc/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/sort.h -------------------------------------------------------------------------------- /runtime/include/jsc/typedarrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/typedarrays.h -------------------------------------------------------------------------------- /runtime/include/jsc/uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/uri.h -------------------------------------------------------------------------------- /runtime/include/jsc/utf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/include/jsc/utf.h -------------------------------------------------------------------------------- /runtime/js/core/01core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/01core.js -------------------------------------------------------------------------------- /runtime/js/core/02math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/02math.js -------------------------------------------------------------------------------- /runtime/js/core/03date.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/03date.js -------------------------------------------------------------------------------- /runtime/js/core/03number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/03number.js -------------------------------------------------------------------------------- /runtime/js/core/03typedarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/03typedarray.js -------------------------------------------------------------------------------- /runtime/js/core/10regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/10regexp.js -------------------------------------------------------------------------------- /runtime/js/core/11json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/11json.js -------------------------------------------------------------------------------- /runtime/js/core/20module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/20module.js -------------------------------------------------------------------------------- /runtime/js/core/90global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/90global.js -------------------------------------------------------------------------------- /runtime/js/core/95init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/95init.js -------------------------------------------------------------------------------- /runtime/js/core/96evloop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/core/96evloop.js -------------------------------------------------------------------------------- /runtime/js/modules/_constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/_constants.js -------------------------------------------------------------------------------- /runtime/js/modules/_fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/_fs.js -------------------------------------------------------------------------------- /runtime/js/modules/_jsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/_jsc.js -------------------------------------------------------------------------------- /runtime/js/modules/assert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/assert.js -------------------------------------------------------------------------------- /runtime/js/modules/buffer/.npmignore: -------------------------------------------------------------------------------- 1 | perf/ 2 | -------------------------------------------------------------------------------- /runtime/js/modules/buffer/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/.travis.yml -------------------------------------------------------------------------------- /runtime/js/modules/buffer/.zuul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/.zuul.yml -------------------------------------------------------------------------------- /runtime/js/modules/buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/LICENSE -------------------------------------------------------------------------------- /runtime/js/modules/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/README.md -------------------------------------------------------------------------------- /runtime/js/modules/buffer/bin/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/bin/test.js -------------------------------------------------------------------------------- /runtime/js/modules/buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/index.js -------------------------------------------------------------------------------- /runtime/js/modules/buffer/node_modules/is-array/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /runtime/js/modules/buffer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/package.json -------------------------------------------------------------------------------- /runtime/js/modules/buffer/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/test/basic.js -------------------------------------------------------------------------------- /runtime/js/modules/buffer/test/node/README.txt: -------------------------------------------------------------------------------- 1 | io.js/node.js core buffer tests 2 | -------------------------------------------------------------------------------- /runtime/js/modules/buffer/test/slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/test/slice.js -------------------------------------------------------------------------------- /runtime/js/modules/buffer/test/write.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/buffer/test/write.js -------------------------------------------------------------------------------- /runtime/js/modules/child_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/child_process.js -------------------------------------------------------------------------------- /runtime/js/modules/console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/console.js -------------------------------------------------------------------------------- /runtime/js/modules/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/modules/process.js -------------------------------------------------------------------------------- /runtime/js/nodelib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/LICENSE -------------------------------------------------------------------------------- /runtime/js/nodelib/_stream_duplex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/_stream_duplex.js -------------------------------------------------------------------------------- /runtime/js/nodelib/_stream_readable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/_stream_readable.js -------------------------------------------------------------------------------- /runtime/js/nodelib/_stream_transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/_stream_transform.js -------------------------------------------------------------------------------- /runtime/js/nodelib/_stream_writable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/_stream_writable.js -------------------------------------------------------------------------------- /runtime/js/nodelib/domain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/domain.js -------------------------------------------------------------------------------- /runtime/js/nodelib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/events.js -------------------------------------------------------------------------------- /runtime/js/nodelib/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/fs.js -------------------------------------------------------------------------------- /runtime/js/nodelib/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/path.js -------------------------------------------------------------------------------- /runtime/js/nodelib/smalloc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/smalloc.js -------------------------------------------------------------------------------- /runtime/js/nodelib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/stream.js -------------------------------------------------------------------------------- /runtime/js/nodelib/string_decoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/string_decoder.js -------------------------------------------------------------------------------- /runtime/js/nodelib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/util.js -------------------------------------------------------------------------------- /runtime/js/nodelib/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/nodelib/versions.txt -------------------------------------------------------------------------------- /runtime/js/runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/js/runtime.js -------------------------------------------------------------------------------- /runtime/src/convert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/convert.cpp -------------------------------------------------------------------------------- /runtime/src/fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/fs.cpp -------------------------------------------------------------------------------- /runtime/src/gc.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/gc.cxx -------------------------------------------------------------------------------- /runtime/src/handles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/handles.cpp -------------------------------------------------------------------------------- /runtime/src/jsimpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/jsimpl.cpp -------------------------------------------------------------------------------- /runtime/src/jsni.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/jsni.cpp -------------------------------------------------------------------------------- /runtime/src/math.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/math.cpp -------------------------------------------------------------------------------- /runtime/src/operators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/operators.cpp -------------------------------------------------------------------------------- /runtime/src/runtime.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/runtime.cxx -------------------------------------------------------------------------------- /runtime/src/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/sort.cpp -------------------------------------------------------------------------------- /runtime/src/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/string.cpp -------------------------------------------------------------------------------- /runtime/src/typedarrays.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/typedarrays.cxx -------------------------------------------------------------------------------- /runtime/src/uri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/uri.cpp -------------------------------------------------------------------------------- /runtime/src/utf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/runtime/src/utf.cxx -------------------------------------------------------------------------------- /src/compiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/src/compiler.ts -------------------------------------------------------------------------------- /src/cxxbackend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/src/cxxbackend.ts -------------------------------------------------------------------------------- /src/estree-x.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/src/estree-x.d.ts -------------------------------------------------------------------------------- /src/hir.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/src/hir.ts -------------------------------------------------------------------------------- /tests/apply.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/apply.js -------------------------------------------------------------------------------- /tests/array-concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-concat.js -------------------------------------------------------------------------------- /tests/array-foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-foreach.js -------------------------------------------------------------------------------- /tests/array-shift.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-shift.js -------------------------------------------------------------------------------- /tests/array-slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-slice.js -------------------------------------------------------------------------------- /tests/array-sort1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-sort1.js -------------------------------------------------------------------------------- /tests/array-splice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/array-splice.js -------------------------------------------------------------------------------- /tests/array_tostring.js: -------------------------------------------------------------------------------- 1 | var x = [1,2,3]; 2 | 3 | console.log(x.toString()); 4 | -------------------------------------------------------------------------------- /tests/arrayjoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/arrayjoin.js -------------------------------------------------------------------------------- /tests/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/binary.js -------------------------------------------------------------------------------- /tests/bind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/bind.js -------------------------------------------------------------------------------- /tests/defineprop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/defineprop.js -------------------------------------------------------------------------------- /tests/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/delete.js -------------------------------------------------------------------------------- /tests/empty.js: -------------------------------------------------------------------------------- 1 | var dummy = 0; 2 | -------------------------------------------------------------------------------- /tests/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/errors.js -------------------------------------------------------------------------------- /tests/hasownprop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/hasownprop.js -------------------------------------------------------------------------------- /tests/iftrue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/iftrue.js -------------------------------------------------------------------------------- /tests/in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/in.js -------------------------------------------------------------------------------- /tests/inittag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/inittag.js -------------------------------------------------------------------------------- /tests/instanceof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/instanceof.js -------------------------------------------------------------------------------- /tests/isnan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/isnan.js -------------------------------------------------------------------------------- /tests/json1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/json1.js -------------------------------------------------------------------------------- /tests/math-consts1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/math-consts1.js -------------------------------------------------------------------------------- /tests/math1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/math1.js -------------------------------------------------------------------------------- /tests/mustprint0.js: -------------------------------------------------------------------------------- 1 | console.log(+[]); 2 | -------------------------------------------------------------------------------- /tests/mustprint10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/mustprint10.js -------------------------------------------------------------------------------- /tests/naninf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/naninf.js -------------------------------------------------------------------------------- /tests/object-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/object-keys.js -------------------------------------------------------------------------------- /tests/object-tostring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/object-tostring.js -------------------------------------------------------------------------------- /tests/parsefloat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/parsefloat.js -------------------------------------------------------------------------------- /tests/parseint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/parseint.js -------------------------------------------------------------------------------- /tests/parseint2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/parseint2.js -------------------------------------------------------------------------------- /tests/proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/proto.js -------------------------------------------------------------------------------- /tests/pushpop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/pushpop.js -------------------------------------------------------------------------------- /tests/quicksort-killer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/quicksort-killer.js -------------------------------------------------------------------------------- /tests/regexp1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/regexp1.js -------------------------------------------------------------------------------- /tests/regexp2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/regexp2.js -------------------------------------------------------------------------------- /tests/regexp3-uni.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/regexp3-uni.js -------------------------------------------------------------------------------- /tests/sortbench1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench1.js -------------------------------------------------------------------------------- /tests/sortbench2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench2.js -------------------------------------------------------------------------------- /tests/sortbench3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench3.js -------------------------------------------------------------------------------- /tests/sortbench4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench4.js -------------------------------------------------------------------------------- /tests/sortbench5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench5.js -------------------------------------------------------------------------------- /tests/sortbench6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sortbench6.js -------------------------------------------------------------------------------- /tests/sorttest1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/sorttest1.js -------------------------------------------------------------------------------- /tests/strict-caller.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | function f1 () {} 3 | 4 | console.log(f1.caller); 5 | -------------------------------------------------------------------------------- /tests/strindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/strindex.js -------------------------------------------------------------------------------- /tests/string-fromcharcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-fromcharcode.js -------------------------------------------------------------------------------- /tests/string-indexof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-indexof.js -------------------------------------------------------------------------------- /tests/string-lastindexof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-lastindexof.js -------------------------------------------------------------------------------- /tests/string-slice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-slice.js -------------------------------------------------------------------------------- /tests/string-split1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-split1.js -------------------------------------------------------------------------------- /tests/string-substr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-substr.js -------------------------------------------------------------------------------- /tests/string-substring.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string-substring.js -------------------------------------------------------------------------------- /tests/string_case.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/string_case.js -------------------------------------------------------------------------------- /tests/switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/switch.js -------------------------------------------------------------------------------- /tests/trycatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/trycatch.js -------------------------------------------------------------------------------- /tests/typedarray1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/typedarray1.js -------------------------------------------------------------------------------- /tests/typeof.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/typeof.js -------------------------------------------------------------------------------- /tests/unary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/unary.js -------------------------------------------------------------------------------- /tests/undefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/undefined.js -------------------------------------------------------------------------------- /tests/unistr1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/unistr1.js -------------------------------------------------------------------------------- /tests/uri-encode-decode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tests/uri-encode-decode.js -------------------------------------------------------------------------------- /tsd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/tsd.json -------------------------------------------------------------------------------- /typings/acorn/acorn.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/typings/acorn/acorn.d.ts -------------------------------------------------------------------------------- /typings/acorn_csp/acorn_csp.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/typings/acorn_csp/acorn_csp.d.ts -------------------------------------------------------------------------------- /typings/estree/estree.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/typings/estree/estree.d.ts -------------------------------------------------------------------------------- /typings/node/node.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/typings/node/node.d.ts -------------------------------------------------------------------------------- /typings/tsd.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmikov/jscomp/HEAD/typings/tsd.d.ts --------------------------------------------------------------------------------