webruby 0.2.7 → 0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/webruby/environment.rb +24 -8
- data/lib/webruby/rake/files.rake +6 -22
- data/lib/webruby/rake/general.rake +1 -1
- data/lib/webruby/rake/mruby.rake +1 -0
- data/lib/webruby/utility.rb +14 -0
- data/modules/mruby/AUTHORS +14 -0
- data/modules/mruby/CONTRIBUTING.md +7 -4
- data/modules/mruby/INSTALL +28 -11
- data/modules/mruby/MITL +13 -13
- data/modules/mruby/Makefile +4 -5
- data/modules/mruby/README.md +54 -49
- data/modules/mruby/Rakefile +36 -6
- data/modules/mruby/benchmark/ao-render.rb +1 -2
- data/modules/mruby/benchmark/bm_app_lc_fizzbuzz.rb +52 -0
- data/modules/mruby/benchmark/fib39.rb +0 -0
- data/modules/mruby/bintest/mrbc.rb +12 -0
- data/modules/mruby/build_config.rb +32 -2
- data/modules/mruby/doc/api/README.md +30 -0
- data/modules/mruby/doc/api/mruby.h.md +69 -0
- data/modules/mruby/doc/compile/README.md +208 -99
- data/modules/mruby/doc/debugger/README.md +370 -0
- data/modules/mruby/doc/language/Core.md +1590 -0
- data/modules/mruby/doc/language/README.md +9 -0
- data/modules/mruby/doc/language/generator.rb +15 -0
- data/modules/mruby/doc/language/mrbdoc/lib/mrbdoc_analyze.rb +231 -0
- data/modules/mruby/doc/language/mrbdoc/lib/mrbdoc_docu.rb +118 -0
- data/modules/mruby/doc/language/mrbdoc/mrbdoc.rb +38 -0
- data/modules/mruby/doc/mrbconf/README.md +160 -0
- data/modules/mruby/doc/mrbgems/README.md +136 -66
- data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/mrbgems/c_and_ruby_extension_example/src/example.c +1 -1
- data/modules/mruby/examples/mrbgems/c_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/mrbgems/c_extension_example/src/example.c +1 -1
- data/modules/mruby/examples/mrbgems/ruby_extension_example/mrbgem.rake +1 -1
- data/modules/mruby/examples/targets/{ArduinoDue.rb → build_config_ArduinoDue.rb} +32 -6
- data/modules/mruby/examples/targets/build_config_IntelGalileo.rb +106 -0
- data/modules/mruby/examples/targets/{chipKitMax32.rb → build_config_chipKITMax32.rb} +26 -7
- data/modules/mruby/include/mrbconf.h +25 -1
- data/modules/mruby/include/mruby/array.h +32 -22
- data/modules/mruby/include/mruby/boxing_nan.h +94 -0
- data/modules/mruby/include/mruby/boxing_no.h +49 -0
- data/modules/mruby/include/mruby/boxing_word.h +119 -0
- data/modules/mruby/include/mruby/class.h +15 -13
- data/modules/mruby/include/mruby/compile.h +43 -36
- data/modules/mruby/include/mruby/data.h +13 -5
- data/modules/mruby/include/mruby/debug.h +9 -9
- data/modules/mruby/include/mruby/dump.h +32 -23
- data/modules/mruby/include/mruby/error.h +36 -0
- data/modules/mruby/include/mruby/gc.h +11 -6
- data/modules/mruby/include/mruby/hash.h +12 -12
- data/modules/mruby/include/mruby/irep.h +9 -3
- data/modules/mruby/include/mruby/khash.h +58 -41
- data/modules/mruby/include/mruby/numeric.h +38 -4
- data/modules/mruby/include/mruby/object.h +55 -0
- data/modules/mruby/include/mruby/opcode.h +160 -0
- data/modules/mruby/include/mruby/proc.h +19 -5
- data/modules/mruby/include/mruby/range.h +4 -3
- data/modules/mruby/include/mruby/re.h +20 -0
- data/modules/mruby/include/mruby/string.h +86 -47
- data/modules/mruby/include/mruby/value.h +100 -374
- data/modules/mruby/include/mruby/variable.h +34 -32
- data/modules/mruby/include/mruby/version.h +40 -0
- data/modules/mruby/include/mruby.h +211 -139
- data/modules/mruby/minirake +16 -9
- data/modules/mruby/mrbgems/default.gembox +12 -0
- data/modules/mruby/mrbgems/full-core.gembox +3 -3
- data/modules/mruby/mrbgems/mruby-array-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-array-ext/mrblib/array.rb +488 -8
- data/modules/mruby/mrbgems/mruby-array-ext/src/array.c +57 -31
- data/modules/mruby/mrbgems/mruby-array-ext/test/array.rb +231 -45
- data/modules/mruby/mrbgems/mruby-bin-debugger/bintest/mrdb.rb +286 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/bintest/print.rb +701 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/mrbgem.rake +9 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.c +516 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apibreak.h +26 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.c +235 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apilist.h +14 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.c +78 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/apiprint.h +13 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c +428 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdmisc.c +501 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdprint.c +58 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/cmdrun.c +54 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.c +746 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdb.h +163 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdbconf.h +16 -0
- data/modules/mruby/mrbgems/mruby-bin-debugger/tools/mrdb/mrdberror.h +20 -0
- data/modules/mruby/mrbgems/mruby-bin-mirb/bintest/mirb.rb +12 -0
- data/modules/mruby/mrbgems/mruby-bin-mirb/mrbgem.rake +14 -1
- data/modules/mruby/mrbgems/mruby-bin-mirb/tools/mirb/mirb.c +154 -72
- data/modules/mruby/mrbgems/mruby-bin-mruby/bintest/mruby.rb +46 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby/tools/mruby/mruby.c +37 -28
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mrbgem.rake +30 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mruby-config +16 -0
- data/modules/mruby/mrbgems/mruby-bin-mruby-config/mruby-config.bat +30 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/bintest/mruby-strip.rb +73 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/mrbgem.rake +6 -0
- data/modules/mruby/mrbgems/mruby-bin-strip/tools/mruby-strip/mruby-strip.c +155 -0
- data/modules/mruby/mrbgems/mruby-enum-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-enum-ext/mrblib/enum.rb +555 -21
- data/modules/mruby/mrbgems/mruby-enum-ext/test/enum.rb +119 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/mrbgem.rake +7 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/mrblib/lazy.rb +150 -0
- data/modules/mruby/mrbgems/mruby-enum-lazy/test/lazy.rb +47 -0
- data/modules/mruby/mrbgems/mruby-enumerator/mrbgem.rake +7 -0
- data/modules/mruby/mrbgems/mruby-enumerator/mrblib/enumerator.rb +636 -0
- data/modules/mruby/mrbgems/mruby-enumerator/test/enumerator.rb +537 -0
- data/modules/mruby/mrbgems/mruby-eval/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-eval/src/eval.c +243 -4
- data/modules/mruby/mrbgems/mruby-eval/test/eval.rb +80 -0
- data/modules/mruby/mrbgems/mruby-exit/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-exit/src/mruby-exit.c +1 -1
- data/modules/mruby/mrbgems/mruby-fiber/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-fiber/src/fiber.c +157 -51
- data/modules/mruby/mrbgems/mruby-fiber/test/fiber.rb +179 -35
- data/modules/mruby/mrbgems/mruby-hash-ext/mrbgem.rake +3 -0
- data/modules/mruby/mrbgems/mruby-hash-ext/mrblib/hash.rb +241 -1
- data/modules/mruby/mrbgems/mruby-hash-ext/src/hash-ext.c +11 -19
- data/modules/mruby/mrbgems/mruby-hash-ext/test/hash.rb +138 -1
- data/modules/mruby/mrbgems/mruby-kernel-ext/mrbgem.rake +5 -0
- data/modules/mruby/mrbgems/mruby-kernel-ext/src/kernel.c +183 -0
- data/modules/mruby/mrbgems/mruby-kernel-ext/test/kernel.rb +53 -0
- data/modules/mruby/mrbgems/mruby-math/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-math/src/math.c +107 -14
- data/modules/mruby/mrbgems/mruby-math/test/math.rb +16 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/mrblib/numeric_ext.rb +5 -0
- data/modules/mruby/mrbgems/mruby-numeric-ext/test/numeric.rb +9 -1
- data/modules/mruby/mrbgems/mruby-object-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-object-ext/mrblib/object.rb +19 -0
- data/modules/mruby/mrbgems/mruby-object-ext/src/object.c +5 -8
- data/modules/mruby/mrbgems/mruby-object-ext/test/object.rb +16 -0
- data/modules/mruby/mrbgems/mruby-objectspace/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-objectspace/src/mruby_objectspace.c +121 -53
- data/modules/mruby/mrbgems/mruby-objectspace/test/objectspace.rb +27 -4
- data/modules/mruby/mrbgems/mruby-print/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-print/src/print.c +3 -5
- data/modules/mruby/mrbgems/mruby-proc-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-proc-ext/src/proc.c +89 -19
- data/modules/mruby/mrbgems/mruby-proc-ext/test/proc.c +56 -0
- data/modules/mruby/mrbgems/mruby-proc-ext/test/proc.rb +47 -0
- data/modules/mruby/mrbgems/mruby-random/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.c +30 -25
- data/modules/mruby/mrbgems/mruby-random/src/mt19937ar.h +6 -3
- data/modules/mruby/mrbgems/mruby-random/src/random.c +157 -137
- data/modules/mruby/mrbgems/mruby-random/src/random.h +3 -3
- data/modules/mruby/mrbgems/mruby-random/test/random.rb +9 -9
- data/modules/mruby/mrbgems/mruby-range-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-range-ext/src/range.c +57 -3
- data/modules/mruby/mrbgems/mruby-range-ext/test/range.rb +9 -0
- data/modules/mruby/mrbgems/mruby-sprintf/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-sprintf/mrblib/string.rb +9 -0
- data/modules/mruby/mrbgems/mruby-sprintf/src/sprintf.c +29 -23
- data/modules/mruby/mrbgems/mruby-sprintf/test/sprintf.rb +7 -2
- data/modules/mruby/mrbgems/mruby-string-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-string-ext/mrblib/string.rb +250 -11
- data/modules/mruby/mrbgems/mruby-string-ext/src/string.c +220 -5
- data/modules/mruby/mrbgems/mruby-string-ext/test/string.rb +326 -4
- data/modules/mruby/mrbgems/mruby-string-utf8/mrbgem.rake +2 -0
- data/modules/mruby/mrbgems/mruby-string-utf8/src/string.c +486 -52
- data/modules/mruby/mrbgems/mruby-string-utf8/test/string.rb +97 -14
- data/modules/mruby/mrbgems/mruby-struct/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-struct/mrblib/struct.rb +31 -0
- data/modules/mruby/mrbgems/mruby-struct/src/struct.c +178 -196
- data/modules/mruby/mrbgems/mruby-struct/test/struct.rb +115 -61
- data/modules/mruby/mrbgems/mruby-symbol-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-symbol-ext/mrblib/symbol.rb +22 -17
- data/modules/mruby/mrbgems/mruby-symbol-ext/src/symbol.c +20 -11
- data/modules/mruby/mrbgems/mruby-symbol-ext/test/symbol.rb +14 -0
- data/modules/mruby/mrbgems/mruby-time/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-time/mrblib/time.rb +9 -0
- data/modules/mruby/mrbgems/mruby-time/src/time.c +98 -37
- data/modules/mruby/mrbgems/mruby-time/test/time.rb +152 -148
- data/modules/mruby/mrbgems/mruby-toplevel-ext/mrbgem.rake +1 -0
- data/modules/mruby/mrbgems/mruby-toplevel-ext/test/toplevel.rb +1 -1
- data/modules/mruby/mrblib/array.rb +110 -4
- data/modules/mruby/mrblib/class.rb +1 -22
- data/modules/mruby/mrblib/compar.rb +10 -30
- data/modules/mruby/mrblib/enum.rb +64 -52
- data/modules/mruby/mrblib/error.rb +9 -4
- data/modules/mruby/mrblib/hash.rb +164 -23
- data/modules/mruby/mrblib/kernel.rb +26 -22
- data/modules/mruby/mrblib/mrblib.rake +4 -4
- data/modules/mruby/mrblib/numeric.rb +22 -9
- data/modules/mruby/mrblib/range.rb +24 -2
- data/modules/mruby/mrblib/string.rb +15 -3
- data/modules/mruby/src/array.c +279 -339
- data/modules/mruby/src/backtrace.c +68 -16
- data/modules/mruby/src/class.c +539 -379
- data/modules/mruby/src/codegen.c +424 -207
- data/modules/mruby/src/compar.c +1 -1
- data/modules/mruby/src/crc.c +7 -6
- data/modules/mruby/src/debug.c +37 -36
- data/modules/mruby/src/dump.c +463 -213
- data/modules/mruby/src/enum.c +1 -1
- data/modules/mruby/src/error.c +91 -92
- data/modules/mruby/src/error.h +3 -19
- data/modules/mruby/src/etc.c +85 -82
- data/modules/mruby/src/gc.c +134 -108
- data/modules/mruby/src/hash.c +161 -565
- data/modules/mruby/src/init.c +2 -13
- data/modules/mruby/src/kernel.c +217 -251
- data/modules/mruby/src/load.c +280 -283
- data/modules/mruby/src/mrb_throw.h +41 -0
- data/modules/mruby/src/mruby_core.rake +57 -7
- data/modules/mruby/src/node.h +104 -104
- data/modules/mruby/src/numeric.c +221 -208
- data/modules/mruby/src/object.c +41 -42
- data/modules/mruby/src/opcode.h +2 -160
- data/modules/mruby/src/parse.y +3430 -3223
- data/modules/mruby/src/pool.c +13 -9
- data/modules/mruby/src/print.c +20 -17
- data/modules/mruby/src/proc.c +77 -21
- data/modules/mruby/src/range.c +55 -45
- data/modules/mruby/src/state.c +95 -31
- data/modules/mruby/src/string.c +462 -468
- data/modules/mruby/src/symbol.c +95 -85
- data/modules/mruby/src/variable.c +104 -74
- data/modules/mruby/src/version.c +13 -0
- data/modules/mruby/src/vm.c +528 -296
- data/modules/mruby/tasks/libmruby.rake +9 -5
- data/modules/mruby/tasks/mrbgem_spec.rake +130 -26
- data/modules/mruby/tasks/mrbgems.rake +21 -11
- data/modules/mruby/tasks/mrbgems_test.rake +46 -40
- data/modules/mruby/tasks/mruby_build.rake +54 -12
- data/modules/mruby/tasks/mruby_build_commands.rake +34 -5
- data/modules/mruby/tasks/mruby_build_gem.rake +25 -3
- data/modules/mruby/tasks/ruby_ext.rake +11 -2
- data/modules/mruby/tasks/toolchains/clang.rake +2 -1
- data/modules/mruby/tasks/toolchains/gcc.rake +26 -3
- data/modules/mruby/tasks/toolchains/visualcpp.rake +17 -8
- data/modules/mruby/test/assert.rb +30 -8
- data/modules/mruby/test/bintest.rb +10 -0
- data/modules/mruby/test/driver.c +74 -24
- data/modules/mruby/test/init_mrbtest.c +21 -2
- data/modules/mruby/test/mrbtest.rake +27 -5
- data/modules/mruby/test/t/argumenterror.rb +0 -5
- data/modules/mruby/test/t/array.rb +23 -7
- data/modules/mruby/test/t/bs_block.rb +32 -0
- data/modules/mruby/test/t/class.rb +29 -5
- data/modules/mruby/test/t/comparable.rb +20 -12
- data/modules/mruby/test/t/enumerable.rb +33 -7
- data/modules/mruby/test/t/exception.rb +63 -38
- data/modules/mruby/test/t/false.rb +2 -4
- data/modules/mruby/test/t/float.rb +39 -4
- data/modules/mruby/test/t/hash.rb +40 -6
- data/modules/mruby/test/t/indexerror.rb +0 -4
- data/modules/mruby/test/t/integer.rb +41 -5
- data/modules/mruby/test/t/kernel.rb +90 -3
- data/modules/mruby/test/t/localjumperror.rb +4 -4
- data/modules/mruby/test/t/methods.rb +1 -1
- data/modules/mruby/test/t/module.rb +43 -13
- data/modules/mruby/test/t/nameerror.rb +0 -4
- data/modules/mruby/test/t/nil.rb +5 -0
- data/modules/mruby/test/t/nomethoderror.rb +11 -2
- data/modules/mruby/test/t/numeric.rb +18 -4
- data/modules/mruby/test/t/proc.rb +59 -6
- data/modules/mruby/test/t/range.rb +15 -5
- data/modules/mruby/test/t/rangeerror.rb +0 -4
- data/modules/mruby/test/t/standarderror.rb +0 -4
- data/modules/mruby/test/t/string.rb +56 -12
- data/modules/mruby/test/t/superclass.rb +46 -0
- data/modules/mruby/test/t/symbol.rb +0 -4
- data/modules/mruby/test/t/syntax.rb +134 -1
- data/modules/mruby/test/t/true.rb +2 -4
- data/modules/mruby/test/t/typeerror.rb +0 -5
- data/modules/mruby/test/t/unicode.rb +35 -0
- data/modules/mruby/tools/mrbc/mrbc.c +9 -12
- data/modules/mruby/travis_config.rb +22 -2
- metadata +98 -1299
- data/modules/emscripten/AUTHORS +0 -117
- data/modules/emscripten/CONTRIBUTING.markdown +0 -5
- data/modules/emscripten/ChangeLog +0 -468
- data/modules/emscripten/LICENSE +0 -94
- data/modules/emscripten/README.markdown +0 -14
- data/modules/emscripten/cmake/Modules/FindOpenAL.cmake +0 -26
- data/modules/emscripten/cmake/Platform/Emscripten.cmake +0 -228
- data/modules/emscripten/em++ +0 -12
- data/modules/emscripten/em++.bat +0 -2
- data/modules/emscripten/em-config +0 -24
- data/modules/emscripten/em-config.bat +0 -2
- data/modules/emscripten/emar +0 -24
- data/modules/emscripten/emar.bat +0 -2
- data/modules/emscripten/emcc +0 -2069
- data/modules/emscripten/emcc.bat +0 -2
- data/modules/emscripten/emcc.py +0 -5
- data/modules/emscripten/emconfigure +0 -27
- data/modules/emscripten/emconfigure.bat +0 -2
- data/modules/emscripten/emlink.py +0 -33
- data/modules/emscripten/emmake +0 -29
- data/modules/emscripten/emmake.bat +0 -2
- data/modules/emscripten/emranlib +0 -9
- data/modules/emscripten/emranlib.bat +0 -2
- data/modules/emscripten/emrun +0 -1087
- data/modules/emscripten/emrun.bat +0 -2
- data/modules/emscripten/emscons +0 -20
- data/modules/emscripten/emscripten.py +0 -1347
- data/modules/emscripten/package.json +0 -7
- data/modules/emscripten/patches/README +0 -4
- data/modules/emscripten/patches/series +0 -2
- data/modules/emscripten/scons-tools/closure.py +0 -28
- data/modules/emscripten/scons-tools/emscripten.py +0 -364
- data/modules/emscripten/scons-tools/llvm.py +0 -34
- data/modules/emscripten/src/analyzer.js +0 -1781
- data/modules/emscripten/src/closure-externs.js +0 -110
- data/modules/emscripten/src/compiler.html +0 -48
- data/modules/emscripten/src/compiler.js +0 -331
- data/modules/emscripten/src/compiler_phase.html +0 -33
- data/modules/emscripten/src/corruptionCheck.js +0 -98
- data/modules/emscripten/src/determinstic.js +0 -20
- data/modules/emscripten/src/embind/embind.js +0 -1677
- data/modules/emscripten/src/embind/emval.js +0 -284
- data/modules/emscripten/src/emrun_postjs.js +0 -20
- data/modules/emscripten/src/emrun_prejs.js +0 -5
- data/modules/emscripten/src/emscripten-source-map.min.js +0 -31
- data/modules/emscripten/src/experimental/allow_loopvars_from_memsetcpy_inasm.diff +0 -97
- data/modules/emscripten/src/experimental/batching.diff +0 -44
- data/modules/emscripten/src/experimental/functypeopt.diff +0 -113
- data/modules/emscripten/src/experimental/multiple_heaps.diff +0 -175
- data/modules/emscripten/src/experimental/noncallgraphprofiling.diff +0 -197
- data/modules/emscripten/src/experimental/optimize_memcpy_for_ta1.diff +0 -124
- data/modules/emscripten/src/experimental/remove__label__s.diff +0 -140
- data/modules/emscripten/src/experimental/renderer_cache_hash.diff +0 -99
- data/modules/emscripten/src/experimental/sdl_key_forwarding.diff +0 -57
- data/modules/emscripten/src/experimental/simplifyGeneratedFunctionsDetection.diff +0 -336
- data/modules/emscripten/src/experimental/stringCache.diff +0 -147
- data/modules/emscripten/src/fastLong.js +0 -299
- data/modules/emscripten/src/gl-matrix.js +0 -1952
- data/modules/emscripten/src/headless.js +0 -295
- data/modules/emscripten/src/headlessCanvas.js +0 -618
- data/modules/emscripten/src/hello_world.js +0 -92
- data/modules/emscripten/src/intertyper.js +0 -1228
- data/modules/emscripten/src/jsifier.js +0 -1969
- data/modules/emscripten/src/library.js +0 -9196
- data/modules/emscripten/src/library_browser.js +0 -988
- data/modules/emscripten/src/library_egl.js +0 -564
- data/modules/emscripten/src/library_fs.js +0 -1619
- data/modules/emscripten/src/library_gc.js +0 -236
- data/modules/emscripten/src/library_gl.js +0 -5194
- data/modules/emscripten/src/library_glfw.js +0 -585
- data/modules/emscripten/src/library_glut.js +0 -504
- data/modules/emscripten/src/library_idbfs.js +0 -216
- data/modules/emscripten/src/library_jansson.js +0 -320
- data/modules/emscripten/src/library_memfs.js +0 -303
- data/modules/emscripten/src/library_nodefs.js +0 -286
- data/modules/emscripten/src/library_openal.js +0 -915
- data/modules/emscripten/src/library_path.js +0 -133
- data/modules/emscripten/src/library_sdl.js +0 -2728
- data/modules/emscripten/src/library_sockfs.js +0 -578
- data/modules/emscripten/src/library_strtok_r.c +0 -97
- data/modules/emscripten/src/library_tty.js +0 -146
- data/modules/emscripten/src/library_uuid.js +0 -140
- data/modules/emscripten/src/library_xlib.js +0 -23
- data/modules/emscripten/src/long.js +0 -1609
- data/modules/emscripten/src/modules.js +0 -543
- data/modules/emscripten/src/parseTools.js +0 -2723
- data/modules/emscripten/src/postamble.js +0 -239
- data/modules/emscripten/src/postamble_sharedlib.js +0 -16
- data/modules/emscripten/src/preamble.js +0 -1233
- data/modules/emscripten/src/preamble_sharedlib.js +0 -25
- data/modules/emscripten/src/proxyClient.js +0 -82
- data/modules/emscripten/src/proxyWorker.js +0 -143
- data/modules/emscripten/src/relooper/README.markdown +0 -14
- data/modules/emscripten/src/relooper/Relooper.cpp +0 -1301
- data/modules/emscripten/src/relooper/Relooper.h +0 -257
- data/modules/emscripten/src/relooper/doit.sh +0 -70
- data/modules/emscripten/src/relooper/emscripten/glue.js +0 -67
- data/modules/emscripten/src/relooper/emscripten/test.js +0 -44
- data/modules/emscripten/src/relooper/fuzzer.py +0 -131
- data/modules/emscripten/src/relooper/ministring.h +0 -35
- data/modules/emscripten/src/relooper/paper.pdf +0 -0
- data/modules/emscripten/src/relooper/test.cpp +0 -290
- data/modules/emscripten/src/relooper/test.txt +0 -317
- data/modules/emscripten/src/relooper/test2.c +0 -44
- data/modules/emscripten/src/relooper/test2.txt +0 -26
- data/modules/emscripten/src/relooper/test3.c +0 -42
- data/modules/emscripten/src/relooper/test3.txt +0 -56
- data/modules/emscripten/src/relooper/test4.cpp +0 -40
- data/modules/emscripten/src/relooper/test4.txt +0 -44
- data/modules/emscripten/src/relooper/test5.cpp +0 -40
- data/modules/emscripten/src/relooper/test5.txt +0 -56
- data/modules/emscripten/src/relooper/test6.cpp +0 -31
- data/modules/emscripten/src/relooper/test6.txt +0 -26
- data/modules/emscripten/src/relooper/test_dead.cpp +0 -28
- data/modules/emscripten/src/relooper/test_dead.txt +0 -9
- data/modules/emscripten/src/relooper/test_debug.cpp +0 -30
- data/modules/emscripten/src/relooper/test_debug.txt +0 -142
- data/modules/emscripten/src/relooper/test_fuzz1.cpp +0 -52
- data/modules/emscripten/src/relooper/test_fuzz1.txt +0 -72
- data/modules/emscripten/src/relooper/test_fuzz2.cpp +0 -34
- data/modules/emscripten/src/relooper/test_fuzz2.txt +0 -30
- data/modules/emscripten/src/relooper/test_fuzz3.cpp +0 -36
- data/modules/emscripten/src/relooper/test_fuzz3.txt +0 -25
- data/modules/emscripten/src/relooper/test_fuzz4.cpp +0 -38
- data/modules/emscripten/src/relooper/test_fuzz4.txt +0 -41
- data/modules/emscripten/src/relooper/test_fuzz5.cpp +0 -57
- data/modules/emscripten/src/relooper/test_fuzz5.txt +0 -86
- data/modules/emscripten/src/relooper/test_fuzz6.cpp +0 -322
- data/modules/emscripten/src/relooper/test_fuzz6.txt +0 -291
- data/modules/emscripten/src/relooper/test_inf.cpp +0 -813
- data/modules/emscripten/src/relooper/test_inf.txt +0 -1131
- data/modules/emscripten/src/relooper/testit.sh +0 -62
- data/modules/emscripten/src/relooper/updateit.sh +0 -17
- data/modules/emscripten/src/runtime.js +0 -604
- data/modules/emscripten/src/settings.js +0 -476
- data/modules/emscripten/src/shell.html +0 -95
- data/modules/emscripten/src/shell.js +0 -173
- data/modules/emscripten/src/shell_sharedlib.js +0 -29
- data/modules/emscripten/src/simd.js +0 -1128
- data/modules/emscripten/src/socket.io.js +0 -3870
- data/modules/emscripten/src/struct_info.json +0 -1077
- data/modules/emscripten/src/utility.js +0 -411
- data/modules/emscripten/src/wrtcp.js +0 -821
- data/modules/emscripten/system/bin/sdl-config +0 -13
- data/modules/emscripten/system/include/AL/al.h +0 -172
- data/modules/emscripten/system/include/AL/alc.h +0 -84
- data/modules/emscripten/system/include/EGL/egl.h +0 -329
- data/modules/emscripten/system/include/EGL/eglext.h +0 -398
- data/modules/emscripten/system/include/EGL/eglplatform.h +0 -141
- data/modules/emscripten/system/include/GL/freeglut_std.h +0 -628
- data/modules/emscripten/system/include/GL/gl.h +0 -2241
- data/modules/emscripten/system/include/GL/glew.h +0 -6
- data/modules/emscripten/system/include/GL/glext.h +0 -11127
- data/modules/emscripten/system/include/GL/glfw.h +0 -518
- data/modules/emscripten/system/include/GL/glu.h +0 -353
- data/modules/emscripten/system/include/GL/glut.h +0 -21
- data/modules/emscripten/system/include/GLES/gl.h +0 -770
- data/modules/emscripten/system/include/GLES/glext.h +0 -1278
- data/modules/emscripten/system/include/GLES/glplatform.h +0 -30
- data/modules/emscripten/system/include/GLES2/gl2.h +0 -621
- data/modules/emscripten/system/include/GLES2/gl2ext.h +0 -803
- data/modules/emscripten/system/include/GLES2/gl2platform.h +0 -30
- data/modules/emscripten/system/include/KHR/khrplatform.h +0 -277
- data/modules/emscripten/system/include/SDL/COPYING +0 -19
- data/modules/emscripten/system/include/SDL/SDL.h +0 -162
- data/modules/emscripten/system/include/SDL/SDL_assert.h +0 -241
- data/modules/emscripten/system/include/SDL/SDL_atomic.h +0 -318
- data/modules/emscripten/system/include/SDL/SDL_audio.h +0 -509
- data/modules/emscripten/system/include/SDL/SDL_blendmode.h +0 -60
- data/modules/emscripten/system/include/SDL/SDL_clipboard.h +0 -75
- data/modules/emscripten/system/include/SDL/SDL_compat.h +0 -365
- data/modules/emscripten/system/include/SDL/SDL_config.h +0 -48
- data/modules/emscripten/system/include/SDL/SDL_config.h.in +0 -297
- data/modules/emscripten/system/include/SDL/SDL_config_android.h +0 -133
- data/modules/emscripten/system/include/SDL/SDL_config_iphoneos.h +0 -148
- data/modules/emscripten/system/include/SDL/SDL_config_macosx.h +0 -172
- data/modules/emscripten/system/include/SDL/SDL_config_minimal.h +0 -74
- data/modules/emscripten/system/include/SDL/SDL_config_nintendods.h +0 -129
- data/modules/emscripten/system/include/SDL/SDL_config_pandora.h +0 -125
- data/modules/emscripten/system/include/SDL/SDL_config_windows.h +0 -207
- data/modules/emscripten/system/include/SDL/SDL_config_wiz.h +0 -119
- data/modules/emscripten/system/include/SDL/SDL_copying.h +0 -20
- data/modules/emscripten/system/include/SDL/SDL_cpuinfo.h +0 -150
- data/modules/emscripten/system/include/SDL/SDL_endian.h +0 -248
- data/modules/emscripten/system/include/SDL/SDL_error.h +0 -77
- data/modules/emscripten/system/include/SDL/SDL_events.h +0 -640
- data/modules/emscripten/system/include/SDL/SDL_gesture.h +0 -91
- data/modules/emscripten/system/include/SDL/SDL_gfxPrimitives.h +0 -246
- data/modules/emscripten/system/include/SDL/SDL_haptic.h +0 -1200
- data/modules/emscripten/system/include/SDL/SDL_hints.h +0 -206
- data/modules/emscripten/system/include/SDL/SDL_image.h +0 -138
- data/modules/emscripten/system/include/SDL/SDL_input.h +0 -87
- data/modules/emscripten/system/include/SDL/SDL_joystick.h +0 -208
- data/modules/emscripten/system/include/SDL/SDL_keyboard.h +0 -169
- data/modules/emscripten/system/include/SDL/SDL_keycode.h +0 -344
- data/modules/emscripten/system/include/SDL/SDL_loadso.h +0 -85
- data/modules/emscripten/system/include/SDL/SDL_log.h +0 -211
- data/modules/emscripten/system/include/SDL/SDL_main.h +0 -98
- data/modules/emscripten/system/include/SDL/SDL_mixer.h +0 -634
- data/modules/emscripten/system/include/SDL/SDL_mouse.h +0 -213
- data/modules/emscripten/system/include/SDL/SDL_mutex.h +0 -248
- data/modules/emscripten/system/include/SDL/SDL_name.h +0 -11
- data/modules/emscripten/system/include/SDL/SDL_opengl.h +0 -11116
- data/modules/emscripten/system/include/SDL/SDL_opengles.h +0 -38
- data/modules/emscripten/system/include/SDL/SDL_opengles2.h +0 -38
- data/modules/emscripten/system/include/SDL/SDL_pixels.h +0 -423
- data/modules/emscripten/system/include/SDL/SDL_platform.h +0 -160
- data/modules/emscripten/system/include/SDL/SDL_power.h +0 -79
- data/modules/emscripten/system/include/SDL/SDL_quit.h +0 -58
- data/modules/emscripten/system/include/SDL/SDL_rect.h +0 -136
- data/modules/emscripten/system/include/SDL/SDL_render.h +0 -615
- data/modules/emscripten/system/include/SDL/SDL_revision.h +0 -2
- data/modules/emscripten/system/include/SDL/SDL_revision.h.orig +0 -2
- data/modules/emscripten/system/include/SDL/SDL_rotozoom.h +0 -123
- data/modules/emscripten/system/include/SDL/SDL_rwops.h +0 -220
- data/modules/emscripten/system/include/SDL/SDL_scancode.h +0 -398
- data/modules/emscripten/system/include/SDL/SDL_shape.h +0 -147
- data/modules/emscripten/system/include/SDL/SDL_stdinc.h +0 -764
- data/modules/emscripten/system/include/SDL/SDL_surface.h +0 -499
- data/modules/emscripten/system/include/SDL/SDL_syswm.h +0 -241
- data/modules/emscripten/system/include/SDL/SDL_thread.h +0 -182
- data/modules/emscripten/system/include/SDL/SDL_timer.h +0 -108
- data/modules/emscripten/system/include/SDL/SDL_touch.h +0 -124
- data/modules/emscripten/system/include/SDL/SDL_ttf.h +0 -249
- data/modules/emscripten/system/include/SDL/SDL_types.h +0 -29
- data/modules/emscripten/system/include/SDL/SDL_version.h +0 -166
- data/modules/emscripten/system/include/SDL/SDL_video.h +0 -820
- data/modules/emscripten/system/include/SDL/begin_code.h +0 -135
- data/modules/emscripten/system/include/SDL/close_code.h +0 -37
- data/modules/emscripten/system/include/X11/X.h +0 -717
- data/modules/emscripten/system/include/X11/Xatom.h +0 -79
- data/modules/emscripten/system/include/X11/Xfuncproto.h +0 -127
- data/modules/emscripten/system/include/X11/Xlib.h +0 -4023
- data/modules/emscripten/system/include/X11/Xosdefs.h +0 -116
- data/modules/emscripten/system/include/X11/Xutil.h +0 -826
- data/modules/emscripten/system/include/X11/keysym.h +0 -73
- data/modules/emscripten/system/include/X11/keysymdef.h +0 -2389
- data/modules/emscripten/system/include/compat/ctype.h +0 -34
- data/modules/emscripten/system/include/compat/malloc.h +0 -48
- data/modules/emscripten/system/include/compat/math.h +0 -14
- data/modules/emscripten/system/include/compat/netdb.h +0 -22
- data/modules/emscripten/system/include/compat/stdarg.h +0 -16
- data/modules/emscripten/system/include/compat/stdlib.h +0 -16
- data/modules/emscripten/system/include/compat/string.h +0 -17
- data/modules/emscripten/system/include/compat/sys/socketvar.h +0 -14
- data/modules/emscripten/system/include/compat/sys/stat.h +0 -20
- data/modules/emscripten/system/include/compat/sys/timeb.h +0 -35
- data/modules/emscripten/system/include/compat/time.h +0 -18
- data/modules/emscripten/system/include/compat/unistd.h +0 -16
- data/modules/emscripten/system/include/compat/wchar.h +0 -23
- data/modules/emscripten/system/include/compat/wctype.h +0 -23
- data/modules/emscripten/system/include/compat/xlocale.h +0 -19
- data/modules/emscripten/system/include/emscripten/bind.h +0 -1210
- data/modules/emscripten/system/include/emscripten/emmintrin.h +0 -87
- data/modules/emscripten/system/include/emscripten/emscripten.h +0 -519
- data/modules/emscripten/system/include/emscripten/val.h +0 -311
- data/modules/emscripten/system/include/emscripten/vector.h +0 -34
- data/modules/emscripten/system/include/emscripten/wire.h +0 -393
- data/modules/emscripten/system/include/emscripten/xmmintrin.h +0 -131
- data/modules/emscripten/system/include/execinfo.h +0 -44
- data/modules/emscripten/system/include/gc.h +0 -70
- data/modules/emscripten/system/include/gfx/png.h +0 -3798
- data/modules/emscripten/system/include/gfx/pngconf.h +0 -1665
- data/modules/emscripten/system/include/gfx/tiff.h +0 -654
- data/modules/emscripten/system/include/gfx/tiffconf.h +0 -104
- data/modules/emscripten/system/include/gfx/tiffio.h +0 -526
- data/modules/emscripten/system/include/gfx/tiffvers.h +0 -9
- data/modules/emscripten/system/include/jansson.h +0 -323
- data/modules/emscripten/system/include/jansson_config.h +0 -54
- data/modules/emscripten/system/include/libc/aio.h +0 -69
- data/modules/emscripten/system/include/libc/alloca.h +0 -21
- data/modules/emscripten/system/include/libc/ar.h +0 -25
- data/modules/emscripten/system/include/libc/arpa/ftp.h +0 -35
- data/modules/emscripten/system/include/libc/arpa/inet.h +0 -36
- data/modules/emscripten/system/include/libc/arpa/nameser.h +0 -467
- data/modules/emscripten/system/include/libc/arpa/nameser_compat.h +0 -2
- data/modules/emscripten/system/include/libc/arpa/telnet.h +0 -251
- data/modules/emscripten/system/include/libc/arpa/tftp.h +0 -31
- data/modules/emscripten/system/include/libc/assert.h +0 -19
- data/modules/emscripten/system/include/libc/bits/alltypes.h +0 -397
- data/modules/emscripten/system/include/libc/bits/endian.h +0 -1
- data/modules/emscripten/system/include/libc/bits/errno.h +0 -134
- data/modules/emscripten/system/include/libc/bits/fcntl.h +0 -38
- data/modules/emscripten/system/include/libc/bits/fenv.h +0 -34
- data/modules/emscripten/system/include/libc/bits/float.h +0 -17
- data/modules/emscripten/system/include/libc/bits/io.h +0 -0
- data/modules/emscripten/system/include/libc/bits/ioctl.h +0 -197
- data/modules/emscripten/system/include/libc/bits/ipc.h +0 -14
- data/modules/emscripten/system/include/libc/bits/limits.h +0 -8
- data/modules/emscripten/system/include/libc/bits/mman.h +0 -62
- data/modules/emscripten/system/include/libc/bits/msg.h +0 -16
- data/modules/emscripten/system/include/libc/bits/posix.h +0 -2
- data/modules/emscripten/system/include/libc/bits/reg.h +0 -19
- data/modules/emscripten/system/include/libc/bits/setjmp.h +0 -1
- data/modules/emscripten/system/include/libc/bits/shm.h +0 -18
- data/modules/emscripten/system/include/libc/bits/signal.h +0 -112
- data/modules/emscripten/system/include/libc/bits/socket.h +0 -17
- data/modules/emscripten/system/include/libc/bits/stat.h +0 -22
- data/modules/emscripten/system/include/libc/bits/statfs.h +0 -7
- data/modules/emscripten/system/include/libc/bits/stdarg.h +0 -4
- data/modules/emscripten/system/include/libc/bits/stdint.h +0 -20
- data/modules/emscripten/system/include/libc/bits/syscall.h +0 -696
- data/modules/emscripten/system/include/libc/bits/termios.h +0 -160
- data/modules/emscripten/system/include/libc/bits/user.h +0 -48
- data/modules/emscripten/system/include/libc/byteswap.h +0 -26
- data/modules/emscripten/system/include/libc/complex.h +0 -125
- data/modules/emscripten/system/include/libc/cpio.h +0 -29
- data/modules/emscripten/system/include/libc/crypt.h +0 -20
- data/modules/emscripten/system/include/libc/ctype.h +0 -67
- data/modules/emscripten/system/include/libc/dirent.h +0 -79
- data/modules/emscripten/system/include/libc/dlfcn.h +0 -42
- data/modules/emscripten/system/include/libc/elf.h +0 -2555
- data/modules/emscripten/system/include/libc/endian.h +0 -82
- data/modules/emscripten/system/include/libc/err.h +0 -25
- data/modules/emscripten/system/include/libc/errno.h +0 -27
- data/modules/emscripten/system/include/libc/fcntl.h +0 -175
- data/modules/emscripten/system/include/libc/features.h +0 -32
- data/modules/emscripten/system/include/libc/fenv.h +0 -28
- data/modules/emscripten/system/include/libc/float.h +0 -34
- data/modules/emscripten/system/include/libc/fnmatch.h +0 -29
- data/modules/emscripten/system/include/libc/ftw.h +0 -42
- data/modules/emscripten/system/include/libc/getopt.h +0 -31
- data/modules/emscripten/system/include/libc/glob.h +0 -48
- data/modules/emscripten/system/include/libc/grp.h +0 -52
- data/modules/emscripten/system/include/libc/iconv.h +0 -24
- data/modules/emscripten/system/include/libc/ifaddrs.h +0 -35
- data/modules/emscripten/system/include/libc/inttypes.h +0 -227
- data/modules/emscripten/system/include/libc/iso646.h +0 -20
- data/modules/emscripten/system/include/libc/langinfo.h +0 -88
- data/modules/emscripten/system/include/libc/lastlog.h +0 -1
- data/modules/emscripten/system/include/libc/libgen.h +0 -15
- data/modules/emscripten/system/include/libc/libintl.h +0 -25
- data/modules/emscripten/system/include/libc/limits.h +0 -146
- data/modules/emscripten/system/include/libc/link.h +0 -54
- data/modules/emscripten/system/include/libc/locale.h +0 -82
- data/modules/emscripten/system/include/libc/malloc.h +0 -0
- data/modules/emscripten/system/include/libc/math.h +0 -422
- data/modules/emscripten/system/include/libc/memory.h +0 -1
- data/modules/emscripten/system/include/libc/mntent.h +0 -44
- data/modules/emscripten/system/include/libc/monetary.h +0 -23
- data/modules/emscripten/system/include/libc/mqueue.h +0 -36
- data/modules/emscripten/system/include/libc/net/ethernet.h +0 -55
- data/modules/emscripten/system/include/libc/net/if.h +0 -135
- data/modules/emscripten/system/include/libc/net/if_arp.h +0 -133
- data/modules/emscripten/system/include/libc/net/route.h +0 -124
- data/modules/emscripten/system/include/libc/netdb.h +0 -161
- data/modules/emscripten/system/include/libc/netinet/ether.h +0 -14
- data/modules/emscripten/system/include/libc/netinet/icmp6.h +0 -305
- data/modules/emscripten/system/include/libc/netinet/if_ether.h +0 -126
- data/modules/emscripten/system/include/libc/netinet/in.h +0 -336
- data/modules/emscripten/system/include/libc/netinet/in_systm.h +0 -9
- data/modules/emscripten/system/include/libc/netinet/ip.h +0 -186
- data/modules/emscripten/system/include/libc/netinet/ip6.h +0 -142
- data/modules/emscripten/system/include/libc/netinet/ip_icmp.h +0 -192
- data/modules/emscripten/system/include/libc/netinet/tcp.h +0 -71
- data/modules/emscripten/system/include/libc/netinet/udp.h +0 -35
- data/modules/emscripten/system/include/libc/netpacket/packet.h +0 -44
- data/modules/emscripten/system/include/libc/nl_types.h +0 -22
- data/modules/emscripten/system/include/libc/paths.h +0 -32
- data/modules/emscripten/system/include/libc/poll.h +0 -46
- data/modules/emscripten/system/include/libc/pthread.h +0 -222
- data/modules/emscripten/system/include/libc/pty.h +0 -18
- data/modules/emscripten/system/include/libc/pwd.h +0 -49
- data/modules/emscripten/system/include/libc/readme.txt +0 -3
- data/modules/emscripten/system/include/libc/regex.h +0 -62
- data/modules/emscripten/system/include/libc/resolv.h +0 -144
- data/modules/emscripten/system/include/libc/sched.h +0 -132
- data/modules/emscripten/system/include/libc/search.h +0 -51
- data/modules/emscripten/system/include/libc/semaphore.h +0 -35
- data/modules/emscripten/system/include/libc/setjmp.h +0 -42
- data/modules/emscripten/system/include/libc/shadow.h +0 -44
- data/modules/emscripten/system/include/libc/signal.h +0 -255
- data/modules/emscripten/system/include/libc/spawn.h +0 -74
- data/modules/emscripten/system/include/libc/stdalign.h +0 -15
- data/modules/emscripten/system/include/libc/stdarg.h +0 -25
- data/modules/emscripten/system/include/libc/stdbool.h +0 -14
- data/modules/emscripten/system/include/libc/stddef.h +0 -18
- data/modules/emscripten/system/include/libc/stdint.h +0 -117
- data/modules/emscripten/system/include/libc/stdio.h +0 -199
- data/modules/emscripten/system/include/libc/stdio_ext.h +0 -34
- data/modules/emscripten/system/include/libc/stdlib.h +0 -171
- data/modules/emscripten/system/include/libc/stdnoreturn.h +0 -5
- data/modules/emscripten/system/include/libc/string.h +0 -102
- data/modules/emscripten/system/include/libc/strings.h +0 -35
- data/modules/emscripten/system/include/libc/stropts.h +0 -139
- data/modules/emscripten/system/include/libc/sys/acct.h +0 -75
- data/modules/emscripten/system/include/libc/sys/cachectl.h +0 -22
- data/modules/emscripten/system/include/libc/sys/dir.h +0 -2
- data/modules/emscripten/system/include/libc/sys/epoll.h +0 -67
- data/modules/emscripten/system/include/libc/sys/errno.h +0 -2
- data/modules/emscripten/system/include/libc/sys/eventfd.h +0 -26
- data/modules/emscripten/system/include/libc/sys/fcntl.h +0 -2
- data/modules/emscripten/system/include/libc/sys/file.h +0 -21
- data/modules/emscripten/system/include/libc/sys/fsuid.h +0 -20
- data/modules/emscripten/system/include/libc/sys/inotify.h +0 -57
- data/modules/emscripten/system/include/libc/sys/io.h +0 -17
- data/modules/emscripten/system/include/libc/sys/ioctl.h +0 -14
- data/modules/emscripten/system/include/libc/sys/ipc.h +0 -42
- data/modules/emscripten/system/include/libc/sys/klog.h +0 -14
- data/modules/emscripten/system/include/libc/sys/mman.h +0 -55
- data/modules/emscripten/system/include/libc/sys/mount.h +0 -72
- data/modules/emscripten/system/include/libc/sys/msg.h +0 -52
- data/modules/emscripten/system/include/libc/sys/mtio.h +0 -188
- data/modules/emscripten/system/include/libc/sys/param.h +0 -35
- data/modules/emscripten/system/include/libc/sys/personality.h +0 -46
- data/modules/emscripten/system/include/libc/sys/poll.h +0 -2
- data/modules/emscripten/system/include/libc/sys/prctl.h +0 -101
- data/modules/emscripten/system/include/libc/sys/procfs.h +0 -65
- data/modules/emscripten/system/include/libc/sys/ptrace.h +0 -96
- data/modules/emscripten/system/include/libc/sys/reboot.h +0 -20
- data/modules/emscripten/system/include/libc/sys/reg.h +0 -9
- data/modules/emscripten/system/include/libc/sys/resource.h +0 -103
- data/modules/emscripten/system/include/libc/sys/select.h +0 -42
- data/modules/emscripten/system/include/libc/sys/sem.h +0 -82
- data/modules/emscripten/system/include/libc/sys/sendfile.h +0 -22
- data/modules/emscripten/system/include/libc/sys/shm.h +0 -61
- data/modules/emscripten/system/include/libc/sys/signal.h +0 -2
- data/modules/emscripten/system/include/libc/sys/signalfd.h +0 -44
- data/modules/emscripten/system/include/libc/sys/socket.h +0 -299
- data/modules/emscripten/system/include/libc/sys/stat.h +0 -114
- data/modules/emscripten/system/include/libc/sys/statfs.h +0 -32
- data/modules/emscripten/system/include/libc/sys/statvfs.h +0 -57
- data/modules/emscripten/system/include/libc/sys/stropts.h +0 -1
- data/modules/emscripten/system/include/libc/sys/swap.h +0 -21
- data/modules/emscripten/system/include/libc/sys/syscall.h +0 -6
- data/modules/emscripten/system/include/libc/sys/sysctl.h +0 -17
- data/modules/emscripten/system/include/libc/sys/sysinfo.h +0 -36
- data/modules/emscripten/system/include/libc/sys/syslog.h +0 -1
- data/modules/emscripten/system/include/libc/sys/sysmacros.h +0 -15
- data/modules/emscripten/system/include/libc/sys/termios.h +0 -2
- data/modules/emscripten/system/include/libc/sys/time.h +0 -57
- data/modules/emscripten/system/include/libc/sys/timerfd.h +0 -24
- data/modules/emscripten/system/include/libc/sys/times.h +0 -26
- data/modules/emscripten/system/include/libc/sys/timex.h +0 -98
- data/modules/emscripten/system/include/libc/sys/ttydefaults.h +0 -39
- data/modules/emscripten/system/include/libc/sys/types.h +0 -91
- data/modules/emscripten/system/include/libc/sys/ucontext.h +0 -1
- data/modules/emscripten/system/include/libc/sys/uio.h +0 -48
- data/modules/emscripten/system/include/libc/sys/un.h +0 -32
- data/modules/emscripten/system/include/libc/sys/user.h +0 -16
- data/modules/emscripten/system/include/libc/sys/utsname.h +0 -30
- data/modules/emscripten/system/include/libc/sys/vfs.h +0 -1
- data/modules/emscripten/system/include/libc/sys/wait.h +0 -55
- data/modules/emscripten/system/include/libc/sys/xattr.h +0 -30
- data/modules/emscripten/system/include/libc/syscall.h +0 -1
- data/modules/emscripten/system/include/libc/sysexits.h +0 -21
- data/modules/emscripten/system/include/libc/syslog.h +0 -104
- data/modules/emscripten/system/include/libc/tar.h +0 -33
- data/modules/emscripten/system/include/libc/termios.h +0 -46
- data/modules/emscripten/system/include/libc/tgmath.h +0 -270
- data/modules/emscripten/system/include/libc/time.h +0 -132
- data/modules/emscripten/system/include/libc/ucontext.h +0 -25
- data/modules/emscripten/system/include/libc/ulimit.h +0 -17
- data/modules/emscripten/system/include/libc/unistd.h +0 -519
- data/modules/emscripten/system/include/libc/utime.h +0 -24
- data/modules/emscripten/system/include/libc/utmp.h +0 -47
- data/modules/emscripten/system/include/libc/utmpx.h +0 -58
- data/modules/emscripten/system/include/libc/values.h +0 -39
- data/modules/emscripten/system/include/libc/wchar.h +0 -183
- data/modules/emscripten/system/include/libc/wctype.h +0 -77
- data/modules/emscripten/system/include/libc/wordexp.h +0 -42
- data/modules/emscripten/system/include/libcxx/CREDITS.TXT +0 -123
- data/modules/emscripten/system/include/libcxx/LICENSE.txt +0 -76
- data/modules/emscripten/system/include/libcxx/__bit_reference +0 -1287
- data/modules/emscripten/system/include/libcxx/__config +0 -610
- data/modules/emscripten/system/include/libcxx/__debug +0 -218
- data/modules/emscripten/system/include/libcxx/__functional_03 +0 -2130
- data/modules/emscripten/system/include/libcxx/__functional_base +0 -615
- data/modules/emscripten/system/include/libcxx/__functional_base_03 +0 -1087
- data/modules/emscripten/system/include/libcxx/__hash_table +0 -2457
- data/modules/emscripten/system/include/libcxx/__locale +0 -1445
- data/modules/emscripten/system/include/libcxx/__mutex_base +0 -407
- data/modules/emscripten/system/include/libcxx/__split_buffer +0 -654
- data/modules/emscripten/system/include/libcxx/__sso_allocator +0 -77
- data/modules/emscripten/system/include/libcxx/__std_stream +0 -359
- data/modules/emscripten/system/include/libcxx/__tree +0 -2309
- data/modules/emscripten/system/include/libcxx/__tuple +0 -305
- data/modules/emscripten/system/include/libcxx/__tuple_03 +0 -27
- data/modules/emscripten/system/include/libcxx/__undef_min_max +0 -27
- data/modules/emscripten/system/include/libcxx/algorithm +0 -5679
- data/modules/emscripten/system/include/libcxx/array +0 -342
- data/modules/emscripten/system/include/libcxx/atomic +0 -1531
- data/modules/emscripten/system/include/libcxx/bitset +0 -1081
- data/modules/emscripten/system/include/libcxx/cassert +0 -25
- data/modules/emscripten/system/include/libcxx/ccomplex +0 -29
- data/modules/emscripten/system/include/libcxx/cctype +0 -164
- data/modules/emscripten/system/include/libcxx/cerrno +0 -393
- data/modules/emscripten/system/include/libcxx/cfenv +0 -82
- data/modules/emscripten/system/include/libcxx/cfloat +0 -78
- data/modules/emscripten/system/include/libcxx/chrono +0 -1027
- data/modules/emscripten/system/include/libcxx/cinttypes +0 -259
- data/modules/emscripten/system/include/libcxx/ciso646 +0 -25
- data/modules/emscripten/system/include/libcxx/climits +0 -48
- data/modules/emscripten/system/include/libcxx/clocale +0 -53
- data/modules/emscripten/system/include/libcxx/cmath +0 -1690
- data/modules/emscripten/system/include/libcxx/codecvt +0 -550
- data/modules/emscripten/system/include/libcxx/complex +0 -1567
- data/modules/emscripten/system/include/libcxx/complex.h +0 -35
- data/modules/emscripten/system/include/libcxx/condition_variable +0 -256
- data/modules/emscripten/system/include/libcxx/csetjmp +0 -52
- data/modules/emscripten/system/include/libcxx/csignal +0 -58
- data/modules/emscripten/system/include/libcxx/cstdarg +0 -48
- data/modules/emscripten/system/include/libcxx/cstdbool +0 -32
- data/modules/emscripten/system/include/libcxx/cstddef +0 -103
- data/modules/emscripten/system/include/libcxx/cstdint +0 -191
- data/modules/emscripten/system/include/libcxx/cstdio +0 -182
- data/modules/emscripten/system/include/libcxx/cstdlib +0 -172
- data/modules/emscripten/system/include/libcxx/cstring +0 -112
- data/modules/emscripten/system/include/libcxx/ctgmath +0 -29
- data/modules/emscripten/system/include/libcxx/ctime +0 -72
- data/modules/emscripten/system/include/libcxx/cwchar +0 -217
- data/modules/emscripten/system/include/libcxx/cwctype +0 -213
- data/modules/emscripten/system/include/libcxx/deque +0 -2873
- data/modules/emscripten/system/include/libcxx/dynarray +0 -311
- data/modules/emscripten/system/include/libcxx/exception +0 -250
- data/modules/emscripten/system/include/libcxx/ext/__hash +0 -46
- data/modules/emscripten/system/include/libcxx/ext/hash_map +0 -1007
- data/modules/emscripten/system/include/libcxx/ext/hash_set +0 -661
- data/modules/emscripten/system/include/libcxx/forward_list +0 -1663
- data/modules/emscripten/system/include/libcxx/fstream +0 -1431
- data/modules/emscripten/system/include/libcxx/functional +0 -2418
- data/modules/emscripten/system/include/libcxx/future +0 -2615
- data/modules/emscripten/system/include/libcxx/initializer_list +0 -118
- data/modules/emscripten/system/include/libcxx/iomanip +0 -651
- data/modules/emscripten/system/include/libcxx/ios +0 -1023
- data/modules/emscripten/system/include/libcxx/iosfwd +0 -194
- data/modules/emscripten/system/include/libcxx/iostream +0 -60
- data/modules/emscripten/system/include/libcxx/istream +0 -1716
- data/modules/emscripten/system/include/libcxx/iterator +0 -1568
- data/modules/emscripten/system/include/libcxx/limits +0 -813
- data/modules/emscripten/system/include/libcxx/list +0 -2355
- data/modules/emscripten/system/include/libcxx/locale +0 -4465
- data/modules/emscripten/system/include/libcxx/map +0 -2045
- data/modules/emscripten/system/include/libcxx/memory +0 -5448
- data/modules/emscripten/system/include/libcxx/mutex +0 -566
- data/modules/emscripten/system/include/libcxx/new +0 -146
- data/modules/emscripten/system/include/libcxx/numeric +0 -197
- data/modules/emscripten/system/include/libcxx/optional +0 -697
- data/modules/emscripten/system/include/libcxx/ostream +0 -1295
- data/modules/emscripten/system/include/libcxx/queue +0 -717
- data/modules/emscripten/system/include/libcxx/random +0 -6725
- data/modules/emscripten/system/include/libcxx/ratio +0 -487
- data/modules/emscripten/system/include/libcxx/readme.txt +0 -1
- data/modules/emscripten/system/include/libcxx/regex +0 -6487
- data/modules/emscripten/system/include/libcxx/scoped_allocator +0 -578
- data/modules/emscripten/system/include/libcxx/set +0 -1189
- data/modules/emscripten/system/include/libcxx/shared_mutex +0 -419
- data/modules/emscripten/system/include/libcxx/sstream +0 -972
- data/modules/emscripten/system/include/libcxx/stack +0 -292
- data/modules/emscripten/system/include/libcxx/stdexcept +0 -162
- data/modules/emscripten/system/include/libcxx/streambuf +0 -564
- data/modules/emscripten/system/include/libcxx/string +0 -4198
- data/modules/emscripten/system/include/libcxx/strstream +0 -400
- data/modules/emscripten/system/include/libcxx/support/ibm/limits.h +0 -99
- data/modules/emscripten/system/include/libcxx/support/ibm/support.h +0 -54
- data/modules/emscripten/system/include/libcxx/support/ibm/xlocale.h +0 -326
- data/modules/emscripten/system/include/libcxx/support/solaris/floatingpoint.h +0 -5
- data/modules/emscripten/system/include/libcxx/support/solaris/wchar.h +0 -38
- data/modules/emscripten/system/include/libcxx/support/solaris/xlocale.h +0 -146
- data/modules/emscripten/system/include/libcxx/support/win32/limits_win32.h +0 -79
- data/modules/emscripten/system/include/libcxx/support/win32/locale_win32.h +0 -129
- data/modules/emscripten/system/include/libcxx/support/win32/math_win32.h +0 -115
- data/modules/emscripten/system/include/libcxx/support/win32/support.h +0 -119
- data/modules/emscripten/system/include/libcxx/system_error +0 -642
- data/modules/emscripten/system/include/libcxx/tgmath.h +0 -29
- data/modules/emscripten/system/include/libcxx/thread +0 -458
- data/modules/emscripten/system/include/libcxx/tuple +0 -1102
- data/modules/emscripten/system/include/libcxx/type_traits +0 -3292
- data/modules/emscripten/system/include/libcxx/typeindex +0 -103
- data/modules/emscripten/system/include/libcxx/typeinfo +0 -124
- data/modules/emscripten/system/include/libcxx/unordered_map +0 -2078
- data/modules/emscripten/system/include/libcxx/unordered_set +0 -1379
- data/modules/emscripten/system/include/libcxx/utility +0 -768
- data/modules/emscripten/system/include/libcxx/valarray +0 -4779
- data/modules/emscripten/system/include/libcxx/vector +0 -3246
- data/modules/emscripten/system/include/unwind.h +0 -154
- data/modules/emscripten/system/include/uuid/uuid.h +0 -35
- data/modules/emscripten/system/include/zconf.h +0 -428
- data/modules/emscripten/system/include/zlib.h +0 -1613
- data/modules/emscripten/system/lib/compiler-rt/LICENSE.TXT +0 -97
- data/modules/emscripten/system/lib/compiler-rt/divdi3.c +0 -47
- data/modules/emscripten/system/lib/compiler-rt/int_endianness.h +0 -116
- data/modules/emscripten/system/lib/compiler-rt/int_lib.h +0 -46
- data/modules/emscripten/system/lib/compiler-rt/int_math.h +0 -67
- data/modules/emscripten/system/lib/compiler-rt/int_types.h +0 -140
- data/modules/emscripten/system/lib/compiler-rt/int_util.h +0 -29
- data/modules/emscripten/system/lib/compiler-rt/muldi3.c +0 -56
- data/modules/emscripten/system/lib/compiler-rt/readme.txt +0 -20
- data/modules/emscripten/system/lib/compiler-rt/udivdi3.c +0 -36
- data/modules/emscripten/system/lib/compiler-rt/udivmoddi4.c +0 -251
- data/modules/emscripten/system/lib/debugging.cpp +0 -24
- data/modules/emscripten/system/lib/dlmalloc.c +0 -6297
- data/modules/emscripten/system/lib/embind/bind.cpp +0 -63
- data/modules/emscripten/system/lib/libc/gen/err.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/errx.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/verr.c +0 -58
- data/modules/emscripten/system/lib/libc/gen/verrx.c +0 -51
- data/modules/emscripten/system/lib/libc/gen/vwarn.c +0 -55
- data/modules/emscripten/system/lib/libc/gen/vwarnx.c +0 -48
- data/modules/emscripten/system/lib/libc/gen/warn.c +0 -49
- data/modules/emscripten/system/lib/libc/gen/warnx.c +0 -49
- data/modules/emscripten/system/lib/libc/musl/COPYRIGHT +0 -92
- data/modules/emscripten/system/lib/libc/musl/readme.txt +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/ctype/alpha.h +0 -125
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalnum.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswalpha.c +0 -14
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswblank.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswcntrl.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswctype.c +0 -63
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswdigit.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswgraph.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswlower.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswprint.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswpunct.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswspace.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswupper.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/ctype/iswxdigit.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/ctype/nonspacing.h +0 -62
- data/modules/emscripten/system/lib/libc/musl/src/ctype/punct.h +0 -109
- data/modules/emscripten/system/lib/libc/musl/src/ctype/towctrans.c +0 -268
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wcswidth.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wctrans.c +0 -16
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wcwidth.c +0 -29
- data/modules/emscripten/system/lib/libc/musl/src/ctype/wide.h +0 -42
- data/modules/emscripten/system/lib/libc/musl/src/internal/libc.c +0 -22
- data/modules/emscripten/system/lib/libc/musl/src/internal/libc.h +0 -71
- data/modules/emscripten/system/lib/libc/musl/src/internal/locale_impl.h +0 -5
- data/modules/emscripten/system/lib/libc/musl/src/internal/stdio_impl.h +0 -92
- data/modules/emscripten/system/lib/libc/musl/src/locale/big5.h +0 -1085
- data/modules/emscripten/system/lib/libc/musl/src/locale/codepages.h +0 -238
- data/modules/emscripten/system/lib/libc/musl/src/locale/gb18030.h +0 -1836
- data/modules/emscripten/system/lib/libc/musl/src/locale/hkscs.h +0 -390
- data/modules/emscripten/system/lib/libc/musl/src/locale/iconv.c +0 -454
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswalnum_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswalpha_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswblank_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswcntrl_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswctype_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswdigit_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswgraph_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswlower_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswprint_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswpunct_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswspace_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswupper_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/iswxdigit_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/jis0208.h +0 -550
- data/modules/emscripten/system/lib/libc/musl/src/locale/ksc.h +0 -640
- data/modules/emscripten/system/lib/libc/musl/src/locale/legacychars.h +0 -39
- data/modules/emscripten/system/lib/libc/musl/src/locale/strfmon.c +0 -101
- data/modules/emscripten/system/lib/libc/musl/src/locale/strxfrm.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/locale/towctrans_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/towlower_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/towupper_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcscoll.c +0 -16
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcscoll_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcsxfrm.c +0 -21
- data/modules/emscripten/system/lib/libc/musl/src/locale/wcsxfrm_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wctrans_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/locale/wctype_l.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/btowc.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.c +0 -38
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/internal.h +0 -22
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mblen.c +0 -17
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrlen.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbrtowc.c +0 -57
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsinit.c +0 -17
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsnrtowcs.c +0 -65
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbsrtowcs.c +0 -100
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbstowcs.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/mbtowc.c +0 -53
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcrtomb.c +0 -38
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsnrtombs.c +0 -52
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcsrtombs.c +0 -58
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wcstombs.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctob.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/multibyte/wctomb.c +0 -18
- data/modules/emscripten/system/lib/libc/musl/src/regex/regcomp.c +0 -3352
- data/modules/emscripten/system/lib/libc/musl/src/regex/regerror.c +0 -35
- data/modules/emscripten/system/lib/libc/musl/src/regex/regexec.c +0 -1011
- data/modules/emscripten/system/lib/libc/musl/src/regex/tre-mem.c +0 -158
- data/modules/emscripten/system/lib/libc/musl/src/regex/tre.h +0 -231
- data/modules/emscripten/system/lib/libc/musl/src/stdio/fwprintf.c +0 -13
- data/modules/emscripten/system/lib/libc/musl/src/stdio/swprintf.c +0 -14
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vfwprintf.c +0 -361
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vswprintf.c +0 -53
- data/modules/emscripten/system/lib/libc/musl/src/stdio/vwprintf.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/stdio/wprintf.c +0 -13
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/ecvt.c +0 -19
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/fcvt.c +0 -25
- data/modules/emscripten/system/lib/libc/musl/src/stdlib/gcvt.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcpcpy.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcpncpy.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscasecmp_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscat.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcschr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscpy.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcscspn.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsdup.c +0 -11
- data/modules/emscripten/system/lib/libc/musl/src/string/wcslen.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncasecmp_l.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncat.c +0 -10
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncmp.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsncpy.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsnlen.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcspbrk.c +0 -7
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsrchr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsspn.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wcsstr.c +0 -108
- data/modules/emscripten/system/lib/libc/musl/src/string/wcstok.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/string/wcswcs.c +0 -6
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemchr.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemcmp.c +0 -8
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemcpy.c +0 -9
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemmove.c +0 -12
- data/modules/emscripten/system/lib/libc/musl/src/string/wmemset.c +0 -9
- data/modules/emscripten/system/lib/libc/stdlib/getopt_long.c +0 -511
- data/modules/emscripten/system/lib/libc/stdlib/strtod.c +0 -305
- data/modules/emscripten/system/lib/libc.symbols +0 -81
- data/modules/emscripten/system/lib/libcextra.symbols +0 -115
- data/modules/emscripten/system/lib/libcxx/CREDITS.TXT +0 -123
- data/modules/emscripten/system/lib/libcxx/LICENSE.txt +0 -76
- data/modules/emscripten/system/lib/libcxx/algorithm.cpp +0 -84
- data/modules/emscripten/system/lib/libcxx/bind.cpp +0 -30
- data/modules/emscripten/system/lib/libcxx/chrono.cpp +0 -132
- data/modules/emscripten/system/lib/libcxx/condition_variable.cpp +0 -81
- data/modules/emscripten/system/lib/libcxx/debug.cpp +0 -530
- data/modules/emscripten/system/lib/libcxx/exception.cpp +0 -307
- data/modules/emscripten/system/lib/libcxx/future.cpp +0 -291
- data/modules/emscripten/system/lib/libcxx/hash.cpp +0 -570
- data/modules/emscripten/system/lib/libcxx/ios.cpp +0 -460
- data/modules/emscripten/system/lib/libcxx/iostream.cpp +0 -68
- data/modules/emscripten/system/lib/libcxx/locale.cpp +0 -6169
- data/modules/emscripten/system/lib/libcxx/memory.cpp +0 -223
- data/modules/emscripten/system/lib/libcxx/mutex.cpp +0 -253
- data/modules/emscripten/system/lib/libcxx/new.cpp +0 -239
- data/modules/emscripten/system/lib/libcxx/optional.cpp +0 -25
- data/modules/emscripten/system/lib/libcxx/random.cpp +0 -74
- data/modules/emscripten/system/lib/libcxx/readme.txt +0 -1
- data/modules/emscripten/system/lib/libcxx/regex.cpp +0 -325
- data/modules/emscripten/system/lib/libcxx/shared_mutex.cpp +0 -101
- data/modules/emscripten/system/lib/libcxx/stdexcept.cpp +0 -200
- data/modules/emscripten/system/lib/libcxx/string.cpp +0 -530
- data/modules/emscripten/system/lib/libcxx/strstream.cpp +0 -329
- data/modules/emscripten/system/lib/libcxx/support/solaris/README +0 -4
- data/modules/emscripten/system/lib/libcxx/support/solaris/mbsnrtowcs.inc +0 -76
- data/modules/emscripten/system/lib/libcxx/support/solaris/wcsnrtombs.inc +0 -93
- data/modules/emscripten/system/lib/libcxx/support/solaris/xlocale.c +0 -245
- data/modules/emscripten/system/lib/libcxx/support/win32/locale_win32.cpp +0 -95
- data/modules/emscripten/system/lib/libcxx/support/win32/support.cpp +0 -166
- data/modules/emscripten/system/lib/libcxx/symbols +0 -2699
- data/modules/emscripten/system/lib/libcxx/system_error.cpp +0 -205
- data/modules/emscripten/system/lib/libcxx/thread.cpp +0 -225
- data/modules/emscripten/system/lib/libcxx/typeinfo.cpp +0 -73
- data/modules/emscripten/system/lib/libcxx/utility.cpp +0 -17
- data/modules/emscripten/system/lib/libcxx/valarray.cpp +0 -56
- data/modules/emscripten/system/lib/libcxxabi/CREDITS.TXT +0 -38
- data/modules/emscripten/system/lib/libcxxabi/LICENSE.TXT +0 -76
- data/modules/emscripten/system/lib/libcxxabi/include/cxa_demangle.h +0 -167
- data/modules/emscripten/system/lib/libcxxabi/include/cxxabi.h +0 -175
- data/modules/emscripten/system/lib/libcxxabi/lib/buildit +0 -99
- data/modules/emscripten/system/lib/libcxxabi/readme.txt +0 -1
- data/modules/emscripten/system/lib/libcxxabi/src/abort_message.cpp +0 -50
- data/modules/emscripten/system/lib/libcxxabi/src/abort_message.h +0 -33
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_aux_runtime.cpp +0 -34
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_demangle.cpp +0 -11036
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.cpp +0 -622
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception.hpp +0 -123
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_exception_storage.cpp +0 -91
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_guard.cpp +0 -231
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.cpp +0 -125
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_handlers.hpp +0 -54
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_new_delete.cpp +0 -242
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_personality.cpp +0 -1055
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_unexpected.cpp +0 -27
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_vector.cpp +0 -367
- data/modules/emscripten/system/lib/libcxxabi/src/cxa_virtual.cpp +0 -31
- data/modules/emscripten/system/lib/libcxxabi/src/exception.cpp +0 -41
- data/modules/emscripten/system/lib/libcxxabi/src/fallback_malloc.ipp +0 -174
- data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.cpp +0 -1146
- data/modules/emscripten/system/lib/libcxxabi/src/private_typeinfo.h +0 -248
- data/modules/emscripten/system/lib/libcxxabi/src/stdexcept.cpp +0 -169
- data/modules/emscripten/system/lib/libcxxabi/src/typeinfo.cpp +0 -53
- data/modules/emscripten/system/lib/libcxxabi/symbols +0 -236
- data/modules/emscripten/system/lib/sdl.cpp +0 -13
- data/modules/emscripten/system/lib/sdl.symbols +0 -1
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/CppHeaderParser.py +0 -2347
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/__init__.py +0 -4
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/doc/CppHeaderParser.html +0 -657
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/SampleClass.h +0 -147
- data/modules/emscripten/third_party/CppHeaderParser/CppHeaderParser/examples/readSampleClass.py +0 -74
- data/modules/emscripten/third_party/CppHeaderParser/PKG-INFO +0 -249
- data/modules/emscripten/third_party/CppHeaderParser/README.html +0 -544
- data/modules/emscripten/third_party/CppHeaderParser/README.txt +0 -226
- data/modules/emscripten/third_party/CppHeaderParser/setup.py +0 -43
- data/modules/emscripten/third_party/ansidecl.h +0 -371
- data/modules/emscripten/third_party/closure-compiler/COPYING +0 -202
- data/modules/emscripten/third_party/closure-compiler/README +0 -292
- data/modules/emscripten/third_party/closure-compiler/compiler.jar +0 -0
- data/modules/emscripten/third_party/closure-compiler/readme.txt +0 -3
- data/modules/emscripten/third_party/cp-demangle.h +0 -161
- data/modules/emscripten/third_party/demangle.h +0 -549
- data/modules/emscripten/third_party/demangler.py +0 -49
- data/modules/emscripten/third_party/gcc_demangler.c +0 -4226
- data/modules/emscripten/third_party/gcc_demangler.js +0 -21282
- data/modules/emscripten/third_party/jni/emjvm.cpp +0 -133
- data/modules/emscripten/third_party/jni/emjvm.h +0 -8
- data/modules/emscripten/third_party/jni/emjvm.js +0 -185
- data/modules/emscripten/third_party/jni/jni.h +0 -1154
- data/modules/emscripten/third_party/libiberty.h +0 -634
- data/modules/emscripten/third_party/lzma.js/README.markdown +0 -37
- data/modules/emscripten/third_party/lzma.js/doit.bat +0 -4
- data/modules/emscripten/third_party/lzma.js/doit.sh +0 -44
- data/modules/emscripten/third_party/lzma.js/lzip/AUTHORS +0 -7
- data/modules/emscripten/third_party/lzma.js/lzip/COPYING +0 -676
- data/modules/emscripten/third_party/lzma.js/lzip/ChangeLog +0 -201
- data/modules/emscripten/third_party/lzma.js/lzip/INSTALL +0 -56
- data/modules/emscripten/third_party/lzma.js/lzip/Makefile +0 -160
- data/modules/emscripten/third_party/lzma.js/lzip/Makefile.in +0 -138
- data/modules/emscripten/third_party/lzma.js/lzip/NEWS +0 -22
- data/modules/emscripten/third_party/lzma.js/lzip/README +0 -77
- data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.cc +0 -204
- data/modules/emscripten/third_party/lzma.js/lzip/arg_parser.h +0 -106
- data/modules/emscripten/third_party/lzma.js/lzip/configure +0 -192
- data/modules/emscripten/third_party/lzma.js/lzip/decoder.cc +0 -252
- data/modules/emscripten/third_party/lzma.js/lzip/decoder.h +0 -268
- data/modules/emscripten/third_party/lzma.js/lzip/encoder.cc +0 -643
- data/modules/emscripten/third_party/lzma.js/lzip/encoder.h +0 -582
- data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.cc +0 -378
- data/modules/emscripten/third_party/lzma.js/lzip/fast_encoder.h +0 -171
- data/modules/emscripten/third_party/lzma.js/lzip/lzip.h +0 -264
- data/modules/emscripten/third_party/lzma.js/lzip/main.cc +0 -545
- data/modules/emscripten/third_party/lzma.js/lzma-decoder.js +0 -27
- data/modules/emscripten/third_party/lzma.js/lzma-full.js +0 -27
- data/modules/emscripten/third_party/lzma.js/native_test.sh +0 -5
- data/modules/emscripten/third_party/lzma.js/post.js +0 -13
- data/modules/emscripten/third_party/lzma.js/pre.js +0 -13
- data/modules/emscripten/third_party/lzma.js/test-decoder.js +0 -39
- data/modules/emscripten/third_party/lzma.js/test-full.html +0 -9
- data/modules/emscripten/third_party/lzma.js/test-full.js +0 -78
- data/modules/emscripten/third_party/ply/ANNOUNCE +0 -40
- data/modules/emscripten/third_party/ply/CHANGES +0 -1093
- data/modules/emscripten/third_party/ply/PKG-INFO +0 -22
- data/modules/emscripten/third_party/ply/README +0 -271
- data/modules/emscripten/third_party/ply/TODO +0 -16
- data/modules/emscripten/third_party/ply/doc/internal.html +0 -874
- data/modules/emscripten/third_party/ply/doc/makedoc.py +0 -194
- data/modules/emscripten/third_party/ply/doc/ply.html +0 -3262
- data/modules/emscripten/third_party/ply/example/BASIC/README +0 -79
- data/modules/emscripten/third_party/ply/example/BASIC/basic.py +0 -71
- data/modules/emscripten/third_party/ply/example/BASIC/basiclex.py +0 -74
- data/modules/emscripten/third_party/ply/example/BASIC/basiclog.py +0 -79
- data/modules/emscripten/third_party/ply/example/BASIC/basinterp.py +0 -441
- data/modules/emscripten/third_party/ply/example/BASIC/basparse.py +0 -424
- data/modules/emscripten/third_party/ply/example/BASIC/dim.bas +0 -14
- data/modules/emscripten/third_party/ply/example/BASIC/func.bas +0 -5
- data/modules/emscripten/third_party/ply/example/BASIC/gcd.bas +0 -22
- data/modules/emscripten/third_party/ply/example/BASIC/gosub.bas +0 -13
- data/modules/emscripten/third_party/ply/example/BASIC/hello.bas +0 -4
- data/modules/emscripten/third_party/ply/example/BASIC/linear.bas +0 -17
- data/modules/emscripten/third_party/ply/example/BASIC/maxsin.bas +0 -12
- data/modules/emscripten/third_party/ply/example/BASIC/powers.bas +0 -13
- data/modules/emscripten/third_party/ply/example/BASIC/rand.bas +0 -4
- data/modules/emscripten/third_party/ply/example/BASIC/sales.bas +0 -20
- data/modules/emscripten/third_party/ply/example/BASIC/sears.bas +0 -18
- data/modules/emscripten/third_party/ply/example/BASIC/sqrt1.bas +0 -5
- data/modules/emscripten/third_party/ply/example/BASIC/sqrt2.bas +0 -4
- data/modules/emscripten/third_party/ply/example/GardenSnake/GardenSnake.py +0 -709
- data/modules/emscripten/third_party/ply/example/GardenSnake/README +0 -5
- data/modules/emscripten/third_party/ply/example/README +0 -10
- data/modules/emscripten/third_party/ply/example/ansic/README +0 -2
- data/modules/emscripten/third_party/ply/example/ansic/clex.py +0 -164
- data/modules/emscripten/third_party/ply/example/ansic/cparse.py +0 -863
- data/modules/emscripten/third_party/ply/example/calc/calc.py +0 -107
- data/modules/emscripten/third_party/ply/example/calcdebug/calc.py +0 -113
- data/modules/emscripten/third_party/ply/example/classcalc/calc.py +0 -157
- data/modules/emscripten/third_party/ply/example/cleanup.sh +0 -2
- data/modules/emscripten/third_party/ply/example/closurecalc/calc.py +0 -130
- data/modules/emscripten/third_party/ply/example/hedit/hedit.py +0 -48
- data/modules/emscripten/third_party/ply/example/newclasscalc/calc.py +0 -160
- data/modules/emscripten/third_party/ply/example/optcalc/README +0 -9
- data/modules/emscripten/third_party/ply/example/optcalc/calc.py +0 -119
- data/modules/emscripten/third_party/ply/example/unicalc/calc.py +0 -117
- data/modules/emscripten/third_party/ply/example/yply/README +0 -41
- data/modules/emscripten/third_party/ply/example/yply/ylex.py +0 -112
- data/modules/emscripten/third_party/ply/example/yply/yparse.py +0 -217
- data/modules/emscripten/third_party/ply/example/yply/yply.py +0 -53
- data/modules/emscripten/third_party/ply/ply/__init__.py +0 -4
- data/modules/emscripten/third_party/ply/ply/cpp.py +0 -898
- data/modules/emscripten/third_party/ply/ply/ctokens.py +0 -133
- data/modules/emscripten/third_party/ply/ply/lex.py +0 -1058
- data/modules/emscripten/third_party/ply/ply/yacc.py +0 -3276
- data/modules/emscripten/third_party/ply/setup.py +0 -31
- data/modules/emscripten/third_party/ply/test/README +0 -7
- data/modules/emscripten/third_party/ply/test/calclex.py +0 -49
- data/modules/emscripten/third_party/ply/test/cleanup.sh +0 -4
- data/modules/emscripten/third_party/ply/test/lex_closure.py +0 -54
- data/modules/emscripten/third_party/ply/test/lex_doc1.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_dup1.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_dup2.py +0 -33
- data/modules/emscripten/third_party/ply/test/lex_dup3.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_empty.py +0 -20
- data/modules/emscripten/third_party/ply/test/lex_error1.py +0 -24
- data/modules/emscripten/third_party/ply/test/lex_error2.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_error3.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_error4.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_hedit.py +0 -47
- data/modules/emscripten/third_party/ply/test/lex_ignore.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_ignore2.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_literal1.py +0 -25
- data/modules/emscripten/third_party/ply/test/lex_literal2.py +0 -25
- data/modules/emscripten/third_party/ply/test/lex_many_tokens.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_module.py +0 -10
- data/modules/emscripten/third_party/ply/test/lex_module_import.py +0 -42
- data/modules/emscripten/third_party/ply/test/lex_object.py +0 -55
- data/modules/emscripten/third_party/ply/test/lex_opt_alias.py +0 -54
- data/modules/emscripten/third_party/ply/test/lex_optimize.py +0 -50
- data/modules/emscripten/third_party/ply/test/lex_optimize2.py +0 -50
- data/modules/emscripten/third_party/ply/test/lex_optimize3.py +0 -52
- data/modules/emscripten/third_party/ply/test/lex_re1.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_re2.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_re3.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_rule1.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_rule2.py +0 -29
- data/modules/emscripten/third_party/ply/test/lex_rule3.py +0 -27
- data/modules/emscripten/third_party/ply/test/lex_state1.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state2.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state3.py +0 -42
- data/modules/emscripten/third_party/ply/test/lex_state4.py +0 -41
- data/modules/emscripten/third_party/ply/test/lex_state5.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state_noerror.py +0 -39
- data/modules/emscripten/third_party/ply/test/lex_state_norule.py +0 -40
- data/modules/emscripten/third_party/ply/test/lex_state_try.py +0 -45
- data/modules/emscripten/third_party/ply/test/lex_token1.py +0 -19
- data/modules/emscripten/third_party/ply/test/lex_token2.py +0 -22
- data/modules/emscripten/third_party/ply/test/lex_token3.py +0 -24
- data/modules/emscripten/third_party/ply/test/lex_token4.py +0 -26
- data/modules/emscripten/third_party/ply/test/lex_token5.py +0 -31
- data/modules/emscripten/third_party/ply/test/lex_token_dup.py +0 -29
- data/modules/emscripten/third_party/ply/test/testlex.py +0 -606
- data/modules/emscripten/third_party/ply/test/testyacc.py +0 -347
- data/modules/emscripten/third_party/ply/test/yacc_badargs.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badid.py +0 -77
- data/modules/emscripten/third_party/ply/test/yacc_badprec.py +0 -64
- data/modules/emscripten/third_party/ply/test/yacc_badprec2.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badprec3.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badrule.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_badtok.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_dup.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error2.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_error3.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_error4.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_inf.py +0 -56
- data/modules/emscripten/third_party/ply/test/yacc_literal.py +0 -69
- data/modules/emscripten/third_party/ply/test/yacc_misplaced.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_missing1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_nested.py +0 -33
- data/modules/emscripten/third_party/ply/test/yacc_nodoc.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_noerror.py +0 -66
- data/modules/emscripten/third_party/ply/test/yacc_nop.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_notfunc.py +0 -66
- data/modules/emscripten/third_party/ply/test/yacc_notok.py +0 -67
- data/modules/emscripten/third_party/ply/test/yacc_prec1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_rr.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_rr_unused.py +0 -30
- data/modules/emscripten/third_party/ply/test/yacc_simple.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_sr.py +0 -63
- data/modules/emscripten/third_party/ply/test/yacc_term1.py +0 -68
- data/modules/emscripten/third_party/ply/test/yacc_unused.py +0 -77
- data/modules/emscripten/third_party/ply/test/yacc_unused_rule.py +0 -72
- data/modules/emscripten/third_party/ply/test/yacc_uprec.py +0 -63
- data/modules/emscripten/third_party/ply/test/yacc_uprec2.py +0 -63
- data/modules/emscripten/third_party/readme.txt +0 -7
- data/modules/emscripten/third_party/stb_image.c +0 -4673
- data/modules/emscripten/third_party/websockify/CHANGES.txt +0 -23
- data/modules/emscripten/third_party/websockify/LICENSE.txt +0 -16
- data/modules/emscripten/third_party/websockify/MANIFEST.in +0 -1
- data/modules/emscripten/third_party/websockify/Makefile +0 -11
- data/modules/emscripten/third_party/websockify/README.md +0 -168
- data/modules/emscripten/third_party/websockify/Windows/Windows Service Readme.txt +0 -39
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Program.cs +0 -24
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.Designer.cs +0 -61
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.cs +0 -19
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/ProjectInstaller.resx +0 -129
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Properties/AssemblyInfo.cs +0 -36
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.Designer.cs +0 -37
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/Service1.cs +0 -41
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.csproj +0 -75
- data/modules/emscripten/third_party/websockify/Windows/noVNC Websocket Service Project/noVNC Websocket.sln +0 -20
- data/modules/emscripten/third_party/websockify/docs/LICENSE.GPL-3 +0 -621
- data/modules/emscripten/third_party/websockify/docs/LICENSE.LGPL-3 +0 -165
- data/modules/emscripten/third_party/websockify/docs/LICENSE.MPL-2.0 +0 -373
- data/modules/emscripten/third_party/websockify/docs/TODO +0 -9
- data/modules/emscripten/third_party/websockify/docs/flash_policy.txt +0 -4
- data/modules/emscripten/third_party/websockify/docs/latency_results.txt +0 -114
- data/modules/emscripten/third_party/websockify/docs/notes +0 -17
- data/modules/emscripten/third_party/websockify/docs/release.txt +0 -9
- data/modules/emscripten/third_party/websockify/docs/websockify.1 +0 -110
- data/modules/emscripten/third_party/websockify/include/VT100.js +0 -919
- data/modules/emscripten/third_party/websockify/include/base64.js +0 -114
- data/modules/emscripten/third_party/websockify/include/keysym.js +0 -99
- data/modules/emscripten/third_party/websockify/include/util.js +0 -359
- data/modules/emscripten/third_party/websockify/include/web-socket-js/README.txt +0 -109
- data/modules/emscripten/third_party/websockify/include/web-socket-js/WebSocketMain.swf +0 -0
- data/modules/emscripten/third_party/websockify/include/web-socket-js/swfobject.js +0 -4
- data/modules/emscripten/third_party/websockify/include/web-socket-js/web_socket.js +0 -391
- data/modules/emscripten/third_party/websockify/include/websock.js +0 -422
- data/modules/emscripten/third_party/websockify/include/webutil.js +0 -216
- data/modules/emscripten/third_party/websockify/include/wsirc.js +0 -235
- data/modules/emscripten/third_party/websockify/include/wstelnet.js +0 -335
- data/modules/emscripten/third_party/websockify/other/Makefile +0 -14
- data/modules/emscripten/third_party/websockify/other/README.md +0 -51
- data/modules/emscripten/third_party/websockify/other/launch.sh +0 -108
- data/modules/emscripten/third_party/websockify/other/project.clj +0 -13
- data/modules/emscripten/third_party/websockify/other/websocket.c +0 -802
- data/modules/emscripten/third_party/websockify/other/websocket.h +0 -84
- data/modules/emscripten/third_party/websockify/other/websocket.rb +0 -456
- data/modules/emscripten/third_party/websockify/other/websockify.c +0 -385
- data/modules/emscripten/third_party/websockify/other/websockify.clj +0 -233
- data/modules/emscripten/third_party/websockify/other/websockify.js +0 -196
- data/modules/emscripten/third_party/websockify/other/websockify.rb +0 -171
- data/modules/emscripten/third_party/websockify/other/wswrap +0 -22
- data/modules/emscripten/third_party/websockify/rebind +0 -18
- data/modules/emscripten/third_party/websockify/rebind.c +0 -94
- data/modules/emscripten/third_party/websockify/run +0 -5
- data/modules/emscripten/third_party/websockify/setup.py +0 -30
- data/modules/emscripten/third_party/websockify/tests/b64_vs_utf8.py +0 -29
- data/modules/emscripten/third_party/websockify/tests/base64.html +0 -91
- data/modules/emscripten/third_party/websockify/tests/base64.js +0 -12
- data/modules/emscripten/third_party/websockify/tests/echo.html +0 -148
- data/modules/emscripten/third_party/websockify/tests/echo.py +0 -75
- data/modules/emscripten/third_party/websockify/tests/echo.rb +0 -62
- data/modules/emscripten/third_party/websockify/tests/latency.html +0 -290
- data/modules/emscripten/third_party/websockify/tests/latency.py +0 -75
- data/modules/emscripten/third_party/websockify/tests/load.html +0 -250
- data/modules/emscripten/third_party/websockify/tests/load.py +0 -167
- data/modules/emscripten/third_party/websockify/tests/plain_echo.html +0 -168
- data/modules/emscripten/third_party/websockify/tests/simple.html +0 -68
- data/modules/emscripten/third_party/websockify/tests/utf8-list.py +0 -22
- data/modules/emscripten/third_party/websockify/websockify/__init__.py +0 -2
- data/modules/emscripten/third_party/websockify/websockify/websocket.py +0 -982
- data/modules/emscripten/third_party/websockify/websockify/websocketproxy.py +0 -393
- data/modules/emscripten/third_party/websockify/websockify.py +0 -5
- data/modules/emscripten/third_party/websockify/wsirc.html +0 -99
- data/modules/emscripten/third_party/websockify/wstelnet.html +0 -74
- data/modules/emscripten/tools/__init__.py +0 -0
- data/modules/emscripten/tools/asm_module.py +0 -275
- data/modules/emscripten/tools/autodebugger.py +0 -291
- data/modules/emscripten/tools/autodebugger_c.py +0 -37
- data/modules/emscripten/tools/autodebugger_indenter.py +0 -18
- data/modules/emscripten/tools/autodebugger_js.py +0 -47
- data/modules/emscripten/tools/autodediffer.py +0 -60
- data/modules/emscripten/tools/bindings_generator.py +0 -832
- data/modules/emscripten/tools/bisect_pair.py +0 -88
- data/modules/emscripten/tools/cache.py +0 -196
- data/modules/emscripten/tools/clean_webconsole.py +0 -34
- data/modules/emscripten/tools/crunch-worker.js +0 -124
- data/modules/emscripten/tools/diff_autodebugger.py +0 -15
- data/modules/emscripten/tools/eliminator/asm-eliminator-test-output.js +0 -307
- data/modules/emscripten/tools/eliminator/asm-eliminator-test.js +0 -382
- data/modules/emscripten/tools/eliminator/eliminator-test-output.js +0 -6136
- data/modules/emscripten/tools/eliminator/eliminator-test.js +0 -8879
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.html +0 -888
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/README.org +0 -463
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/bin/uglifyjs +0 -317
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/docstyle.css +0 -75
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/object-ast.js +0 -75
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/parse-js.js +0 -1363
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/process.js +0 -2005
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/lib/squeeze-more.js +0 -51
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/package.json +0 -22
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/beautify.js +0 -28
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/testparser.js +0 -402
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array1.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array2.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array3.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/array4.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/assignment.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/const.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/if.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue10.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue11.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue13.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue14.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue16.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue17.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue20.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue21.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue25.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue27.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue28.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue29.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue30.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue34.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue4.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue48.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue50.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue53.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue68.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue69.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/issue9.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/mangle.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/var.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/expected/with.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array1.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array2.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array3.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/array4.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/assignment.js +0 -20
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/concatstring.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/const.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/forstatement.js +0 -10
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/if.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +0 -9
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +0 -16
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue10.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue11.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue13.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue14.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue16.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue17.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue20.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue21.js +0 -6
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue25.js +0 -7
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue27.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue28.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue29.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue30.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue34.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue4.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue48.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue50.js +0 -9
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue53.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue68.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue69.js +0 -1
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/issue9.js +0 -4
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/mangle.js +0 -5
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/var.js +0 -3
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/compress/test/with.js +0 -2
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/test/unit/scripts.js +0 -55
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/hoist.js +0 -33
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument.js +0 -97
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/instrument2.js +0 -138
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/tmp/test.js +0 -16
- data/modules/emscripten/tools/eliminator/node_modules/uglify-js/uglify-js.js +0 -17
- data/modules/emscripten/tools/eliminator/safe-eliminator-test-output.js +0 -85
- data/modules/emscripten/tools/eliminator/safe-eliminator-test.js +0 -103
- data/modules/emscripten/tools/emconfiguren.py +0 -19
- data/modules/emscripten/tools/emmaken.py +0 -230
- data/modules/emscripten/tools/emmakenxx.py +0 -18
- data/modules/emscripten/tools/exec_llvm.py +0 -50
- data/modules/emscripten/tools/file2json.py +0 -49
- data/modules/emscripten/tools/file_packager.py +0 -719
- data/modules/emscripten/tools/find_bigfuncs.py +0 -23
- data/modules/emscripten/tools/find_bigis.py +0 -18
- data/modules/emscripten/tools/find_bigvars.py +0 -24
- data/modules/emscripten/tools/fix_closure.py +0 -88
- data/modules/emscripten/tools/gen_struct_info.py +0 -509
- data/modules/emscripten/tools/ie7_fix.py +0 -14
- data/modules/emscripten/tools/js-optimizer.js +0 -4023
- data/modules/emscripten/tools/js_optimizer.py +0 -357
- data/modules/emscripten/tools/jsrun.py +0 -37
- data/modules/emscripten/tools/ll-strip.py +0 -56
- data/modules/emscripten/tools/make_file.py +0 -19
- data/modules/emscripten/tools/make_minigzip.py +0 -13
- data/modules/emscripten/tools/merge_asm.py +0 -26
- data/modules/emscripten/tools/namespacer.py +0 -95
- data/modules/emscripten/tools/nativize_llvm.py +0 -34
- data/modules/emscripten/tools/node_modules/source-map/CHANGELOG.md +0 -58
- data/modules/emscripten/tools/node_modules/source-map/LICENSE +0 -28
- data/modules/emscripten/tools/node_modules/source-map/Makefile.dryice.js +0 -166
- data/modules/emscripten/tools/node_modules/source-map/README.md +0 -347
- data/modules/emscripten/tools/node_modules/source-map/build/assert-shim.js +0 -56
- data/modules/emscripten/tools/node_modules/source-map/build/mini-require.js +0 -152
- data/modules/emscripten/tools/node_modules/source-map/build/prefix-source-map.jsm +0 -20
- data/modules/emscripten/tools/node_modules/source-map/build/prefix-utils.jsm +0 -18
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-browser.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-source-map.jsm +0 -6
- data/modules/emscripten/tools/node_modules/source-map/build/suffix-utils.jsm +0 -21
- data/modules/emscripten/tools/node_modules/source-map/build/test-prefix.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/build/test-suffix.js +0 -3
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/array-set.js +0 -96
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64-vlq.js +0 -144
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/base64.js +0 -42
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/binary-search.js +0 -81
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-consumer.js +0 -430
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-map-generator.js +0 -381
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/source-node.js +0 -353
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map/util.js +0 -117
- data/modules/emscripten/tools/node_modules/source-map/lib/source-map.js +0 -8
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/LICENSE +0 -58
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/README.md +0 -119
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/amdefine.js +0 -299
- data/modules/emscripten/tools/node_modules/source-map/node_modules/amdefine/package.json +0 -33
- data/modules/emscripten/tools/node_modules/source-map/package.json +0 -74
- data/modules/emscripten/tools/node_modules/source-map/test/run-tests.js +0 -73
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-api.js +0 -26
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-array-set.js +0 -71
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64-vlq.js +0 -24
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-base64.js +0 -35
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-binary-search.js +0 -54
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-dog-fooding.js +0 -72
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-consumer.js +0 -306
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-map-generator.js +0 -391
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/test-source-node.js +0 -282
- data/modules/emscripten/tools/node_modules/source-map/test/source-map/util.js +0 -152
- data/modules/emscripten/tools/reproduceriter.js +0 -216
- data/modules/emscripten/tools/reproduceriter.py +0 -160
- data/modules/emscripten/tools/response_file.py +0 -34
- data/modules/emscripten/tools/scan_js.py +0 -20
- data/modules/emscripten/tools/scan_ll.py +0 -18
- data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/__init__.py +0 -3
- data/modules/emscripten/tools/scons/site_scons/site_tools/emscripten/emscripten.py +0 -46
- data/modules/emscripten/tools/settings_template_readonly.py +0 -49
- data/modules/emscripten/tools/shared.py +0 -1705
- data/modules/emscripten/tools/source-maps/sourcemap2json.js +0 -15
- data/modules/emscripten/tools/source-maps/sourcemapper.js +0 -208
- data/modules/emscripten/tools/split.py +0 -105
- data/modules/emscripten/tools/split_asm.py +0 -30
- data/modules/emscripten/tools/tempfiles.py +0 -41
- data/modules/emscripten/tools/test-js-optimizer-asm-last-output.js +0 -75
- data/modules/emscripten/tools/test-js-optimizer-asm-last.js +0 -91
- data/modules/emscripten/tools/test-js-optimizer-asm-minlast-output.js +0 -2
- data/modules/emscripten/tools/test-js-optimizer-asm-minlast.js +0 -8
- data/modules/emscripten/tools/test-js-optimizer-asm-outline1-output.js +0 -929
- data/modules/emscripten/tools/test-js-optimizer-asm-outline1.js +0 -351
- data/modules/emscripten/tools/test-js-optimizer-asm-outline2-output.js +0 -793
- data/modules/emscripten/tools/test-js-optimizer-asm-outline2.js +0 -606
- data/modules/emscripten/tools/test-js-optimizer-asm-outline3-output.js +0 -28
- data/modules/emscripten/tools/test-js-optimizer-asm-outline3.js +0 -30
- data/modules/emscripten/tools/test-js-optimizer-asm-pre-output.js +0 -522
- data/modules/emscripten/tools/test-js-optimizer-asm-pre.js +0 -533
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-min-output.js +0 -36
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-min.js +0 -37
- data/modules/emscripten/tools/test-js-optimizer-asm-regs-output.js +0 -106
- data/modules/emscripten/tools/test-js-optimizer-asm-regs.js +0 -110
- data/modules/emscripten/tools/test-js-optimizer-asm-relocate-output.js +0 -9
- data/modules/emscripten/tools/test-js-optimizer-asm-relocate.js +0 -12
- data/modules/emscripten/tools/test-js-optimizer-output.js +0 -291
- data/modules/emscripten/tools/test-js-optimizer-regs-output.js +0 -232
- data/modules/emscripten/tools/test-js-optimizer-regs.js +0 -237
- data/modules/emscripten/tools/test-js-optimizer-t2-output.js +0 -91
- data/modules/emscripten/tools/test-js-optimizer-t2.js +0 -92
- data/modules/emscripten/tools/test-js-optimizer-t2c-output.js +0 -17
- data/modules/emscripten/tools/test-js-optimizer-t2c.js +0 -18
- data/modules/emscripten/tools/test-js-optimizer-t3-output.js +0 -49
- data/modules/emscripten/tools/test-js-optimizer-t3.js +0 -50
- data/modules/emscripten/tools/test-js-optimizer.js +0 -401
- data/modules/emscripten/tools/validate_asmjs.py +0 -82
- data/modules/mruby/mrblib/print.rb +0 -18
- data/modules/mruby/src/re.h +0 -12
@@ -1,2005 +0,0 @@
|
|
1
|
-
/***********************************************************************
|
2
|
-
|
3
|
-
A JavaScript tokenizer / parser / beautifier / compressor.
|
4
|
-
|
5
|
-
This version is suitable for Node.js. With minimal changes (the
|
6
|
-
exports stuff) it should work on any JS platform.
|
7
|
-
|
8
|
-
This file implements some AST processors. They work on data built
|
9
|
-
by parse-js.
|
10
|
-
|
11
|
-
Exported functions:
|
12
|
-
|
13
|
-
- ast_mangle(ast, options) -- mangles the variable/function names
|
14
|
-
in the AST. Returns an AST.
|
15
|
-
|
16
|
-
- ast_squeeze(ast) -- employs various optimizations to make the
|
17
|
-
final generated code even smaller. Returns an AST.
|
18
|
-
|
19
|
-
- gen_code(ast, options) -- generates JS code from the AST. Pass
|
20
|
-
true (or an object, see the code for some options) as second
|
21
|
-
argument to get "pretty" (indented) code.
|
22
|
-
|
23
|
-
-------------------------------- (C) ---------------------------------
|
24
|
-
|
25
|
-
Author: Mihai Bazon
|
26
|
-
<mihai.bazon@gmail.com>
|
27
|
-
http://mihai.bazon.net/blog
|
28
|
-
|
29
|
-
Distributed under the BSD license:
|
30
|
-
|
31
|
-
Copyright 2010 (c) Mihai Bazon <mihai.bazon@gmail.com>
|
32
|
-
|
33
|
-
Redistribution and use in source and binary forms, with or without
|
34
|
-
modification, are permitted provided that the following conditions
|
35
|
-
are met:
|
36
|
-
|
37
|
-
* Redistributions of source code must retain the above
|
38
|
-
copyright notice, this list of conditions and the following
|
39
|
-
disclaimer.
|
40
|
-
|
41
|
-
* Redistributions in binary form must reproduce the above
|
42
|
-
copyright notice, this list of conditions and the following
|
43
|
-
disclaimer in the documentation and/or other materials
|
44
|
-
provided with the distribution.
|
45
|
-
|
46
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
|
47
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
48
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
49
|
-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
|
50
|
-
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
51
|
-
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
52
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
53
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
54
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
55
|
-
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
|
56
|
-
THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
57
|
-
SUCH DAMAGE.
|
58
|
-
|
59
|
-
***********************************************************************/
|
60
|
-
|
61
|
-
var jsp = require("./parse-js"),
|
62
|
-
slice = jsp.slice,
|
63
|
-
member = jsp.member,
|
64
|
-
PRECEDENCE = jsp.PRECEDENCE,
|
65
|
-
OPERATORS = jsp.OPERATORS;
|
66
|
-
|
67
|
-
function NodeWithLine(str, line) {
|
68
|
-
this.str = str;
|
69
|
-
this.line = line;
|
70
|
-
}
|
71
|
-
|
72
|
-
NodeWithLine.prototype = new String();
|
73
|
-
NodeWithLine.prototype.toString = function() { return this.str; }
|
74
|
-
NodeWithLine.prototype.valueOf = function() { return this.str; }
|
75
|
-
NodeWithLine.prototype.lineComment = function() { return " //@line " + this.line; }
|
76
|
-
|
77
|
-
// XXX ugly hack
|
78
|
-
String.prototype.lineComment = function() { return ""; }
|
79
|
-
|
80
|
-
/* -----[ helper for AST traversal ]----- */
|
81
|
-
|
82
|
-
function ast_walker() {
|
83
|
-
function _vardefs(defs) {
|
84
|
-
return [ this[0], MAP(defs, function(def){
|
85
|
-
var a = [ def[0] ];
|
86
|
-
if (def.length > 1)
|
87
|
-
a[1] = walk(def[1]);
|
88
|
-
return a;
|
89
|
-
}) ];
|
90
|
-
};
|
91
|
-
function _block(statements) {
|
92
|
-
var out = [ this[0] ];
|
93
|
-
if (statements != null)
|
94
|
-
out.push(MAP(statements, walk));
|
95
|
-
return out;
|
96
|
-
};
|
97
|
-
var walkers = {
|
98
|
-
"string": function(str) {
|
99
|
-
return [ this[0], str ];
|
100
|
-
},
|
101
|
-
"num": function(num) {
|
102
|
-
return [ this[0], num ];
|
103
|
-
},
|
104
|
-
"name": function(name) {
|
105
|
-
return [ this[0], name ];
|
106
|
-
},
|
107
|
-
"toplevel": function(statements) {
|
108
|
-
return [ this[0], MAP(statements, walk) ];
|
109
|
-
},
|
110
|
-
"block": _block,
|
111
|
-
"splice": _block,
|
112
|
-
"var": _vardefs,
|
113
|
-
"const": _vardefs,
|
114
|
-
"try": function(t, c, f) {
|
115
|
-
return [
|
116
|
-
this[0],
|
117
|
-
MAP(t, walk),
|
118
|
-
c != null ? [ c[0], MAP(c[1], walk) ] : null,
|
119
|
-
f != null ? MAP(f, walk) : null
|
120
|
-
];
|
121
|
-
},
|
122
|
-
"throw": function(expr) {
|
123
|
-
return [ this[0], walk(expr) ];
|
124
|
-
},
|
125
|
-
"new": function(ctor, args) {
|
126
|
-
return [ this[0], walk(ctor), MAP(args, walk) ];
|
127
|
-
},
|
128
|
-
"switch": function(expr, body) {
|
129
|
-
return [ this[0], walk(expr), MAP(body, function(branch){
|
130
|
-
return [ branch[0] ? walk(branch[0]) : null,
|
131
|
-
MAP(branch[1], walk) ];
|
132
|
-
}) ];
|
133
|
-
},
|
134
|
-
"break": function(label) {
|
135
|
-
return [ this[0], label ];
|
136
|
-
},
|
137
|
-
"continue": function(label) {
|
138
|
-
return [ this[0], label ];
|
139
|
-
},
|
140
|
-
"conditional": function(cond, t, e) {
|
141
|
-
return [ this[0], walk(cond), walk(t), walk(e) ];
|
142
|
-
},
|
143
|
-
"assign": function(op, lvalue, rvalue) {
|
144
|
-
return [ this[0], op, walk(lvalue), walk(rvalue) ];
|
145
|
-
},
|
146
|
-
"dot": function(expr) {
|
147
|
-
return [ this[0], walk(expr) ].concat(slice(arguments, 1));
|
148
|
-
},
|
149
|
-
"call": function(expr, args) {
|
150
|
-
return [ this[0], walk(expr), MAP(args, walk) ];
|
151
|
-
},
|
152
|
-
"function": function(name, args, body) {
|
153
|
-
return [ this[0], name, args.slice(), MAP(body, walk) ];
|
154
|
-
},
|
155
|
-
"defun": function(name, args, body) {
|
156
|
-
return [ this[0], name, args.slice(), MAP(body, walk) ];
|
157
|
-
},
|
158
|
-
"if": function(conditional, t, e) {
|
159
|
-
return [ this[0], walk(conditional), walk(t), walk(e) ];
|
160
|
-
},
|
161
|
-
"for": function(init, cond, step, block) {
|
162
|
-
return [ this[0], walk(init), walk(cond), walk(step), walk(block) ];
|
163
|
-
},
|
164
|
-
"for-in": function(vvar, key, hash, block) {
|
165
|
-
return [ this[0], walk(vvar), walk(key), walk(hash), walk(block) ];
|
166
|
-
},
|
167
|
-
"while": function(cond, block) {
|
168
|
-
return [ this[0], walk(cond), walk(block) ];
|
169
|
-
},
|
170
|
-
"do": function(cond, block) {
|
171
|
-
return [ this[0], walk(cond), walk(block) ];
|
172
|
-
},
|
173
|
-
"return": function(expr) {
|
174
|
-
return [ this[0], walk(expr) ];
|
175
|
-
},
|
176
|
-
"binary": function(op, left, right) {
|
177
|
-
return [ this[0], op, walk(left), walk(right) ];
|
178
|
-
},
|
179
|
-
"unary-prefix": function(op, expr) {
|
180
|
-
return [ this[0], op, walk(expr) ];
|
181
|
-
},
|
182
|
-
"unary-postfix": function(op, expr) {
|
183
|
-
return [ this[0], op, walk(expr) ];
|
184
|
-
},
|
185
|
-
"sub": function(expr, subscript) {
|
186
|
-
return [ this[0], walk(expr), walk(subscript) ];
|
187
|
-
},
|
188
|
-
"object": function(props) {
|
189
|
-
return [ this[0], MAP(props, function(p){
|
190
|
-
return p.length == 2
|
191
|
-
? [ p[0], walk(p[1]) ]
|
192
|
-
: [ p[0], walk(p[1]), p[2] ]; // get/set-ter
|
193
|
-
}) ];
|
194
|
-
},
|
195
|
-
"regexp": function(rx, mods) {
|
196
|
-
return [ this[0], rx, mods ];
|
197
|
-
},
|
198
|
-
"array": function(elements) {
|
199
|
-
return [ this[0], MAP(elements, walk) ];
|
200
|
-
},
|
201
|
-
"stat": function(stat) {
|
202
|
-
return [ this[0], walk(stat) ];
|
203
|
-
},
|
204
|
-
"seq": function() {
|
205
|
-
return [ this[0] ].concat(MAP(slice(arguments), walk));
|
206
|
-
},
|
207
|
-
"label": function(name, block) {
|
208
|
-
return [ this[0], name, walk(block) ];
|
209
|
-
},
|
210
|
-
"with": function(expr, block) {
|
211
|
-
return [ this[0], walk(expr), walk(block) ];
|
212
|
-
},
|
213
|
-
"atom": function(name) {
|
214
|
-
return [ this[0], name ];
|
215
|
-
}
|
216
|
-
};
|
217
|
-
|
218
|
-
var user = {};
|
219
|
-
var stack = [];
|
220
|
-
function walk(ast) {
|
221
|
-
if (ast == null)
|
222
|
-
return null;
|
223
|
-
try {
|
224
|
-
stack.push(ast);
|
225
|
-
var type = ast[0];
|
226
|
-
var gen = user[type];
|
227
|
-
if (gen) {
|
228
|
-
var ret = gen.apply(ast, ast.slice(1));
|
229
|
-
if (ret != null)
|
230
|
-
return ret;
|
231
|
-
}
|
232
|
-
gen = walkers[type];
|
233
|
-
return gen.apply(ast, ast.slice(1));
|
234
|
-
} finally {
|
235
|
-
stack.pop();
|
236
|
-
}
|
237
|
-
};
|
238
|
-
|
239
|
-
function with_walkers(walkers, cont){
|
240
|
-
var save = {}, i;
|
241
|
-
for (i in walkers) if (HOP(walkers, i)) {
|
242
|
-
save[i] = user[i];
|
243
|
-
user[i] = walkers[i];
|
244
|
-
}
|
245
|
-
var ret = cont();
|
246
|
-
for (i in save) if (HOP(save, i)) {
|
247
|
-
if (!save[i]) delete user[i];
|
248
|
-
else user[i] = save[i];
|
249
|
-
}
|
250
|
-
return ret;
|
251
|
-
};
|
252
|
-
|
253
|
-
return {
|
254
|
-
walk: walk,
|
255
|
-
with_walkers: with_walkers,
|
256
|
-
parent: function() {
|
257
|
-
return stack[stack.length - 2]; // last one is current node
|
258
|
-
},
|
259
|
-
stack: function() {
|
260
|
-
return stack;
|
261
|
-
}
|
262
|
-
};
|
263
|
-
};
|
264
|
-
|
265
|
-
/* -----[ Scope and mangling ]----- */
|
266
|
-
|
267
|
-
function Scope(parent) {
|
268
|
-
this.names = {}; // names defined in this scope
|
269
|
-
this.mangled = {}; // mangled names (orig.name => mangled)
|
270
|
-
this.rev_mangled = {}; // reverse lookup (mangled => orig.name)
|
271
|
-
this.cname = -1; // current mangled name
|
272
|
-
this.refs = {}; // names referenced from this scope
|
273
|
-
this.uses_with = false; // will become TRUE if with() is detected in this or any subscopes
|
274
|
-
this.uses_eval = false; // will become TRUE if eval() is detected in this or any subscopes
|
275
|
-
this.parent = parent; // parent scope
|
276
|
-
this.children = []; // sub-scopes
|
277
|
-
if (parent) {
|
278
|
-
this.level = parent.level + 1;
|
279
|
-
parent.children.push(this);
|
280
|
-
} else {
|
281
|
-
this.level = 0;
|
282
|
-
}
|
283
|
-
};
|
284
|
-
|
285
|
-
var base54 = (function(){
|
286
|
-
var DIGITS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ$_";
|
287
|
-
return function(num) {
|
288
|
-
var ret = "";
|
289
|
-
do {
|
290
|
-
ret = DIGITS.charAt(num % 54) + ret;
|
291
|
-
num = Math.floor(num / 54);
|
292
|
-
} while (num > 0);
|
293
|
-
return ret;
|
294
|
-
};
|
295
|
-
})();
|
296
|
-
|
297
|
-
Scope.prototype = {
|
298
|
-
has: function(name) {
|
299
|
-
for (var s = this; s; s = s.parent)
|
300
|
-
if (HOP(s.names, name))
|
301
|
-
return s;
|
302
|
-
},
|
303
|
-
has_mangled: function(mname) {
|
304
|
-
for (var s = this; s; s = s.parent)
|
305
|
-
if (HOP(s.rev_mangled, mname))
|
306
|
-
return s;
|
307
|
-
},
|
308
|
-
toJSON: function() {
|
309
|
-
return {
|
310
|
-
names: this.names,
|
311
|
-
uses_eval: this.uses_eval,
|
312
|
-
uses_with: this.uses_with
|
313
|
-
};
|
314
|
-
},
|
315
|
-
|
316
|
-
next_mangled: function() {
|
317
|
-
// we must be careful that the new mangled name:
|
318
|
-
//
|
319
|
-
// 1. doesn't shadow a mangled name from a parent
|
320
|
-
// scope, unless we don't reference the original
|
321
|
-
// name from this scope OR from any sub-scopes!
|
322
|
-
// This will get slow.
|
323
|
-
//
|
324
|
-
// 2. doesn't shadow an original name from a parent
|
325
|
-
// scope, in the event that the name is not mangled
|
326
|
-
// in the parent scope and we reference that name
|
327
|
-
// here OR IN ANY SUBSCOPES!
|
328
|
-
//
|
329
|
-
// 3. doesn't shadow a name that is referenced but not
|
330
|
-
// defined (possibly global defined elsewhere).
|
331
|
-
for (;;) {
|
332
|
-
var m = base54(++this.cname), prior;
|
333
|
-
|
334
|
-
// case 1.
|
335
|
-
prior = this.has_mangled(m);
|
336
|
-
if (prior && this.refs[prior.rev_mangled[m]] === prior)
|
337
|
-
continue;
|
338
|
-
|
339
|
-
// case 2.
|
340
|
-
prior = this.has(m);
|
341
|
-
if (prior && prior !== this && this.refs[m] === prior && !prior.has_mangled(m))
|
342
|
-
continue;
|
343
|
-
|
344
|
-
// case 3.
|
345
|
-
if (HOP(this.refs, m) && this.refs[m] == null)
|
346
|
-
continue;
|
347
|
-
|
348
|
-
// I got "do" once. :-/
|
349
|
-
if (!is_identifier(m))
|
350
|
-
continue;
|
351
|
-
|
352
|
-
return m;
|
353
|
-
}
|
354
|
-
},
|
355
|
-
set_mangle: function(name, m) {
|
356
|
-
this.rev_mangled[m] = name;
|
357
|
-
return this.mangled[name] = m;
|
358
|
-
},
|
359
|
-
get_mangled: function(name, newMangle) {
|
360
|
-
if (this.uses_eval || this.uses_with) return name; // no mangle if eval or with is in use
|
361
|
-
var s = this.has(name);
|
362
|
-
if (!s) return name; // not in visible scope, no mangle
|
363
|
-
if (HOP(s.mangled, name)) return s.mangled[name]; // already mangled in this scope
|
364
|
-
if (!newMangle) return name; // not found and no mangling requested
|
365
|
-
return s.set_mangle(name, s.next_mangled());
|
366
|
-
},
|
367
|
-
references: function(name) {
|
368
|
-
return name && !this.parent || this.uses_with || this.uses_eval || this.refs[name];
|
369
|
-
},
|
370
|
-
define: function(name, type) {
|
371
|
-
if (name != null) {
|
372
|
-
if (type == "var" || !HOP(this.names, name))
|
373
|
-
this.names[name] = type || "var";
|
374
|
-
return name;
|
375
|
-
}
|
376
|
-
}
|
377
|
-
};
|
378
|
-
|
379
|
-
function ast_add_scope(ast) {
|
380
|
-
|
381
|
-
var current_scope = null;
|
382
|
-
var w = ast_walker(), walk = w.walk;
|
383
|
-
var having_eval = [];
|
384
|
-
|
385
|
-
function with_new_scope(cont) {
|
386
|
-
current_scope = new Scope(current_scope);
|
387
|
-
var ret = current_scope.body = cont();
|
388
|
-
ret.scope = current_scope;
|
389
|
-
current_scope = current_scope.parent;
|
390
|
-
return ret;
|
391
|
-
};
|
392
|
-
|
393
|
-
function define(name, type) {
|
394
|
-
return current_scope.define(name, type);
|
395
|
-
};
|
396
|
-
|
397
|
-
function reference(name) {
|
398
|
-
current_scope.refs[name] = true;
|
399
|
-
};
|
400
|
-
|
401
|
-
function _lambda(name, args, body) {
|
402
|
-
var is_defun = this[0] == "defun";
|
403
|
-
return [ this[0], is_defun ? define(name, "defun") : name, args, with_new_scope(function(){
|
404
|
-
if (!is_defun) define(name, "lambda");
|
405
|
-
MAP(args, function(name){ define(name, "arg") });
|
406
|
-
return MAP(body, walk);
|
407
|
-
})];
|
408
|
-
};
|
409
|
-
|
410
|
-
function _vardefs(type) {
|
411
|
-
return function(defs) {
|
412
|
-
MAP(defs, function(d){
|
413
|
-
define(d[0], type);
|
414
|
-
if (d[1]) reference(d[0]);
|
415
|
-
});
|
416
|
-
};
|
417
|
-
};
|
418
|
-
|
419
|
-
return with_new_scope(function(){
|
420
|
-
// process AST
|
421
|
-
var ret = w.with_walkers({
|
422
|
-
"function": _lambda,
|
423
|
-
"defun": _lambda,
|
424
|
-
"label": function(name, stat) { define(name, "label") },
|
425
|
-
"break": function(label) { if (label) reference(label) },
|
426
|
-
"continue": function(label) { if (label) reference(label) },
|
427
|
-
"with": function(expr, block) {
|
428
|
-
for (var s = current_scope; s; s = s.parent)
|
429
|
-
s.uses_with = true;
|
430
|
-
},
|
431
|
-
"var": _vardefs("var"),
|
432
|
-
"const": _vardefs("const"),
|
433
|
-
"try": function(t, c, f) {
|
434
|
-
if (c != null) return [
|
435
|
-
this[0],
|
436
|
-
MAP(t, walk),
|
437
|
-
[ define(c[0], "catch"), MAP(c[1], walk) ],
|
438
|
-
f != null ? MAP(f, walk) : null
|
439
|
-
];
|
440
|
-
},
|
441
|
-
"name": function(name) {
|
442
|
-
if (name == "eval")
|
443
|
-
having_eval.push(current_scope);
|
444
|
-
reference(name);
|
445
|
-
}
|
446
|
-
}, function(){
|
447
|
-
return walk(ast);
|
448
|
-
});
|
449
|
-
|
450
|
-
// the reason why we need an additional pass here is
|
451
|
-
// that names can be used prior to their definition.
|
452
|
-
|
453
|
-
// scopes where eval was detected and their parents
|
454
|
-
// are marked with uses_eval, unless they define the
|
455
|
-
// "eval" name.
|
456
|
-
MAP(having_eval, function(scope){
|
457
|
-
if (!scope.has("eval")) while (scope) {
|
458
|
-
scope.uses_eval = true;
|
459
|
-
scope = scope.parent;
|
460
|
-
}
|
461
|
-
});
|
462
|
-
|
463
|
-
// for referenced names it might be useful to know
|
464
|
-
// their origin scope. current_scope here is the
|
465
|
-
// toplevel one.
|
466
|
-
function fixrefs(scope, i) {
|
467
|
-
// do children first; order shouldn't matter
|
468
|
-
for (i = scope.children.length; --i >= 0;)
|
469
|
-
fixrefs(scope.children[i]);
|
470
|
-
for (i in scope.refs) if (HOP(scope.refs, i)) {
|
471
|
-
// find origin scope and propagate the reference to origin
|
472
|
-
for (var origin = scope.has(i), s = scope; s; s = s.parent) {
|
473
|
-
s.refs[i] = origin;
|
474
|
-
if (s === origin) break;
|
475
|
-
}
|
476
|
-
}
|
477
|
-
};
|
478
|
-
fixrefs(current_scope);
|
479
|
-
|
480
|
-
return ret;
|
481
|
-
});
|
482
|
-
|
483
|
-
};
|
484
|
-
|
485
|
-
/* -----[ mangle names ]----- */
|
486
|
-
|
487
|
-
function ast_mangle(ast, options) {
|
488
|
-
var w = ast_walker(), walk = w.walk, scope;
|
489
|
-
options = options || {};
|
490
|
-
|
491
|
-
function get_mangled(name, newMangle) {
|
492
|
-
if (!options.toplevel && !scope.parent) return name; // don't mangle toplevel
|
493
|
-
if (options.except && member(name, options.except))
|
494
|
-
return name;
|
495
|
-
return scope.get_mangled(name, newMangle);
|
496
|
-
};
|
497
|
-
|
498
|
-
function get_define(name) {
|
499
|
-
if (options.defines) {
|
500
|
-
// we always lookup a defined symbol for the current scope FIRST, so declared
|
501
|
-
// vars trump a DEFINE symbol, but if no such var is found, then match a DEFINE value
|
502
|
-
if (!scope.has(name)) {
|
503
|
-
if (HOP(options.defines, name)) {
|
504
|
-
return options.defines[name];
|
505
|
-
}
|
506
|
-
}
|
507
|
-
return null;
|
508
|
-
}
|
509
|
-
};
|
510
|
-
|
511
|
-
function _lambda(name, args, body) {
|
512
|
-
var is_defun = this[0] == "defun", extra;
|
513
|
-
if (name) {
|
514
|
-
if (is_defun) name = get_mangled(name);
|
515
|
-
else {
|
516
|
-
extra = {};
|
517
|
-
if (!(scope.uses_eval || scope.uses_with))
|
518
|
-
name = extra[name] = scope.next_mangled();
|
519
|
-
else
|
520
|
-
extra[name] = name;
|
521
|
-
}
|
522
|
-
}
|
523
|
-
body = with_scope(body.scope, function(){
|
524
|
-
args = MAP(args, function(name){ return get_mangled(name) });
|
525
|
-
return MAP(body, walk);
|
526
|
-
}, extra);
|
527
|
-
return [ this[0], name, args, body ];
|
528
|
-
};
|
529
|
-
|
530
|
-
function with_scope(s, cont, extra) {
|
531
|
-
var _scope = scope;
|
532
|
-
scope = s;
|
533
|
-
if (extra) for (var i in extra) if (HOP(extra, i)) {
|
534
|
-
s.set_mangle(i, extra[i]);
|
535
|
-
}
|
536
|
-
for (var i in s.names) if (HOP(s.names, i)) {
|
537
|
-
get_mangled(i, true);
|
538
|
-
}
|
539
|
-
var ret = cont();
|
540
|
-
ret.scope = s;
|
541
|
-
scope = _scope;
|
542
|
-
return ret;
|
543
|
-
};
|
544
|
-
|
545
|
-
function _vardefs(defs) {
|
546
|
-
return [ this[0], MAP(defs, function(d){
|
547
|
-
return [ get_mangled(d[0]), walk(d[1]) ];
|
548
|
-
}) ];
|
549
|
-
};
|
550
|
-
|
551
|
-
return w.with_walkers({
|
552
|
-
"function": _lambda,
|
553
|
-
"defun": function() {
|
554
|
-
// move function declarations to the top when
|
555
|
-
// they are not in some block.
|
556
|
-
var ast = _lambda.apply(this, arguments);
|
557
|
-
switch (w.parent()[0]) {
|
558
|
-
case "toplevel":
|
559
|
-
case "function":
|
560
|
-
case "defun":
|
561
|
-
return MAP.at_top(ast);
|
562
|
-
}
|
563
|
-
return ast;
|
564
|
-
},
|
565
|
-
"label": function(label, stat) { return [ this[0], get_mangled(label), walk(stat) ] },
|
566
|
-
"break": function(label) { if (label) return [ this[0], get_mangled(label) ] },
|
567
|
-
"continue": function(label) { if (label) return [ this[0], get_mangled(label) ] },
|
568
|
-
"var": _vardefs,
|
569
|
-
"const": _vardefs,
|
570
|
-
"name": function(name) {
|
571
|
-
return get_define(name) || [ this[0], get_mangled(name) ];
|
572
|
-
},
|
573
|
-
"try": function(t, c, f) {
|
574
|
-
return [ this[0],
|
575
|
-
MAP(t, walk),
|
576
|
-
c != null ? [ get_mangled(c[0]), MAP(c[1], walk) ] : null,
|
577
|
-
f != null ? MAP(f, walk) : null ];
|
578
|
-
},
|
579
|
-
"toplevel": function(body) {
|
580
|
-
var self = this;
|
581
|
-
return with_scope(self.scope, function(){
|
582
|
-
return [ self[0], MAP(body, walk) ];
|
583
|
-
});
|
584
|
-
}
|
585
|
-
}, function() {
|
586
|
-
return walk(ast_add_scope(ast));
|
587
|
-
});
|
588
|
-
};
|
589
|
-
|
590
|
-
/* -----[
|
591
|
-
- compress foo["bar"] into foo.bar,
|
592
|
-
- remove block brackets {} where possible
|
593
|
-
- join consecutive var declarations
|
594
|
-
- various optimizations for IFs:
|
595
|
-
- if (cond) foo(); else bar(); ==> cond?foo():bar();
|
596
|
-
- if (cond) foo(); ==> cond&&foo();
|
597
|
-
- if (foo) return bar(); else return baz(); ==> return foo?bar():baz(); // also for throw
|
598
|
-
- if (foo) return bar(); else something(); ==> {if(foo)return bar();something()}
|
599
|
-
]----- */
|
600
|
-
|
601
|
-
var warn = function(){};
|
602
|
-
|
603
|
-
function best_of(ast1, ast2) {
|
604
|
-
return gen_code(ast1).length > gen_code(ast2[0] == "stat" ? ast2[1] : ast2).length ? ast2 : ast1;
|
605
|
-
};
|
606
|
-
|
607
|
-
function last_stat(b) {
|
608
|
-
if (b[0] == "block" && b[1] && b[1].length > 0)
|
609
|
-
return b[1][b[1].length - 1];
|
610
|
-
return b;
|
611
|
-
}
|
612
|
-
|
613
|
-
function aborts(t) {
|
614
|
-
if (t) switch (last_stat(t)[0]) {
|
615
|
-
case "return":
|
616
|
-
case "break":
|
617
|
-
case "continue":
|
618
|
-
case "throw":
|
619
|
-
return true;
|
620
|
-
}
|
621
|
-
};
|
622
|
-
|
623
|
-
function boolean_expr(expr) {
|
624
|
-
return ( (expr[0] == "unary-prefix"
|
625
|
-
&& member(expr[1], [ "!", "delete" ])) ||
|
626
|
-
|
627
|
-
(expr[0] == "binary"
|
628
|
-
&& member(expr[1], [ "in", "instanceof", "==", "!=", "===", "!==", "<", "<=", ">=", ">" ])) ||
|
629
|
-
|
630
|
-
(expr[0] == "binary"
|
631
|
-
&& member(expr[1], [ "&&", "||" ])
|
632
|
-
&& boolean_expr(expr[2])
|
633
|
-
&& boolean_expr(expr[3])) ||
|
634
|
-
|
635
|
-
(expr[0] == "conditional"
|
636
|
-
&& boolean_expr(expr[2])
|
637
|
-
&& boolean_expr(expr[3])) ||
|
638
|
-
|
639
|
-
(expr[0] == "assign"
|
640
|
-
&& expr[1] === true
|
641
|
-
&& boolean_expr(expr[3])) ||
|
642
|
-
|
643
|
-
(expr[0] == "seq"
|
644
|
-
&& boolean_expr(expr[expr.length - 1]))
|
645
|
-
);
|
646
|
-
};
|
647
|
-
|
648
|
-
function make_conditional(c, t, e) {
|
649
|
-
var make_real_conditional = function() {
|
650
|
-
if (c[0] == "unary-prefix" && c[1] == "!") {
|
651
|
-
return e ? [ "conditional", c[2], e, t ] : [ "binary", "||", c[2], t ];
|
652
|
-
} else {
|
653
|
-
return e ? [ "conditional", c, t, e ] : [ "binary", "&&", c, t ];
|
654
|
-
}
|
655
|
-
};
|
656
|
-
// shortcut the conditional if the expression has a constant value
|
657
|
-
return when_constant(c, function(ast, val){
|
658
|
-
warn_unreachable(val ? e : t);
|
659
|
-
return (val ? t : e);
|
660
|
-
}, make_real_conditional);
|
661
|
-
};
|
662
|
-
|
663
|
-
function empty(b) {
|
664
|
-
return !b || (b[0] == "block" && (!b[1] || b[1].length == 0));
|
665
|
-
};
|
666
|
-
|
667
|
-
function is_string(node) {
|
668
|
-
return (node[0] == "string" ||
|
669
|
-
node[0] == "unary-prefix" && node[1] == "typeof" ||
|
670
|
-
node[0] == "binary" && node[1] == "+" &&
|
671
|
-
(is_string(node[2]) || is_string(node[3])));
|
672
|
-
};
|
673
|
-
|
674
|
-
var when_constant = (function(){
|
675
|
-
|
676
|
-
var $NOT_CONSTANT = {};
|
677
|
-
|
678
|
-
// this can only evaluate constant expressions. If it finds anything
|
679
|
-
// not constant, it throws $NOT_CONSTANT.
|
680
|
-
function evaluate(expr) {
|
681
|
-
switch (expr[0]) {
|
682
|
-
case "string":
|
683
|
-
case "num":
|
684
|
-
return expr[1];
|
685
|
-
case "name":
|
686
|
-
case "atom":
|
687
|
-
switch (expr[1]) {
|
688
|
-
case "true": return true;
|
689
|
-
case "false": return false;
|
690
|
-
}
|
691
|
-
break;
|
692
|
-
case "unary-prefix":
|
693
|
-
switch (expr[1]) {
|
694
|
-
case "!": return !evaluate(expr[2]);
|
695
|
-
case "typeof": return typeof evaluate(expr[2]);
|
696
|
-
case "~": return ~evaluate(expr[2]);
|
697
|
-
case "-": return -evaluate(expr[2]);
|
698
|
-
case "+": return +evaluate(expr[2]);
|
699
|
-
}
|
700
|
-
break;
|
701
|
-
case "binary":
|
702
|
-
var left = expr[2], right = expr[3];
|
703
|
-
switch (expr[1]) {
|
704
|
-
case "&&" : return evaluate(left) && evaluate(right);
|
705
|
-
case "||" : return evaluate(left) || evaluate(right);
|
706
|
-
case "|" : return evaluate(left) | evaluate(right);
|
707
|
-
case "&" : return evaluate(left) & evaluate(right);
|
708
|
-
case "^" : return evaluate(left) ^ evaluate(right);
|
709
|
-
case "+" : return evaluate(left) + evaluate(right);
|
710
|
-
case "*" : return evaluate(left) * evaluate(right);
|
711
|
-
case "/" : return evaluate(left) / evaluate(right);
|
712
|
-
case "-" : return evaluate(left) - evaluate(right);
|
713
|
-
case "<<" : return evaluate(left) << evaluate(right);
|
714
|
-
case ">>" : return evaluate(left) >> evaluate(right);
|
715
|
-
case ">>>" : return evaluate(left) >>> evaluate(right);
|
716
|
-
case "==" : return evaluate(left) == evaluate(right);
|
717
|
-
case "===" : return evaluate(left) === evaluate(right);
|
718
|
-
case "!=" : return evaluate(left) != evaluate(right);
|
719
|
-
case "!==" : return evaluate(left) !== evaluate(right);
|
720
|
-
case "<" : return evaluate(left) < evaluate(right);
|
721
|
-
case "<=" : return evaluate(left) <= evaluate(right);
|
722
|
-
case ">" : return evaluate(left) > evaluate(right);
|
723
|
-
case ">=" : return evaluate(left) >= evaluate(right);
|
724
|
-
case "in" : return evaluate(left) in evaluate(right);
|
725
|
-
case "instanceof" : return evaluate(left) instanceof evaluate(right);
|
726
|
-
}
|
727
|
-
}
|
728
|
-
throw $NOT_CONSTANT;
|
729
|
-
};
|
730
|
-
|
731
|
-
return function(expr, yes, no) {
|
732
|
-
try {
|
733
|
-
var val = evaluate(expr), ast;
|
734
|
-
switch (typeof val) {
|
735
|
-
case "string": ast = [ "string", val ]; break;
|
736
|
-
case "number": ast = [ "num", val ]; break;
|
737
|
-
case "boolean": ast = [ "name", String(val) ]; break;
|
738
|
-
default: throw new Error("Can't handle constant of type: " + (typeof val));
|
739
|
-
}
|
740
|
-
return yes.call(expr, ast, val);
|
741
|
-
} catch(ex) {
|
742
|
-
if (ex === $NOT_CONSTANT) {
|
743
|
-
if (expr[0] == "binary"
|
744
|
-
&& (expr[1] == "===" || expr[1] == "!==")
|
745
|
-
&& ((is_string(expr[2]) && is_string(expr[3]))
|
746
|
-
|| (boolean_expr(expr[2]) && boolean_expr(expr[3])))) {
|
747
|
-
expr[1] = expr[1].substr(0, 2);
|
748
|
-
}
|
749
|
-
else if (no && expr[0] == "binary"
|
750
|
-
&& (expr[1] == "||" || expr[1] == "&&")) {
|
751
|
-
// the whole expression is not constant but the lval may be...
|
752
|
-
try {
|
753
|
-
var lval = evaluate(expr[2]);
|
754
|
-
expr = ((expr[1] == "&&" && (lval ? expr[3] : lval)) ||
|
755
|
-
(expr[1] == "||" && (lval ? lval : expr[3])) ||
|
756
|
-
expr);
|
757
|
-
} catch(ex2) {
|
758
|
-
// IGNORE... lval is not constant
|
759
|
-
}
|
760
|
-
}
|
761
|
-
return no ? no.call(expr, expr) : null;
|
762
|
-
}
|
763
|
-
else throw ex;
|
764
|
-
}
|
765
|
-
};
|
766
|
-
|
767
|
-
})();
|
768
|
-
|
769
|
-
function warn_unreachable(ast) {
|
770
|
-
if (!empty(ast))
|
771
|
-
warn("Dropping unreachable code: " + gen_code(ast, true));
|
772
|
-
};
|
773
|
-
|
774
|
-
function prepare_ifs(ast) {
|
775
|
-
var w = ast_walker(), walk = w.walk;
|
776
|
-
// In this first pass, we rewrite ifs which abort with no else with an
|
777
|
-
// if-else. For example:
|
778
|
-
//
|
779
|
-
// if (x) {
|
780
|
-
// blah();
|
781
|
-
// return y;
|
782
|
-
// }
|
783
|
-
// foobar();
|
784
|
-
//
|
785
|
-
// is rewritten into:
|
786
|
-
//
|
787
|
-
// if (x) {
|
788
|
-
// blah();
|
789
|
-
// return y;
|
790
|
-
// } else {
|
791
|
-
// foobar();
|
792
|
-
// }
|
793
|
-
function redo_if(statements) {
|
794
|
-
statements = MAP(statements, walk);
|
795
|
-
|
796
|
-
for (var i = 0; i < statements.length; ++i) {
|
797
|
-
var fi = statements[i];
|
798
|
-
if (fi[0] != "if") continue;
|
799
|
-
|
800
|
-
if (fi[3] && walk(fi[3])) continue;
|
801
|
-
|
802
|
-
var t = walk(fi[2]);
|
803
|
-
if (!aborts(t)) continue;
|
804
|
-
|
805
|
-
var conditional = walk(fi[1]);
|
806
|
-
|
807
|
-
var e_body = statements.slice(i + 1);
|
808
|
-
var e = e_body.length == 1 ? e_body[0] : [ "block", e_body ];
|
809
|
-
|
810
|
-
var ret = statements.slice(0, i).concat([ [
|
811
|
-
fi[0], // "if"
|
812
|
-
conditional, // conditional
|
813
|
-
t, // then
|
814
|
-
e // else
|
815
|
-
] ]);
|
816
|
-
|
817
|
-
return redo_if(ret);
|
818
|
-
}
|
819
|
-
|
820
|
-
return statements;
|
821
|
-
};
|
822
|
-
|
823
|
-
function redo_if_lambda(name, args, body) {
|
824
|
-
body = redo_if(body);
|
825
|
-
return [ this[0], name, args, body ];
|
826
|
-
};
|
827
|
-
|
828
|
-
function redo_if_block(statements) {
|
829
|
-
return [ this[0], statements != null ? redo_if(statements) : null ];
|
830
|
-
};
|
831
|
-
|
832
|
-
return w.with_walkers({
|
833
|
-
"defun": redo_if_lambda,
|
834
|
-
"function": redo_if_lambda,
|
835
|
-
"block": redo_if_block,
|
836
|
-
"splice": redo_if_block,
|
837
|
-
"toplevel": function(statements) {
|
838
|
-
return [ this[0], redo_if(statements) ];
|
839
|
-
},
|
840
|
-
"try": function(t, c, f) {
|
841
|
-
return [
|
842
|
-
this[0],
|
843
|
-
redo_if(t),
|
844
|
-
c != null ? [ c[0], redo_if(c[1]) ] : null,
|
845
|
-
f != null ? redo_if(f) : null
|
846
|
-
];
|
847
|
-
}
|
848
|
-
}, function() {
|
849
|
-
return walk(ast);
|
850
|
-
});
|
851
|
-
};
|
852
|
-
|
853
|
-
function for_side_effects(ast, handler) {
|
854
|
-
var w = ast_walker(), walk = w.walk;
|
855
|
-
var $stop = {}, $restart = {};
|
856
|
-
function stop() { throw $stop };
|
857
|
-
function restart() { throw $restart };
|
858
|
-
function found(){ return handler.call(this, this, w, stop, restart) };
|
859
|
-
function unary(op) {
|
860
|
-
if (op == "++" || op == "--")
|
861
|
-
return found.apply(this, arguments);
|
862
|
-
};
|
863
|
-
return w.with_walkers({
|
864
|
-
"try": found,
|
865
|
-
"throw": found,
|
866
|
-
"return": found,
|
867
|
-
"new": found,
|
868
|
-
"switch": found,
|
869
|
-
"break": found,
|
870
|
-
"continue": found,
|
871
|
-
"assign": found,
|
872
|
-
"call": found,
|
873
|
-
"if": found,
|
874
|
-
"for": found,
|
875
|
-
"for-in": found,
|
876
|
-
"while": found,
|
877
|
-
"do": found,
|
878
|
-
"return": found,
|
879
|
-
"unary-prefix": unary,
|
880
|
-
"unary-postfix": unary,
|
881
|
-
"defun": found
|
882
|
-
}, function(){
|
883
|
-
while (true) try {
|
884
|
-
walk(ast);
|
885
|
-
break;
|
886
|
-
} catch(ex) {
|
887
|
-
if (ex === $stop) break;
|
888
|
-
if (ex === $restart) continue;
|
889
|
-
throw ex;
|
890
|
-
}
|
891
|
-
});
|
892
|
-
};
|
893
|
-
|
894
|
-
function ast_lift_variables(ast) {
|
895
|
-
var w = ast_walker(), walk = w.walk, scope;
|
896
|
-
function do_body(body, env) {
|
897
|
-
var _scope = scope;
|
898
|
-
scope = env;
|
899
|
-
body = MAP(body, walk);
|
900
|
-
var hash = {}, names = MAP(env.names, function(type, name){
|
901
|
-
if (type != "var") return MAP.skip;
|
902
|
-
if (!env.references(name)) return MAP.skip;
|
903
|
-
hash[name] = true;
|
904
|
-
return [ name ];
|
905
|
-
});
|
906
|
-
if (names.length > 0) {
|
907
|
-
// looking for assignments to any of these variables.
|
908
|
-
// we can save considerable space by moving the definitions
|
909
|
-
// in the var declaration.
|
910
|
-
for_side_effects([ "block", body ], function(ast, walker, stop, restart) {
|
911
|
-
if (ast[0] == "assign"
|
912
|
-
&& ast[1] === true
|
913
|
-
&& ast[2][0] == "name"
|
914
|
-
&& HOP(hash, ast[2][1])) {
|
915
|
-
// insert the definition into the var declaration
|
916
|
-
for (var i = names.length; --i >= 0;) {
|
917
|
-
if (names[i][0] == ast[2][1]) {
|
918
|
-
if (names[i][1]) // this name already defined, we must stop
|
919
|
-
stop();
|
920
|
-
names[i][1] = ast[3]; // definition
|
921
|
-
names.push(names.splice(i, 1)[0]);
|
922
|
-
break;
|
923
|
-
}
|
924
|
-
}
|
925
|
-
// remove this assignment from the AST.
|
926
|
-
var p = walker.parent();
|
927
|
-
if (p[0] == "seq") {
|
928
|
-
var a = p[2];
|
929
|
-
a.unshift(0, p.length);
|
930
|
-
p.splice.apply(p, a);
|
931
|
-
}
|
932
|
-
else if (p[0] == "stat") {
|
933
|
-
p.splice(0, p.length, "block"); // empty statement
|
934
|
-
}
|
935
|
-
else {
|
936
|
-
stop();
|
937
|
-
}
|
938
|
-
restart();
|
939
|
-
}
|
940
|
-
stop();
|
941
|
-
});
|
942
|
-
body.unshift([ "var", names ]);
|
943
|
-
}
|
944
|
-
scope = _scope;
|
945
|
-
return body;
|
946
|
-
};
|
947
|
-
function _vardefs(defs) {
|
948
|
-
var ret = null;
|
949
|
-
for (var i = defs.length; --i >= 0;) {
|
950
|
-
var d = defs[i];
|
951
|
-
if (!d[1]) continue;
|
952
|
-
d = [ "assign", true, [ "name", d[0] ], d[1] ];
|
953
|
-
if (ret == null) ret = d;
|
954
|
-
else ret = [ "seq", d, ret ];
|
955
|
-
}
|
956
|
-
if (ret == null) {
|
957
|
-
if (w.parent()[0] == "for-in")
|
958
|
-
return [ "name", defs[0][0] ];
|
959
|
-
return MAP.skip;
|
960
|
-
}
|
961
|
-
return [ "stat", ret ];
|
962
|
-
};
|
963
|
-
function _toplevel(body) {
|
964
|
-
return [ this[0], do_body(body, this.scope) ];
|
965
|
-
};
|
966
|
-
return w.with_walkers({
|
967
|
-
"function": function(name, args, body){
|
968
|
-
for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);)
|
969
|
-
args.pop();
|
970
|
-
if (!body.scope.references(name)) name = null;
|
971
|
-
return [ this[0], name, args, do_body(body, body.scope) ];
|
972
|
-
},
|
973
|
-
"defun": function(name, args, body){
|
974
|
-
if (!scope.references(name)) return MAP.skip;
|
975
|
-
for (var i = args.length; --i >= 0 && !body.scope.references(args[i]);)
|
976
|
-
args.pop();
|
977
|
-
return [ this[0], name, args, do_body(body, body.scope) ];
|
978
|
-
},
|
979
|
-
"var": _vardefs,
|
980
|
-
"toplevel": _toplevel
|
981
|
-
}, function(){
|
982
|
-
return walk(ast_add_scope(ast));
|
983
|
-
});
|
984
|
-
};
|
985
|
-
|
986
|
-
function ast_squeeze(ast, options) {
|
987
|
-
options = defaults(options, {
|
988
|
-
make_seqs : true,
|
989
|
-
dead_code : true,
|
990
|
-
keep_comps : true,
|
991
|
-
no_warnings : false
|
992
|
-
});
|
993
|
-
|
994
|
-
var w = ast_walker(), walk = w.walk, scope;
|
995
|
-
|
996
|
-
function negate(c) {
|
997
|
-
var not_c = [ "unary-prefix", "!", c ];
|
998
|
-
switch (c[0]) {
|
999
|
-
case "unary-prefix":
|
1000
|
-
return c[1] == "!" && boolean_expr(c[2]) ? c[2] : not_c;
|
1001
|
-
case "seq":
|
1002
|
-
c = slice(c);
|
1003
|
-
c[c.length - 1] = negate(c[c.length - 1]);
|
1004
|
-
return c;
|
1005
|
-
case "conditional":
|
1006
|
-
return best_of(not_c, [ "conditional", c[1], negate(c[2]), negate(c[3]) ]);
|
1007
|
-
case "binary":
|
1008
|
-
var op = c[1], left = c[2], right = c[3];
|
1009
|
-
if (!options.keep_comps) switch (op) {
|
1010
|
-
case "<=" : return [ "binary", ">", left, right ];
|
1011
|
-
case "<" : return [ "binary", ">=", left, right ];
|
1012
|
-
case ">=" : return [ "binary", "<", left, right ];
|
1013
|
-
case ">" : return [ "binary", "<=", left, right ];
|
1014
|
-
}
|
1015
|
-
switch (op) {
|
1016
|
-
case "==" : return [ "binary", "!=", left, right ];
|
1017
|
-
case "!=" : return [ "binary", "==", left, right ];
|
1018
|
-
case "===" : return [ "binary", "!==", left, right ];
|
1019
|
-
case "!==" : return [ "binary", "===", left, right ];
|
1020
|
-
case "&&" : return best_of(not_c, [ "binary", "||", negate(left), negate(right) ]);
|
1021
|
-
case "||" : return best_of(not_c, [ "binary", "&&", negate(left), negate(right) ]);
|
1022
|
-
}
|
1023
|
-
break;
|
1024
|
-
}
|
1025
|
-
return not_c;
|
1026
|
-
};
|
1027
|
-
|
1028
|
-
function with_scope(s, cont) {
|
1029
|
-
var _scope = scope;
|
1030
|
-
scope = s;
|
1031
|
-
var ret = cont();
|
1032
|
-
ret.scope = s;
|
1033
|
-
scope = _scope;
|
1034
|
-
return ret;
|
1035
|
-
};
|
1036
|
-
|
1037
|
-
function rmblock(block) {
|
1038
|
-
if (block != null && block[0] == "block" && block[1]) {
|
1039
|
-
if (block[1].length == 1)
|
1040
|
-
block = block[1][0];
|
1041
|
-
else if (block[1].length == 0)
|
1042
|
-
block = [ "block" ];
|
1043
|
-
}
|
1044
|
-
return block;
|
1045
|
-
};
|
1046
|
-
|
1047
|
-
function _lambda(name, args, body) {
|
1048
|
-
var is_defun = this[0] == "defun";
|
1049
|
-
body = with_scope(body.scope, function(){
|
1050
|
-
var ret = tighten(body, "lambda");
|
1051
|
-
if (!is_defun && name && !scope.references(name))
|
1052
|
-
name = null;
|
1053
|
-
return ret;
|
1054
|
-
});
|
1055
|
-
return [ this[0], name, args, body ];
|
1056
|
-
};
|
1057
|
-
|
1058
|
-
// this function does a few things:
|
1059
|
-
// 1. discard useless blocks
|
1060
|
-
// 2. join consecutive var declarations
|
1061
|
-
// 3. remove obviously dead code
|
1062
|
-
// 4. transform consecutive statements using the comma operator
|
1063
|
-
// 5. if block_type == "lambda" and it detects constructs like if(foo) return ... - rewrite like if (!foo) { ... }
|
1064
|
-
function tighten(statements, block_type) {
|
1065
|
-
statements = MAP(statements, walk);
|
1066
|
-
|
1067
|
-
statements = statements.reduce(function(a, stat){
|
1068
|
-
if (stat[0] == "block") {
|
1069
|
-
if (stat[1]) {
|
1070
|
-
a.push.apply(a, stat[1]);
|
1071
|
-
}
|
1072
|
-
} else {
|
1073
|
-
a.push(stat);
|
1074
|
-
}
|
1075
|
-
return a;
|
1076
|
-
}, []);
|
1077
|
-
|
1078
|
-
statements = (function(a, prev){
|
1079
|
-
statements.forEach(function(cur){
|
1080
|
-
if (prev && ((cur[0] == "var" && prev[0] == "var") ||
|
1081
|
-
(cur[0] == "const" && prev[0] == "const"))) {
|
1082
|
-
prev[1] = prev[1].concat(cur[1]);
|
1083
|
-
} else {
|
1084
|
-
a.push(cur);
|
1085
|
-
prev = cur;
|
1086
|
-
}
|
1087
|
-
});
|
1088
|
-
return a;
|
1089
|
-
})([]);
|
1090
|
-
|
1091
|
-
if (options.dead_code) statements = (function(a, has_quit){
|
1092
|
-
statements.forEach(function(st){
|
1093
|
-
if (has_quit) {
|
1094
|
-
if (st[0] == "function" || st[0] == "defun") {
|
1095
|
-
a.push(st);
|
1096
|
-
}
|
1097
|
-
else if (st[0] == "var" || st[0] == "const") {
|
1098
|
-
if (!options.no_warnings)
|
1099
|
-
warn("Variables declared in unreachable code");
|
1100
|
-
st[1] = MAP(st[1], function(def){
|
1101
|
-
if (def[1] && !options.no_warnings)
|
1102
|
-
warn_unreachable([ "assign", true, [ "name", def[0] ], def[1] ]);
|
1103
|
-
return [ def[0] ];
|
1104
|
-
});
|
1105
|
-
a.push(st);
|
1106
|
-
}
|
1107
|
-
else if (!options.no_warnings)
|
1108
|
-
warn_unreachable(st);
|
1109
|
-
}
|
1110
|
-
else {
|
1111
|
-
a.push(st);
|
1112
|
-
if (member(st[0], [ "return", "throw", "break", "continue" ]))
|
1113
|
-
has_quit = true;
|
1114
|
-
}
|
1115
|
-
});
|
1116
|
-
return a;
|
1117
|
-
})([]);
|
1118
|
-
|
1119
|
-
if (options.make_seqs) statements = (function(a, prev) {
|
1120
|
-
statements.forEach(function(cur){
|
1121
|
-
if (prev && prev[0] == "stat" && cur[0] == "stat") {
|
1122
|
-
prev[1] = [ "seq", prev[1], cur[1] ];
|
1123
|
-
} else {
|
1124
|
-
a.push(cur);
|
1125
|
-
prev = cur;
|
1126
|
-
}
|
1127
|
-
});
|
1128
|
-
if (a.length >= 2
|
1129
|
-
&& a[a.length-2][0] == "stat"
|
1130
|
-
&& (a[a.length-1][0] == "return" || a[a.length-1][0] == "throw")
|
1131
|
-
&& a[a.length-1][1])
|
1132
|
-
{
|
1133
|
-
a.splice(a.length - 2, 2,
|
1134
|
-
[ a[a.length-1][0],
|
1135
|
-
[ "seq", a[a.length-2][1], a[a.length-1][1] ]]);
|
1136
|
-
}
|
1137
|
-
return a;
|
1138
|
-
})([]);
|
1139
|
-
|
1140
|
-
// this increases jQuery by 1K. Probably not such a good idea after all..
|
1141
|
-
// part of this is done in prepare_ifs anyway.
|
1142
|
-
// if (block_type == "lambda") statements = (function(i, a, stat){
|
1143
|
-
// while (i < statements.length) {
|
1144
|
-
// stat = statements[i++];
|
1145
|
-
// if (stat[0] == "if" && !stat[3]) {
|
1146
|
-
// if (stat[2][0] == "return" && stat[2][1] == null) {
|
1147
|
-
// a.push(make_if(negate(stat[1]), [ "block", statements.slice(i) ]));
|
1148
|
-
// break;
|
1149
|
-
// }
|
1150
|
-
// var last = last_stat(stat[2]);
|
1151
|
-
// if (last[0] == "return" && last[1] == null) {
|
1152
|
-
// a.push(make_if(stat[1], [ "block", stat[2][1].slice(0, -1) ], [ "block", statements.slice(i) ]));
|
1153
|
-
// break;
|
1154
|
-
// }
|
1155
|
-
// }
|
1156
|
-
// a.push(stat);
|
1157
|
-
// }
|
1158
|
-
// return a;
|
1159
|
-
// })(0, []);
|
1160
|
-
|
1161
|
-
return statements;
|
1162
|
-
};
|
1163
|
-
|
1164
|
-
function make_if(c, t, e) {
|
1165
|
-
return when_constant(c, function(ast, val){
|
1166
|
-
if (val) {
|
1167
|
-
warn_unreachable(e);
|
1168
|
-
return t;
|
1169
|
-
} else {
|
1170
|
-
warn_unreachable(t);
|
1171
|
-
return e;
|
1172
|
-
}
|
1173
|
-
}, function() {
|
1174
|
-
return make_real_if(c, t, e);
|
1175
|
-
});
|
1176
|
-
};
|
1177
|
-
|
1178
|
-
function make_real_if(c, t, e) {
|
1179
|
-
c = walk(c);
|
1180
|
-
t = walk(t);
|
1181
|
-
e = walk(e);
|
1182
|
-
|
1183
|
-
if (empty(t)) {
|
1184
|
-
c = negate(c);
|
1185
|
-
t = e;
|
1186
|
-
e = null;
|
1187
|
-
} else if (empty(e)) {
|
1188
|
-
e = null;
|
1189
|
-
} else {
|
1190
|
-
// if we have both else and then, maybe it makes sense to switch them?
|
1191
|
-
(function(){
|
1192
|
-
var a = gen_code(c);
|
1193
|
-
var n = negate(c);
|
1194
|
-
var b = gen_code(n);
|
1195
|
-
if (b.length < a.length) {
|
1196
|
-
var tmp = t;
|
1197
|
-
t = e;
|
1198
|
-
e = tmp;
|
1199
|
-
c = n;
|
1200
|
-
}
|
1201
|
-
})();
|
1202
|
-
}
|
1203
|
-
if (empty(e) && empty(t))
|
1204
|
-
return [ "stat", c ];
|
1205
|
-
var ret = [ "if", c, t, e ];
|
1206
|
-
if (t[0] == "if" && empty(t[3]) && empty(e)) {
|
1207
|
-
ret = best_of(ret, walk([ "if", [ "binary", "&&", c, t[1] ], t[2] ]));
|
1208
|
-
}
|
1209
|
-
else if (t[0] == "stat") {
|
1210
|
-
if (e) {
|
1211
|
-
if (e[0] == "stat") {
|
1212
|
-
ret = best_of(ret, [ "stat", make_conditional(c, t[1], e[1]) ]);
|
1213
|
-
}
|
1214
|
-
}
|
1215
|
-
else {
|
1216
|
-
ret = best_of(ret, [ "stat", make_conditional(c, t[1]) ]);
|
1217
|
-
}
|
1218
|
-
}
|
1219
|
-
else if (e && t[0] == e[0] && (t[0] == "return" || t[0] == "throw") && t[1] && e[1]) {
|
1220
|
-
ret = best_of(ret, [ t[0], make_conditional(c, t[1], e[1] ) ]);
|
1221
|
-
}
|
1222
|
-
else if (e && aborts(t)) {
|
1223
|
-
ret = [ [ "if", c, t ] ];
|
1224
|
-
if (e[0] == "block") {
|
1225
|
-
if (e[1]) ret = ret.concat(e[1]);
|
1226
|
-
}
|
1227
|
-
else {
|
1228
|
-
ret.push(e);
|
1229
|
-
}
|
1230
|
-
ret = walk([ "block", ret ]);
|
1231
|
-
}
|
1232
|
-
else if (t && aborts(e)) {
|
1233
|
-
ret = [ [ "if", negate(c), e ] ];
|
1234
|
-
if (t[0] == "block") {
|
1235
|
-
if (t[1]) ret = ret.concat(t[1]);
|
1236
|
-
} else {
|
1237
|
-
ret.push(t);
|
1238
|
-
}
|
1239
|
-
ret = walk([ "block", ret ]);
|
1240
|
-
}
|
1241
|
-
return ret;
|
1242
|
-
};
|
1243
|
-
|
1244
|
-
function _do_while(cond, body) {
|
1245
|
-
return when_constant(cond, function(cond, val){
|
1246
|
-
if (!val) {
|
1247
|
-
warn_unreachable(body);
|
1248
|
-
return [ "block" ];
|
1249
|
-
} else {
|
1250
|
-
return [ "for", null, null, null, walk(body) ];
|
1251
|
-
}
|
1252
|
-
});
|
1253
|
-
};
|
1254
|
-
|
1255
|
-
return w.with_walkers({
|
1256
|
-
"sub": function(expr, subscript) {
|
1257
|
-
if (subscript[0] == "string") {
|
1258
|
-
var name = subscript[1];
|
1259
|
-
if (is_identifier(name))
|
1260
|
-
return [ "dot", walk(expr), name ];
|
1261
|
-
else if (/^[1-9][0-9]*$/.test(name) || name === "0")
|
1262
|
-
return [ "sub", walk(expr), [ "num", parseInt(name, 10) ] ];
|
1263
|
-
}
|
1264
|
-
},
|
1265
|
-
"if": make_if,
|
1266
|
-
"toplevel": function(body) {
|
1267
|
-
return [ "toplevel", with_scope(this.scope, function(){
|
1268
|
-
return tighten(body);
|
1269
|
-
}) ];
|
1270
|
-
},
|
1271
|
-
"switch": function(expr, body) {
|
1272
|
-
var last = body.length - 1;
|
1273
|
-
return [ "switch", walk(expr), MAP(body, function(branch, i){
|
1274
|
-
var block = tighten(branch[1]);
|
1275
|
-
if (i == last && block.length > 0) {
|
1276
|
-
var node = block[block.length - 1];
|
1277
|
-
if (node[0] == "break" && !node[1])
|
1278
|
-
block.pop();
|
1279
|
-
}
|
1280
|
-
return [ branch[0] ? walk(branch[0]) : null, block ];
|
1281
|
-
}) ];
|
1282
|
-
},
|
1283
|
-
"function": _lambda,
|
1284
|
-
"defun": _lambda,
|
1285
|
-
"block": function(body) {
|
1286
|
-
if (body) return rmblock([ "block", tighten(body) ]);
|
1287
|
-
},
|
1288
|
-
"binary": function(op, left, right) {
|
1289
|
-
return when_constant([ "binary", op, walk(left), walk(right) ], function yes(c){
|
1290
|
-
return best_of(walk(c), this);
|
1291
|
-
}, function no() {
|
1292
|
-
return this;
|
1293
|
-
});
|
1294
|
-
},
|
1295
|
-
"conditional": function(c, t, e) {
|
1296
|
-
return make_conditional(walk(c), walk(t), walk(e));
|
1297
|
-
},
|
1298
|
-
"try": function(t, c, f) {
|
1299
|
-
return [
|
1300
|
-
"try",
|
1301
|
-
tighten(t),
|
1302
|
-
c != null ? [ c[0], tighten(c[1]) ] : null,
|
1303
|
-
f != null ? tighten(f) : null
|
1304
|
-
];
|
1305
|
-
},
|
1306
|
-
"unary-prefix": function(op, expr) {
|
1307
|
-
expr = walk(expr);
|
1308
|
-
var ret = [ "unary-prefix", op, expr ];
|
1309
|
-
if (op == "!")
|
1310
|
-
ret = best_of(ret, negate(expr));
|
1311
|
-
return when_constant(ret, function(ast, val){
|
1312
|
-
return walk(ast); // it's either true or false, so minifies to !0 or !1
|
1313
|
-
}, function() { return ret });
|
1314
|
-
},
|
1315
|
-
"name": function(name) {
|
1316
|
-
switch (name) {
|
1317
|
-
case "true": return [ "unary-prefix", "!", [ "num", 0 ]];
|
1318
|
-
case "false": return [ "unary-prefix", "!", [ "num", 1 ]];
|
1319
|
-
}
|
1320
|
-
},
|
1321
|
-
"while": _do_while
|
1322
|
-
}, function() {
|
1323
|
-
for (var i = 0; i < 2; ++i) {
|
1324
|
-
ast = prepare_ifs(ast);
|
1325
|
-
ast = ast_add_scope(ast);
|
1326
|
-
ast = walk(ast);
|
1327
|
-
}
|
1328
|
-
return ast;
|
1329
|
-
});
|
1330
|
-
};
|
1331
|
-
|
1332
|
-
/* -----[ re-generate code from the AST ]----- */
|
1333
|
-
|
1334
|
-
var DOT_CALL_NO_PARENS = jsp.array_to_hash([
|
1335
|
-
"name",
|
1336
|
-
"array",
|
1337
|
-
"object",
|
1338
|
-
"string",
|
1339
|
-
"dot",
|
1340
|
-
"sub",
|
1341
|
-
"call",
|
1342
|
-
"regexp"
|
1343
|
-
]);
|
1344
|
-
|
1345
|
-
function make_string(str, ascii_only) {
|
1346
|
-
var dq = 0, sq = 0;
|
1347
|
-
str = str.replace(/[\\\b\f\n\r\t\x22\x27\u2028\u2029]/g, function(s){
|
1348
|
-
switch (s) {
|
1349
|
-
case "\\": return "\\\\";
|
1350
|
-
case "\b": return "\\b";
|
1351
|
-
case "\f": return "\\f";
|
1352
|
-
case "\n": return "\\n";
|
1353
|
-
case "\r": return "\\r";
|
1354
|
-
case "\t": return "\\t";
|
1355
|
-
case "\u2028": return "\\u2028";
|
1356
|
-
case "\u2029": return "\\u2029";
|
1357
|
-
case '"': ++dq; return '"';
|
1358
|
-
case "'": ++sq; return "'";
|
1359
|
-
}
|
1360
|
-
return s;
|
1361
|
-
});
|
1362
|
-
if (ascii_only) str = to_ascii(str);
|
1363
|
-
if (dq > sq) return "'" + str.replace(/\x27/g, "\\'") + "'";
|
1364
|
-
else return '"' + str.replace(/\x22/g, '\\"') + '"';
|
1365
|
-
};
|
1366
|
-
|
1367
|
-
function to_ascii(str) {
|
1368
|
-
return str.replace(/[\u0080-\uffff]/g, function(ch) {
|
1369
|
-
var code = ch.charCodeAt(0).toString(16);
|
1370
|
-
while (code.length < 4) code = "0" + code;
|
1371
|
-
return "\\u" + code;
|
1372
|
-
});
|
1373
|
-
};
|
1374
|
-
|
1375
|
-
var SPLICE_NEEDS_BRACKETS = jsp.array_to_hash([ "if", "while", "do", "for", "for-in", "with" ]);
|
1376
|
-
|
1377
|
-
function gen_code(ast, options) {
|
1378
|
-
options = defaults(options, {
|
1379
|
-
debug: false,
|
1380
|
-
indent_start : 0,
|
1381
|
-
indent_level : 4,
|
1382
|
-
quote_keys : false,
|
1383
|
-
space_colon : false,
|
1384
|
-
beautify : false,
|
1385
|
-
ascii_only : false,
|
1386
|
-
inline_script: false
|
1387
|
-
});
|
1388
|
-
var beautify = !!options.beautify;
|
1389
|
-
var indentation = 0,
|
1390
|
-
newline = beautify ? "\n" : "",
|
1391
|
-
space = beautify ? " " : "";
|
1392
|
-
|
1393
|
-
function encode_string(str) {
|
1394
|
-
var ret = make_string(str, options.ascii_only);
|
1395
|
-
if (options.inline_script)
|
1396
|
-
ret = ret.replace(/<\x2fscript([>/\t\n\f\r ])/gi, "<\\/script$1");
|
1397
|
-
return ret;
|
1398
|
-
};
|
1399
|
-
|
1400
|
-
function make_name(name) {
|
1401
|
-
name = name.toString();
|
1402
|
-
if (options.ascii_only)
|
1403
|
-
name = to_ascii(name);
|
1404
|
-
return name;
|
1405
|
-
};
|
1406
|
-
|
1407
|
-
function indent(line) {
|
1408
|
-
if (line == null)
|
1409
|
-
line = "";
|
1410
|
-
if (beautify)
|
1411
|
-
line = repeat_string(" ", options.indent_start + indentation * options.indent_level) + line;
|
1412
|
-
return line;
|
1413
|
-
};
|
1414
|
-
|
1415
|
-
function with_indent(cont, incr) {
|
1416
|
-
if (incr == null) incr = 1;
|
1417
|
-
indentation += incr;
|
1418
|
-
try { return cont.apply(null, slice(arguments, 1)); }
|
1419
|
-
finally { indentation -= incr; }
|
1420
|
-
};
|
1421
|
-
|
1422
|
-
function add_spaces(a) {
|
1423
|
-
if (beautify)
|
1424
|
-
return a.join(" ");
|
1425
|
-
var b = [];
|
1426
|
-
for (var i = 0; i < a.length; ++i) {
|
1427
|
-
var next = a[i + 1];
|
1428
|
-
b.push(a[i]);
|
1429
|
-
if (next &&
|
1430
|
-
((/[a-z0-9_\x24]$/i.test(a[i].toString()) && /^[a-z0-9_\x24]/i.test(next.toString())) ||
|
1431
|
-
(/[\+\-]$/.test(a[i].toString()) && /^[\+\-]/.test(next.toString())))) {
|
1432
|
-
b.push(" ");
|
1433
|
-
}
|
1434
|
-
}
|
1435
|
-
return b.join("");
|
1436
|
-
};
|
1437
|
-
|
1438
|
-
function add_commas(a) {
|
1439
|
-
var str = a.join("," + space);
|
1440
|
-
if (options.debug) {
|
1441
|
-
// if a line contains more than one comma-separated segment, assign it the
|
1442
|
-
// original line number of the first NodeWithLine segment
|
1443
|
-
for (var i = 0, l = a.length; i < l; i ++) {
|
1444
|
-
var v = a[i];
|
1445
|
-
if (v instanceof NodeWithLine) {
|
1446
|
-
v.str = str;
|
1447
|
-
return v
|
1448
|
-
}
|
1449
|
-
}
|
1450
|
-
}
|
1451
|
-
return str;
|
1452
|
-
};
|
1453
|
-
|
1454
|
-
function parenthesize(expr) {
|
1455
|
-
var gen = make(expr);
|
1456
|
-
for (var i = 1; i < arguments.length; ++i) {
|
1457
|
-
var el = arguments[i];
|
1458
|
-
if ((el instanceof Function && el(expr)) || expr[0] == el)
|
1459
|
-
return "(" + gen + ")";
|
1460
|
-
}
|
1461
|
-
return gen;
|
1462
|
-
};
|
1463
|
-
|
1464
|
-
function best_of(a) {
|
1465
|
-
if (a.length == 1) {
|
1466
|
-
return a[0];
|
1467
|
-
}
|
1468
|
-
if (a.length == 2) {
|
1469
|
-
var b = a[1];
|
1470
|
-
a = a[0];
|
1471
|
-
return a.length <= b.length ? a : b;
|
1472
|
-
}
|
1473
|
-
return best_of([ a[0], best_of(a.slice(1)) ]);
|
1474
|
-
};
|
1475
|
-
|
1476
|
-
function needs_parens(expr) {
|
1477
|
-
if (expr[0] == "function" || expr[0] == "object") {
|
1478
|
-
// dot/call on a literal function requires the
|
1479
|
-
// function literal itself to be parenthesized
|
1480
|
-
// only if it's the first "thing" in a
|
1481
|
-
// statement. This means that the parent is
|
1482
|
-
// "stat", but it could also be a "seq" and
|
1483
|
-
// we're the first in this "seq" and the
|
1484
|
-
// parent is "stat", and so on. Messy stuff,
|
1485
|
-
// but it worths the trouble.
|
1486
|
-
var a = slice(w.stack()), self = a.pop(), p = a.pop();
|
1487
|
-
while (p) {
|
1488
|
-
if (p[0] == "stat") return true;
|
1489
|
-
if (((p[0] == "seq" || p[0] == "call" || p[0] == "dot" || p[0] == "sub" || p[0] == "conditional") && p[1] === self) ||
|
1490
|
-
((p[0] == "binary" || p[0] == "assign" || p[0] == "unary-postfix") && p[2] === self)) {
|
1491
|
-
self = p;
|
1492
|
-
p = a.pop();
|
1493
|
-
} else {
|
1494
|
-
return false;
|
1495
|
-
}
|
1496
|
-
}
|
1497
|
-
}
|
1498
|
-
return !HOP(DOT_CALL_NO_PARENS, expr[0]);
|
1499
|
-
};
|
1500
|
-
|
1501
|
-
function make_num(num) {
|
1502
|
-
var str = num.toString(10), a = [ str.replace(/^0\./, ".") ], m;
|
1503
|
-
if (Math.floor(num) === num) {
|
1504
|
-
a.push("0x" + num.toString(16).toLowerCase(), // probably pointless
|
1505
|
-
"0" + num.toString(8)); // same.
|
1506
|
-
if ((m = /^(.*?)(0+)$/.exec(num))) {
|
1507
|
-
a.push(m[1] + "e" + m[2].length);
|
1508
|
-
}
|
1509
|
-
} else if ((m = /^0?\.(0+)(.*)$/.exec(num))) {
|
1510
|
-
a.push(m[2] + "e-" + (m[1].length + m[2].length),
|
1511
|
-
str.substr(str.indexOf(".")));
|
1512
|
-
}
|
1513
|
-
var best = best_of(a);
|
1514
|
-
if (options.debug && this.start)
|
1515
|
-
return new NodeWithLine(best, this.start.line);
|
1516
|
-
return best;
|
1517
|
-
};
|
1518
|
-
|
1519
|
-
var w = ast_walker();
|
1520
|
-
var make = w.walk;
|
1521
|
-
return w.with_walkers({
|
1522
|
-
"string": encode_string,
|
1523
|
-
"num": make_num,
|
1524
|
-
"name": make_name,
|
1525
|
-
"toplevel": function(statements) {
|
1526
|
-
return make_block_statements(statements)
|
1527
|
-
.join(newline + newline);
|
1528
|
-
},
|
1529
|
-
"splice": function(statements) {
|
1530
|
-
var parent = w.parent();
|
1531
|
-
if (HOP(SPLICE_NEEDS_BRACKETS, parent)) {
|
1532
|
-
// we need block brackets in this case
|
1533
|
-
return make_block.apply(this, arguments);
|
1534
|
-
} else {
|
1535
|
-
return MAP(make_block_statements(statements, true),
|
1536
|
-
function(line, i) {
|
1537
|
-
// the first line is already indented
|
1538
|
-
return i > 0 ? indent(line) : line;
|
1539
|
-
}).join(newline);
|
1540
|
-
}
|
1541
|
-
},
|
1542
|
-
"block": make_block,
|
1543
|
-
"var": function(defs) {
|
1544
|
-
var s = "var " + add_commas(MAP(defs, make_1vardef)) + ";";
|
1545
|
-
if (options.debug) {
|
1546
|
-
// hack: we don't support mapping one optimized line to more than one
|
1547
|
-
// generated line, so in case of multiple comma-separated var definitions,
|
1548
|
-
// just take the first
|
1549
|
-
if (defs[0][1] && defs[0][1].start)
|
1550
|
-
return s + (new NodeWithLine(s, defs[0][1].start.line)).lineComment();
|
1551
|
-
}
|
1552
|
-
return s;
|
1553
|
-
},
|
1554
|
-
"const": function(defs) {
|
1555
|
-
return "const " + add_commas(MAP(defs, make_1vardef)) + ";";
|
1556
|
-
},
|
1557
|
-
"try": function(tr, ca, fi) {
|
1558
|
-
var out = [ "try", make_block(tr) ];
|
1559
|
-
if (ca) out.push("catch", "(" + ca[0] + ")", make_block(ca[1]));
|
1560
|
-
if (fi) out.push("finally", make_block(fi));
|
1561
|
-
return add_spaces(out);
|
1562
|
-
},
|
1563
|
-
"throw": function(expr) {
|
1564
|
-
return add_spaces([ "throw", make(expr) ]) + ";";
|
1565
|
-
},
|
1566
|
-
"new": function(ctor, args) {
|
1567
|
-
args = args.length > 0 ? "(" + add_commas(MAP(args, make)) + ")" : "";
|
1568
|
-
return add_spaces([ "new", parenthesize(ctor, "seq", "binary", "conditional", "assign", function(expr){
|
1569
|
-
var w = ast_walker(), has_call = {};
|
1570
|
-
try {
|
1571
|
-
w.with_walkers({
|
1572
|
-
"call": function() { throw has_call },
|
1573
|
-
"function": function() { return this }
|
1574
|
-
}, function(){
|
1575
|
-
w.walk(expr);
|
1576
|
-
});
|
1577
|
-
} catch(ex) {
|
1578
|
-
if (ex === has_call)
|
1579
|
-
return true;
|
1580
|
-
throw ex;
|
1581
|
-
}
|
1582
|
-
}) + args ]);
|
1583
|
-
},
|
1584
|
-
"switch": function(expr, body) {
|
1585
|
-
return add_spaces([ "switch", "(" + make(expr) + ")", make_switch_block(body) ]);
|
1586
|
-
},
|
1587
|
-
"break": function(label) {
|
1588
|
-
var out = "break";
|
1589
|
-
if (label != null)
|
1590
|
-
out += " " + make_name(label);
|
1591
|
-
return out + ";";
|
1592
|
-
},
|
1593
|
-
"continue": function(label) {
|
1594
|
-
var out = "continue";
|
1595
|
-
if (label != null)
|
1596
|
-
out += " " + make_name(label);
|
1597
|
-
return out + ";";
|
1598
|
-
},
|
1599
|
-
"conditional": function(co, th, el) {
|
1600
|
-
return add_spaces([ parenthesize(co, "assign", "seq", "conditional"), "?",
|
1601
|
-
parenthesize(th, "seq"), ":",
|
1602
|
-
parenthesize(el, "seq") ]);
|
1603
|
-
},
|
1604
|
-
"assign": function(op, lvalue, rvalue) {
|
1605
|
-
if (op && op !== true) op += "=";
|
1606
|
-
else op = "=";
|
1607
|
-
var s = add_spaces([ make(lvalue), op, parenthesize(rvalue, "seq") ]);
|
1608
|
-
if (options.debug && this.start)
|
1609
|
-
return new NodeWithLine(s, this.start.line);
|
1610
|
-
return s;
|
1611
|
-
},
|
1612
|
-
"dot": function(expr) {
|
1613
|
-
var out = make(expr), i = 1;
|
1614
|
-
if (expr[0] == "num") {
|
1615
|
-
if (!/\./.test(expr[1]))
|
1616
|
-
out += ".";
|
1617
|
-
} else if (needs_parens(expr))
|
1618
|
-
out = "(" + out + ")";
|
1619
|
-
while (i < arguments.length)
|
1620
|
-
out += "." + make_name(arguments[i++]);
|
1621
|
-
return out;
|
1622
|
-
},
|
1623
|
-
"call": function(func, args) {
|
1624
|
-
var f = make(func);
|
1625
|
-
if (needs_parens(func))
|
1626
|
-
f = "(" + f + ")";
|
1627
|
-
var str = f + "(" + add_commas(MAP(args, function(expr){
|
1628
|
-
return parenthesize(expr, "seq");
|
1629
|
-
})) + ")";
|
1630
|
-
if (options.debug && this.start)
|
1631
|
-
return new NodeWithLine(str, this.start.line)
|
1632
|
-
return str;
|
1633
|
-
},
|
1634
|
-
"function": make_function,
|
1635
|
-
"defun": make_function,
|
1636
|
-
"if": function(co, th, el) {
|
1637
|
-
var out = [ "if", "(" + make(co) + ")", el ? make_then(th) : make(th) ];
|
1638
|
-
if (el) {
|
1639
|
-
out.push("else", make(el));
|
1640
|
-
}
|
1641
|
-
return add_spaces(out);
|
1642
|
-
},
|
1643
|
-
"for": function(init, cond, step, block) {
|
1644
|
-
var out = [ "for" ];
|
1645
|
-
init = (init != null ? make(init) : "").replace(/;*\s*$/, ";" + space);
|
1646
|
-
cond = (cond != null ? make(cond) : "").replace(/;*\s*$/, ";" + space);
|
1647
|
-
step = (step != null ? make(step) : "").replace(/;*\s*$/, "");
|
1648
|
-
var args = init + cond + step;
|
1649
|
-
if (args == "; ; ") args = ";;";
|
1650
|
-
out.push("(" + args + ")", make(block));
|
1651
|
-
return add_spaces(out);
|
1652
|
-
},
|
1653
|
-
"for-in": function(vvar, key, hash, block) {
|
1654
|
-
return add_spaces([ "for", "(" +
|
1655
|
-
(vvar ? make(vvar).replace(/;+$/, "") : make(key)),
|
1656
|
-
"in",
|
1657
|
-
make(hash) + ")", make(block) ]);
|
1658
|
-
},
|
1659
|
-
"while": function(condition, block) {
|
1660
|
-
return add_spaces([ "while", "(" + make(condition) + ")", make(block) ]);
|
1661
|
-
},
|
1662
|
-
"do": function(condition, block) {
|
1663
|
-
return add_spaces([ "do", make(block), "while", "(" + make(condition) + ")" ]) + ";";
|
1664
|
-
},
|
1665
|
-
"return": function(expr) {
|
1666
|
-
var out = [ "return" ];
|
1667
|
-
var str = make(expr);
|
1668
|
-
if (expr != null) out.push(str);
|
1669
|
-
return add_spaces(out) + ";" + (str ? str.lineComment() : '');
|
1670
|
-
},
|
1671
|
-
"binary": function(operator, lvalue, rvalue) {
|
1672
|
-
var left = make(lvalue), right = make(rvalue);
|
1673
|
-
// XXX: I'm pretty sure other cases will bite here.
|
1674
|
-
// we need to be smarter.
|
1675
|
-
// adding parens all the time is the safest bet.
|
1676
|
-
if (member(lvalue[0], [ "assign", "conditional", "seq" ]) ||
|
1677
|
-
lvalue[0] == "binary" && PRECEDENCE[operator] > PRECEDENCE[lvalue[1]]) {
|
1678
|
-
left = "(" + left + ")";
|
1679
|
-
}
|
1680
|
-
if (member(rvalue[0], [ "assign", "conditional", "seq" ]) ||
|
1681
|
-
rvalue[0] == "binary" && PRECEDENCE[operator] >= PRECEDENCE[rvalue[1]] &&
|
1682
|
-
!(rvalue[1] == operator && member(operator, [ "&&", "||", "*" ]))) {
|
1683
|
-
right = "(" + right + ")";
|
1684
|
-
}
|
1685
|
-
else if (!beautify && options.inline_script && (operator == "<" || operator == "<<")
|
1686
|
-
&& rvalue[0] == "regexp" && /^script/i.test(rvalue[1])) {
|
1687
|
-
right = " " + right;
|
1688
|
-
}
|
1689
|
-
var str = add_spaces([ left, operator, right ]);
|
1690
|
-
if (options.debug) {
|
1691
|
-
if (this.start)
|
1692
|
-
return new NodeWithLine(str, this.start.line);
|
1693
|
-
else if (lvalue.start)
|
1694
|
-
return new NodeWithLine(str, lvalue.start.line);
|
1695
|
-
else if (rvalue.start)
|
1696
|
-
return new NodeWithLine(str, rvalue.start.line);
|
1697
|
-
}
|
1698
|
-
return str;
|
1699
|
-
},
|
1700
|
-
"unary-prefix": function(operator, expr) {
|
1701
|
-
var val = make(expr);
|
1702
|
-
if (!(expr[0] == "num" || (expr[0] == "unary-prefix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr)))
|
1703
|
-
val = "(" + val + ")";
|
1704
|
-
return operator + (jsp.is_alphanumeric_char(operator.charAt(0)) ? " " : "") + val;
|
1705
|
-
},
|
1706
|
-
"unary-postfix": function(operator, expr) {
|
1707
|
-
var val = make(expr);
|
1708
|
-
if (!(expr[0] == "num" || (expr[0] == "unary-postfix" && !HOP(OPERATORS, operator + expr[1])) || !needs_parens(expr)))
|
1709
|
-
val = "(" + val + ")";
|
1710
|
-
return val + operator;
|
1711
|
-
},
|
1712
|
-
"sub": function(expr, subscript) {
|
1713
|
-
var hash = make(expr);
|
1714
|
-
if (needs_parens(expr))
|
1715
|
-
hash = "(" + hash + ")";
|
1716
|
-
return hash + "[" + make(subscript) + "]";
|
1717
|
-
},
|
1718
|
-
"object": function(props) {
|
1719
|
-
if (props.length == 0)
|
1720
|
-
return "{}";
|
1721
|
-
return "{" + newline + with_indent(function(){
|
1722
|
-
return MAP(props, function(p){
|
1723
|
-
if (p.length == 3) {
|
1724
|
-
// getter/setter. The name is in p[0], the arg.list in p[1][2], the
|
1725
|
-
// body in p[1][3] and type ("get" / "set") in p[2].
|
1726
|
-
return indent(make_function(p[0], p[1][2], p[1][3], p[2]));
|
1727
|
-
}
|
1728
|
-
var key = p[0], val = parenthesize(p[1], "seq");
|
1729
|
-
if (options.quote_keys || p.quoted) {
|
1730
|
-
key = encode_string(key);
|
1731
|
-
} else if ((typeof key == "number" || !beautify && +key + "" == key)
|
1732
|
-
&& parseFloat(key) >= 0) {
|
1733
|
-
key = make_num(+key);
|
1734
|
-
} else if (!is_identifier(key)) {
|
1735
|
-
key = encode_string(key);
|
1736
|
-
}
|
1737
|
-
return indent(add_spaces(beautify && options.space_colon
|
1738
|
-
? [ key, ":", val ]
|
1739
|
-
: [ key + ":", val ]));
|
1740
|
-
}).join("," + newline);
|
1741
|
-
}) + newline + indent("}");
|
1742
|
-
},
|
1743
|
-
"regexp": function(rx, mods) {
|
1744
|
-
return "/" + rx + "/" + mods;
|
1745
|
-
},
|
1746
|
-
"array": function(elements) {
|
1747
|
-
if (elements.length == 0) return "[]";
|
1748
|
-
return add_spaces([ "[", add_commas(MAP(elements, function(el){
|
1749
|
-
if (!beautify && el[0] == "atom" && el[1] == "undefined") return "";
|
1750
|
-
return parenthesize(el, "seq");
|
1751
|
-
})), "]" ]);
|
1752
|
-
},
|
1753
|
-
"stat": function(stmt) {
|
1754
|
-
var str = make(stmt);
|
1755
|
-
return str.replace(/;*\s*$/, ";") + str.lineComment();
|
1756
|
-
},
|
1757
|
-
"seq": function() {
|
1758
|
-
return add_commas(MAP(slice(arguments), make));
|
1759
|
-
},
|
1760
|
-
"label": function(name, block) {
|
1761
|
-
return add_spaces([ make_name(name), ":", make(block) ]);
|
1762
|
-
},
|
1763
|
-
"with": function(expr, block) {
|
1764
|
-
return add_spaces([ "with", "(" + make(expr) + ")", make(block) ]);
|
1765
|
-
},
|
1766
|
-
"atom": function(name) {
|
1767
|
-
return make_name(name);
|
1768
|
-
}
|
1769
|
-
}, function(){ return make(ast) });
|
1770
|
-
|
1771
|
-
// The squeezer replaces "block"-s that contain only a single
|
1772
|
-
// statement with the statement itself; technically, the AST
|
1773
|
-
// is correct, but this can create problems when we output an
|
1774
|
-
// IF having an ELSE clause where the THEN clause ends in an
|
1775
|
-
// IF *without* an ELSE block (then the outer ELSE would refer
|
1776
|
-
// to the inner IF). This function checks for this case and
|
1777
|
-
// adds the block brackets if needed.
|
1778
|
-
function make_then(th) {
|
1779
|
-
if (th[0] == "do") {
|
1780
|
-
// https://github.com/mishoo/UglifyJS/issues/#issue/57
|
1781
|
-
// IE croaks with "syntax error" on code like this:
|
1782
|
-
// if (foo) do ... while(cond); else ...
|
1783
|
-
// we need block brackets around do/while
|
1784
|
-
return make_block([ th ]);
|
1785
|
-
}
|
1786
|
-
var b = th;
|
1787
|
-
while (true) {
|
1788
|
-
var type = b[0];
|
1789
|
-
if (type == "if") {
|
1790
|
-
if (!b[3])
|
1791
|
-
// no else, we must add the block
|
1792
|
-
return make([ "block", [ th ]]);
|
1793
|
-
b = b[3];
|
1794
|
-
}
|
1795
|
-
else if (type == "while" || type == "do") b = b[2];
|
1796
|
-
else if (type == "for" || type == "for-in") b = b[4];
|
1797
|
-
else break;
|
1798
|
-
}
|
1799
|
-
return make(th);
|
1800
|
-
};
|
1801
|
-
|
1802
|
-
function make_function(name, args, body, keyword) {
|
1803
|
-
var out = keyword || "function";
|
1804
|
-
if (name) {
|
1805
|
-
out += " " + make_name(name);
|
1806
|
-
}
|
1807
|
-
out += "(" + add_commas(MAP(args, make_name)) + ")";
|
1808
|
-
var result = add_spaces([ out, make_block(body) ])
|
1809
|
-
if (!name) result = "(" + result + ")";
|
1810
|
-
return result;
|
1811
|
-
};
|
1812
|
-
|
1813
|
-
function must_has_semicolon(node) {
|
1814
|
-
switch (node[0]) {
|
1815
|
-
case "with":
|
1816
|
-
case "while":
|
1817
|
-
return empty(node[2]); // `with' or `while' with empty body?
|
1818
|
-
case "for":
|
1819
|
-
case "for-in":
|
1820
|
-
return empty(node[4]); // `for' with empty body?
|
1821
|
-
case "if":
|
1822
|
-
if (empty(node[2]) && !node[3]) return true; // `if' with empty `then' and no `else'
|
1823
|
-
if (node[3]) {
|
1824
|
-
if (empty(node[3])) return true; // `else' present but empty
|
1825
|
-
return must_has_semicolon(node[3]); // dive into the `else' branch
|
1826
|
-
}
|
1827
|
-
return must_has_semicolon(node[2]); // dive into the `then' branch
|
1828
|
-
}
|
1829
|
-
};
|
1830
|
-
|
1831
|
-
function make_block_statements(statements, noindent) {
|
1832
|
-
for (var a = [], last = statements.length - 1, i = 0; i <= last; ++i) {
|
1833
|
-
var stat = statements[i];
|
1834
|
-
var code = make(stat);
|
1835
|
-
if (code != ";") {
|
1836
|
-
if (!beautify && i == last && !must_has_semicolon(stat)) {
|
1837
|
-
code = code.replace(/;+\s*$/, "");
|
1838
|
-
}
|
1839
|
-
a.push(code);
|
1840
|
-
}
|
1841
|
-
}
|
1842
|
-
return noindent ? a : MAP(a, indent);
|
1843
|
-
};
|
1844
|
-
|
1845
|
-
function make_switch_block(body) {
|
1846
|
-
var n = body.length;
|
1847
|
-
if (n == 0) return "{}";
|
1848
|
-
return "{" + newline + MAP(body, function(branch, i){
|
1849
|
-
var has_body = branch[1].length > 0, code = with_indent(function(){
|
1850
|
-
return indent(branch[0]
|
1851
|
-
? add_spaces([ "case", make(branch[0]) + ":" ])
|
1852
|
-
: "default:");
|
1853
|
-
}, 0.5) + (has_body ? newline + with_indent(function(){
|
1854
|
-
return make_block_statements(branch[1]).join(newline);
|
1855
|
-
}) : "");
|
1856
|
-
if (!beautify && has_body && i < n - 1)
|
1857
|
-
code += ";";
|
1858
|
-
return code;
|
1859
|
-
}).join(newline) + newline + indent("}");
|
1860
|
-
};
|
1861
|
-
|
1862
|
-
function make_block(statements) {
|
1863
|
-
if (!statements) return ";";
|
1864
|
-
if (statements.length == 0) return "{}";
|
1865
|
-
return "{" + newline + with_indent(function(){
|
1866
|
-
return make_block_statements(statements).join(newline);
|
1867
|
-
}) + newline + indent("}");
|
1868
|
-
};
|
1869
|
-
|
1870
|
-
function make_1vardef(def) {
|
1871
|
-
var name = def[0], val = def[1];
|
1872
|
-
if (val != null)
|
1873
|
-
name = add_spaces([ make_name(name), "=", parenthesize(val, "seq") ]);
|
1874
|
-
return name;
|
1875
|
-
};
|
1876
|
-
|
1877
|
-
};
|
1878
|
-
|
1879
|
-
function split_lines(code, max_line_length) {
|
1880
|
-
var splits = [ 0 ];
|
1881
|
-
jsp.parse(function(){
|
1882
|
-
var next_token = jsp.tokenizer(code);
|
1883
|
-
var last_split = 0;
|
1884
|
-
var prev_token;
|
1885
|
-
function current_length(tok) {
|
1886
|
-
return tok.pos - last_split;
|
1887
|
-
};
|
1888
|
-
function split_here(tok) {
|
1889
|
-
last_split = tok.pos;
|
1890
|
-
splits.push(last_split);
|
1891
|
-
};
|
1892
|
-
function custom(){
|
1893
|
-
var tok = next_token.apply(this, arguments);
|
1894
|
-
out: {
|
1895
|
-
if (prev_token) {
|
1896
|
-
if (prev_token.type == "keyword") break out;
|
1897
|
-
}
|
1898
|
-
if (current_length(tok) > max_line_length) {
|
1899
|
-
switch (tok.type) {
|
1900
|
-
case "keyword":
|
1901
|
-
case "atom":
|
1902
|
-
case "name":
|
1903
|
-
case "punc":
|
1904
|
-
split_here(tok);
|
1905
|
-
break out;
|
1906
|
-
}
|
1907
|
-
}
|
1908
|
-
}
|
1909
|
-
prev_token = tok;
|
1910
|
-
return tok;
|
1911
|
-
};
|
1912
|
-
custom.context = function() {
|
1913
|
-
return next_token.context.apply(this, arguments);
|
1914
|
-
};
|
1915
|
-
return custom;
|
1916
|
-
}());
|
1917
|
-
return splits.map(function(pos, i){
|
1918
|
-
return code.substring(pos, splits[i + 1] || code.length);
|
1919
|
-
}).join("\n");
|
1920
|
-
};
|
1921
|
-
|
1922
|
-
/* -----[ Utilities ]----- */
|
1923
|
-
|
1924
|
-
function repeat_string(str, i) {
|
1925
|
-
if (i <= 0) return "";
|
1926
|
-
if (i == 1) return str;
|
1927
|
-
var d = repeat_string(str, i >> 1);
|
1928
|
-
d += d;
|
1929
|
-
if (i & 1) d += str;
|
1930
|
-
return d;
|
1931
|
-
};
|
1932
|
-
|
1933
|
-
function defaults(args, defs) {
|
1934
|
-
var ret = {};
|
1935
|
-
if (args === true)
|
1936
|
-
args = {};
|
1937
|
-
for (var i in defs) if (HOP(defs, i)) {
|
1938
|
-
ret[i] = (args && HOP(args, i)) ? args[i] : defs[i];
|
1939
|
-
}
|
1940
|
-
return ret;
|
1941
|
-
};
|
1942
|
-
|
1943
|
-
function is_identifier(name) {
|
1944
|
-
return /^[a-z_$][a-z0-9_$]*$/i.test(name)
|
1945
|
-
&& name != "this"
|
1946
|
-
&& !HOP(jsp.KEYWORDS_ATOM, name)
|
1947
|
-
&& !HOP(jsp.RESERVED_WORDS, name)
|
1948
|
-
&& !HOP(jsp.KEYWORDS, name);
|
1949
|
-
};
|
1950
|
-
|
1951
|
-
function HOP(obj, prop) {
|
1952
|
-
return Object.prototype.hasOwnProperty.call(obj, prop);
|
1953
|
-
};
|
1954
|
-
|
1955
|
-
// some utilities
|
1956
|
-
|
1957
|
-
var MAP;
|
1958
|
-
|
1959
|
-
(function(){
|
1960
|
-
MAP = function(a, f, o) {
|
1961
|
-
var ret = [], top = [], i;
|
1962
|
-
function doit() {
|
1963
|
-
var val = f.call(o, a[i], i);
|
1964
|
-
if (val instanceof AtTop) {
|
1965
|
-
val = val.v;
|
1966
|
-
if (val instanceof Splice) {
|
1967
|
-
top.push.apply(top, val.v);
|
1968
|
-
} else {
|
1969
|
-
top.push(val);
|
1970
|
-
}
|
1971
|
-
}
|
1972
|
-
else if (val != skip) {
|
1973
|
-
if (val instanceof Splice) {
|
1974
|
-
ret.push.apply(ret, val.v);
|
1975
|
-
} else {
|
1976
|
-
ret.push(val);
|
1977
|
-
}
|
1978
|
-
}
|
1979
|
-
};
|
1980
|
-
if (a instanceof Array) for (i = 0; i < a.length; ++i) doit();
|
1981
|
-
else for (i in a) if (HOP(a, i)) doit();
|
1982
|
-
return top.concat(ret);
|
1983
|
-
};
|
1984
|
-
MAP.at_top = function(val) { return new AtTop(val) };
|
1985
|
-
MAP.splice = function(val) { return new Splice(val) };
|
1986
|
-
var skip = MAP.skip = {};
|
1987
|
-
function AtTop(val) { this.v = val };
|
1988
|
-
function Splice(val) { this.v = val };
|
1989
|
-
})();
|
1990
|
-
|
1991
|
-
/* -----[ Exports ]----- */
|
1992
|
-
|
1993
|
-
exports.ast_walker = ast_walker;
|
1994
|
-
exports.ast_mangle = ast_mangle;
|
1995
|
-
exports.ast_squeeze = ast_squeeze;
|
1996
|
-
exports.ast_lift_variables = ast_lift_variables;
|
1997
|
-
exports.gen_code = gen_code;
|
1998
|
-
exports.ast_add_scope = ast_add_scope;
|
1999
|
-
exports.set_logger = function(logger) { warn = logger };
|
2000
|
-
exports.make_string = make_string;
|
2001
|
-
exports.split_lines = split_lines;
|
2002
|
-
exports.MAP = MAP;
|
2003
|
-
|
2004
|
-
// keep this last!
|
2005
|
-
exports.ast_squeeze_more = require("./squeeze-more").ast_squeeze_more;
|