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,1677 +0,0 @@
|
|
1
|
-
/*global Module*/
|
2
|
-
/*global _malloc, _free, _memcpy*/
|
3
|
-
/*global FUNCTION_TABLE, HEAP8, HEAPU8, HEAP16, HEAPU16, HEAP32, HEAPU32*/
|
4
|
-
/*global readLatin1String*/
|
5
|
-
/*global __emval_register, _emval_handle_array, __emval_decref*/
|
6
|
-
/*global ___getTypeName*/
|
7
|
-
/*jslint sub:true*/ /* The symbols 'fromWireType' and 'toWireType' must be accessed via array notation to be closure-safe since craftInvokerFunction crafts functions as strings that can't be closured. */
|
8
|
-
var InternalError = Module['InternalError'] = extendError(Error, 'InternalError');
|
9
|
-
var BindingError = Module['BindingError'] = extendError(Error, 'BindingError');
|
10
|
-
var UnboundTypeError = Module['UnboundTypeError'] = extendError(BindingError, 'UnboundTypeError');
|
11
|
-
|
12
|
-
function throwInternalError(message) {
|
13
|
-
throw new InternalError(message);
|
14
|
-
}
|
15
|
-
|
16
|
-
function throwBindingError(message) {
|
17
|
-
throw new BindingError(message);
|
18
|
-
}
|
19
|
-
|
20
|
-
function throwUnboundTypeError(message, types) {
|
21
|
-
var unboundTypes = [];
|
22
|
-
var seen = {};
|
23
|
-
function visit(type) {
|
24
|
-
if (seen[type]) {
|
25
|
-
return;
|
26
|
-
}
|
27
|
-
if (registeredTypes[type]) {
|
28
|
-
return;
|
29
|
-
}
|
30
|
-
if (typeDependencies[type]) {
|
31
|
-
typeDependencies[type].forEach(visit);
|
32
|
-
return;
|
33
|
-
}
|
34
|
-
unboundTypes.push(type);
|
35
|
-
seen[type] = true;
|
36
|
-
}
|
37
|
-
types.forEach(visit);
|
38
|
-
|
39
|
-
throw new UnboundTypeError(message + ': ' + unboundTypes.map(getTypeName).join([', ']));
|
40
|
-
}
|
41
|
-
|
42
|
-
// Creates a function overload resolution table to the given method 'methodName' in the given prototype,
|
43
|
-
// if the overload table doesn't yet exist.
|
44
|
-
function ensureOverloadTable(proto, methodName, humanName) {
|
45
|
-
if (undefined === proto[methodName].overloadTable) {
|
46
|
-
var prevFunc = proto[methodName];
|
47
|
-
// Inject an overload resolver function that routes to the appropriate overload based on the number of arguments.
|
48
|
-
proto[methodName] = function() {
|
49
|
-
// TODO This check can be removed in -O3 level "unsafe" optimizations.
|
50
|
-
if (!proto[methodName].overloadTable.hasOwnProperty(arguments.length)) {
|
51
|
-
throwBindingError("Function '" + humanName + "' called with an invalid number of arguments (" + arguments.length + ") - expects one of (" + proto[methodName].overloadTable + ")!");
|
52
|
-
}
|
53
|
-
return proto[methodName].overloadTable[arguments.length].apply(this, arguments);
|
54
|
-
};
|
55
|
-
// Move the previous function into the overload table.
|
56
|
-
proto[methodName].overloadTable = [];
|
57
|
-
proto[methodName].overloadTable[prevFunc.argCount] = prevFunc;
|
58
|
-
}
|
59
|
-
}
|
60
|
-
|
61
|
-
/* Registers a symbol (function, class, enum, ...) as part of the Module JS object so that
|
62
|
-
hand-written code is able to access that symbol via 'Module.name'.
|
63
|
-
name: The name of the symbol that's being exposed.
|
64
|
-
value: The object itself to expose (function, class, ...)
|
65
|
-
numArguments: For functions, specifies the number of arguments the function takes in. For other types, unused and undefined.
|
66
|
-
|
67
|
-
To implement support for multiple overloads of a function, an 'overload selector' function is used. That selector function chooses
|
68
|
-
the appropriate overload to call from an function overload table. This selector function is only used if multiple overloads are
|
69
|
-
actually registered, since it carries a slight performance penalty. */
|
70
|
-
function exposePublicSymbol(name, value, numArguments) {
|
71
|
-
if (Module.hasOwnProperty(name)) {
|
72
|
-
if (undefined === numArguments || (undefined !== Module[name].overloadTable && undefined !== Module[name].overloadTable[numArguments])) {
|
73
|
-
throwBindingError("Cannot register public name '" + name + "' twice");
|
74
|
-
}
|
75
|
-
|
76
|
-
// We are exposing a function with the same name as an existing function. Create an overload table and a function selector
|
77
|
-
// that routes between the two.
|
78
|
-
ensureOverloadTable(Module, name, name);
|
79
|
-
if (Module.hasOwnProperty(numArguments)) {
|
80
|
-
throwBindingError("Cannot register multiple overloads of a function with the same number of arguments (" + numArguments + ")!");
|
81
|
-
}
|
82
|
-
// Add the new function into the overload table.
|
83
|
-
Module[name].overloadTable[numArguments] = value;
|
84
|
-
}
|
85
|
-
else {
|
86
|
-
Module[name] = value;
|
87
|
-
if (undefined !== numArguments) {
|
88
|
-
Module[name].numArguments = numArguments;
|
89
|
-
}
|
90
|
-
}
|
91
|
-
}
|
92
|
-
|
93
|
-
function replacePublicSymbol(name, value, numArguments) {
|
94
|
-
if (!Module.hasOwnProperty(name)) {
|
95
|
-
throwInternalError('Replacing nonexistant public symbol');
|
96
|
-
}
|
97
|
-
// If there's an overload table for this symbol, replace the symbol in the overload table instead.
|
98
|
-
if (undefined !== Module[name].overloadTable && undefined !== numArguments) {
|
99
|
-
Module[name].overloadTable[numArguments] = value;
|
100
|
-
}
|
101
|
-
else {
|
102
|
-
Module[name] = value;
|
103
|
-
}
|
104
|
-
}
|
105
|
-
|
106
|
-
// from https://github.com/imvu/imvujs/blob/master/src/error.js
|
107
|
-
function extendError(baseErrorType, errorName) {
|
108
|
-
var errorClass = createNamedFunction(errorName, function(message) {
|
109
|
-
this.name = errorName;
|
110
|
-
this.message = message;
|
111
|
-
|
112
|
-
var stack = (new Error(message)).stack;
|
113
|
-
if (stack !== undefined) {
|
114
|
-
this.stack = this.toString() + '\n' +
|
115
|
-
stack.replace(/^Error(:[^\n]*)?\n/, '');
|
116
|
-
}
|
117
|
-
});
|
118
|
-
errorClass.prototype = Object.create(baseErrorType.prototype);
|
119
|
-
errorClass.prototype.constructor = errorClass;
|
120
|
-
errorClass.prototype.toString = function() {
|
121
|
-
if (this.message === undefined) {
|
122
|
-
return this.name;
|
123
|
-
} else {
|
124
|
-
return this.name + ': ' + this.message;
|
125
|
-
}
|
126
|
-
};
|
127
|
-
|
128
|
-
return errorClass;
|
129
|
-
}
|
130
|
-
|
131
|
-
|
132
|
-
// from https://github.com/imvu/imvujs/blob/master/src/function.js
|
133
|
-
function createNamedFunction(name, body) {
|
134
|
-
name = makeLegalFunctionName(name);
|
135
|
-
/*jshint evil:true*/
|
136
|
-
return new Function(
|
137
|
-
"body",
|
138
|
-
"return function " + name + "() {\n" +
|
139
|
-
" \"use strict\";" +
|
140
|
-
" return body.apply(this, arguments);\n" +
|
141
|
-
"};\n"
|
142
|
-
)(body);
|
143
|
-
}
|
144
|
-
|
145
|
-
function _embind_repr(v) {
|
146
|
-
var t = typeof v;
|
147
|
-
if (t === 'object' || t === 'array' || t === 'function') {
|
148
|
-
return v.toString();
|
149
|
-
} else {
|
150
|
-
return '' + v;
|
151
|
-
}
|
152
|
-
}
|
153
|
-
|
154
|
-
// typeID -> { toWireType: ..., fromWireType: ... }
|
155
|
-
var registeredTypes = {};
|
156
|
-
|
157
|
-
// typeID -> [callback]
|
158
|
-
var awaitingDependencies = {};
|
159
|
-
|
160
|
-
// typeID -> [dependentTypes]
|
161
|
-
var typeDependencies = {};
|
162
|
-
|
163
|
-
// class typeID -> {pointerType: ..., constPointerType: ...}
|
164
|
-
var registeredPointers = {};
|
165
|
-
|
166
|
-
function registerType(rawType, registeredInstance) {
|
167
|
-
var name = registeredInstance.name;
|
168
|
-
if (!rawType) {
|
169
|
-
throwBindingError('type "' + name + '" must have a positive integer typeid pointer');
|
170
|
-
}
|
171
|
-
if (registeredTypes.hasOwnProperty(rawType)) {
|
172
|
-
throwBindingError("Cannot register type '" + name + "' twice");
|
173
|
-
}
|
174
|
-
|
175
|
-
registeredTypes[rawType] = registeredInstance;
|
176
|
-
delete typeDependencies[rawType];
|
177
|
-
|
178
|
-
if (awaitingDependencies.hasOwnProperty(rawType)) {
|
179
|
-
var callbacks = awaitingDependencies[rawType];
|
180
|
-
delete awaitingDependencies[rawType];
|
181
|
-
callbacks.forEach(function(cb) {
|
182
|
-
cb();
|
183
|
-
});
|
184
|
-
}
|
185
|
-
}
|
186
|
-
|
187
|
-
function whenDependentTypesAreResolved(myTypes, dependentTypes, getTypeConverters) {
|
188
|
-
myTypes.forEach(function(type) {
|
189
|
-
typeDependencies[type] = dependentTypes;
|
190
|
-
});
|
191
|
-
|
192
|
-
function onComplete(typeConverters) {
|
193
|
-
var myTypeConverters = getTypeConverters(typeConverters);
|
194
|
-
if (myTypeConverters.length !== myTypes.length) {
|
195
|
-
throwInternalError('Mismatched type converter count');
|
196
|
-
}
|
197
|
-
for (var i = 0; i < myTypes.length; ++i) {
|
198
|
-
registerType(myTypes[i], myTypeConverters[i]);
|
199
|
-
}
|
200
|
-
}
|
201
|
-
|
202
|
-
var typeConverters = new Array(dependentTypes.length);
|
203
|
-
var unregisteredTypes = [];
|
204
|
-
var registered = 0;
|
205
|
-
dependentTypes.forEach(function(dt, i) {
|
206
|
-
if (registeredTypes.hasOwnProperty(dt)) {
|
207
|
-
typeConverters[i] = registeredTypes[dt];
|
208
|
-
} else {
|
209
|
-
unregisteredTypes.push(dt);
|
210
|
-
if (!awaitingDependencies.hasOwnProperty(dt)) {
|
211
|
-
awaitingDependencies[dt] = [];
|
212
|
-
}
|
213
|
-
awaitingDependencies[dt].push(function() {
|
214
|
-
typeConverters[i] = registeredTypes[dt];
|
215
|
-
++registered;
|
216
|
-
if (registered === unregisteredTypes.length) {
|
217
|
-
onComplete(typeConverters);
|
218
|
-
}
|
219
|
-
});
|
220
|
-
}
|
221
|
-
});
|
222
|
-
if (0 === unregisteredTypes.length) {
|
223
|
-
onComplete(typeConverters);
|
224
|
-
}
|
225
|
-
}
|
226
|
-
|
227
|
-
var __charCodes = (function() {
|
228
|
-
var codes = new Array(256);
|
229
|
-
for (var i = 0; i < 256; ++i) {
|
230
|
-
codes[i] = String.fromCharCode(i);
|
231
|
-
}
|
232
|
-
return codes;
|
233
|
-
})();
|
234
|
-
|
235
|
-
function readLatin1String(ptr) {
|
236
|
-
var ret = "";
|
237
|
-
var c = ptr;
|
238
|
-
while (HEAPU8[c]) {
|
239
|
-
ret += __charCodes[HEAPU8[c++]];
|
240
|
-
}
|
241
|
-
return ret;
|
242
|
-
}
|
243
|
-
|
244
|
-
function getTypeName(type) {
|
245
|
-
var ptr = ___getTypeName(type);
|
246
|
-
var rv = readLatin1String(ptr);
|
247
|
-
_free(ptr);
|
248
|
-
return rv;
|
249
|
-
}
|
250
|
-
|
251
|
-
function heap32VectorToArray(count, firstElement) {
|
252
|
-
var array = [];
|
253
|
-
for (var i = 0; i < count; i++) {
|
254
|
-
array.push(HEAP32[(firstElement >> 2) + i]);
|
255
|
-
}
|
256
|
-
return array;
|
257
|
-
}
|
258
|
-
|
259
|
-
function requireRegisteredType(rawType, humanName) {
|
260
|
-
var impl = registeredTypes[rawType];
|
261
|
-
if (undefined === impl) {
|
262
|
-
throwBindingError(humanName + " has unknown type " + getTypeName(rawType));
|
263
|
-
}
|
264
|
-
return impl;
|
265
|
-
}
|
266
|
-
|
267
|
-
function __embind_register_void(rawType, name) {
|
268
|
-
name = readLatin1String(name);
|
269
|
-
registerType(rawType, {
|
270
|
-
name: name,
|
271
|
-
'fromWireType': function() {
|
272
|
-
return undefined;
|
273
|
-
},
|
274
|
-
'toWireType': function(destructors, o) {
|
275
|
-
// TODO: assert if anything else is given?
|
276
|
-
return undefined;
|
277
|
-
},
|
278
|
-
});
|
279
|
-
}
|
280
|
-
|
281
|
-
function __embind_register_bool(rawType, name, trueValue, falseValue) {
|
282
|
-
name = readLatin1String(name);
|
283
|
-
registerType(rawType, {
|
284
|
-
name: name,
|
285
|
-
'fromWireType': function(wt) {
|
286
|
-
// ambiguous emscripten ABI: sometimes return values are
|
287
|
-
// true or false, and sometimes integers (0 or 1)
|
288
|
-
return !!wt;
|
289
|
-
},
|
290
|
-
'toWireType': function(destructors, o) {
|
291
|
-
return o ? trueValue : falseValue;
|
292
|
-
},
|
293
|
-
destructorFunction: null, // This type does not need a destructor
|
294
|
-
});
|
295
|
-
}
|
296
|
-
|
297
|
-
// When converting a number from JS to C++ side, the valid range of the number is
|
298
|
-
// [minRange, maxRange], inclusive.
|
299
|
-
function __embind_register_integer(primitiveType, name, minRange, maxRange) {
|
300
|
-
name = readLatin1String(name);
|
301
|
-
if (maxRange === -1) { // LLVM doesn't have signed and unsigned 32-bit types, so u32 literals come out as 'i32 -1'. Always treat those as max u32.
|
302
|
-
maxRange = 4294967295;
|
303
|
-
}
|
304
|
-
registerType(primitiveType, {
|
305
|
-
name: name,
|
306
|
-
minRange: minRange,
|
307
|
-
maxRange: maxRange,
|
308
|
-
'fromWireType': function(value) {
|
309
|
-
return value;
|
310
|
-
},
|
311
|
-
'toWireType': function(destructors, value) {
|
312
|
-
// todo: Here we have an opportunity for -O3 level "unsafe" optimizations: we could
|
313
|
-
// avoid the following two if()s and assume value is of proper type.
|
314
|
-
if (typeof value !== "number" && typeof value !== "boolean") {
|
315
|
-
throw new TypeError('Cannot convert "' + _embind_repr(value) + '" to ' + this.name);
|
316
|
-
}
|
317
|
-
if (value < minRange || value > maxRange) {
|
318
|
-
throw new TypeError('Passing a number "' + _embind_repr(value) + '" from JS side to C/C++ side to an argument of type "' + name + '", which is outside the valid range [' + minRange + ', ' + maxRange + ']!');
|
319
|
-
}
|
320
|
-
return value | 0;
|
321
|
-
},
|
322
|
-
destructorFunction: null, // This type does not need a destructor
|
323
|
-
});
|
324
|
-
}
|
325
|
-
|
326
|
-
function __embind_register_float(rawType, name) {
|
327
|
-
name = readLatin1String(name);
|
328
|
-
registerType(rawType, {
|
329
|
-
name: name,
|
330
|
-
'fromWireType': function(value) {
|
331
|
-
return value;
|
332
|
-
},
|
333
|
-
'toWireType': function(destructors, value) {
|
334
|
-
// todo: Here we have an opportunity for -O3 level "unsafe" optimizations: we could
|
335
|
-
// avoid the following if() and assume value is of proper type.
|
336
|
-
if (typeof value !== "number" && typeof value !== "boolean") {
|
337
|
-
throw new TypeError('Cannot convert "' + _embind_repr(value) + '" to ' + this.name);
|
338
|
-
}
|
339
|
-
return value;
|
340
|
-
},
|
341
|
-
destructorFunction: null, // This type does not need a destructor
|
342
|
-
});
|
343
|
-
}
|
344
|
-
|
345
|
-
function __embind_register_std_string(rawType, name) {
|
346
|
-
name = readLatin1String(name);
|
347
|
-
registerType(rawType, {
|
348
|
-
name: name,
|
349
|
-
'fromWireType': function(value) {
|
350
|
-
var length = HEAPU32[value >> 2];
|
351
|
-
var a = new Array(length);
|
352
|
-
for (var i = 0; i < length; ++i) {
|
353
|
-
a[i] = String.fromCharCode(HEAPU8[value + 4 + i]);
|
354
|
-
}
|
355
|
-
_free(value);
|
356
|
-
return a.join('');
|
357
|
-
},
|
358
|
-
'toWireType': function(destructors, value) {
|
359
|
-
if (value instanceof ArrayBuffer) {
|
360
|
-
value = new Uint8Array(value);
|
361
|
-
}
|
362
|
-
|
363
|
-
function getTAElement(ta, index) {
|
364
|
-
return ta[index];
|
365
|
-
}
|
366
|
-
function getStringElement(string, index) {
|
367
|
-
return string.charCodeAt(index);
|
368
|
-
}
|
369
|
-
var getElement;
|
370
|
-
if (value instanceof Uint8Array) {
|
371
|
-
getElement = getTAElement;
|
372
|
-
} else if (value instanceof Int8Array) {
|
373
|
-
getElement = getTAElement;
|
374
|
-
} else if (typeof value === 'string') {
|
375
|
-
getElement = getStringElement;
|
376
|
-
} else {
|
377
|
-
throwBindingError('Cannot pass non-string to std::string');
|
378
|
-
}
|
379
|
-
|
380
|
-
// assumes 4-byte alignment
|
381
|
-
var length = value.length;
|
382
|
-
var ptr = _malloc(4 + length);
|
383
|
-
HEAPU32[ptr >> 2] = length;
|
384
|
-
for (var i = 0; i < length; ++i) {
|
385
|
-
var charCode = getElement(value, i);
|
386
|
-
if (charCode > 255) {
|
387
|
-
_free(ptr);
|
388
|
-
throwBindingError('String has UTF-16 code units that do not fit in 8 bits');
|
389
|
-
}
|
390
|
-
HEAPU8[ptr + 4 + i] = charCode;
|
391
|
-
}
|
392
|
-
if (destructors !== null) {
|
393
|
-
destructors.push(_free, ptr);
|
394
|
-
}
|
395
|
-
return ptr;
|
396
|
-
},
|
397
|
-
destructorFunction: function(ptr) { _free(ptr); },
|
398
|
-
});
|
399
|
-
}
|
400
|
-
|
401
|
-
function __embind_register_std_wstring(rawType, charSize, name) {
|
402
|
-
name = readLatin1String(name);
|
403
|
-
var HEAP, shift;
|
404
|
-
if (charSize === 2) {
|
405
|
-
HEAP = HEAPU16;
|
406
|
-
shift = 1;
|
407
|
-
} else if (charSize === 4) {
|
408
|
-
HEAP = HEAPU32;
|
409
|
-
shift = 2;
|
410
|
-
}
|
411
|
-
registerType(rawType, {
|
412
|
-
name: name,
|
413
|
-
'fromWireType': function(value) {
|
414
|
-
var length = HEAPU32[value >> 2];
|
415
|
-
var a = new Array(length);
|
416
|
-
var start = (value + 4) >> shift;
|
417
|
-
for (var i = 0; i < length; ++i) {
|
418
|
-
a[i] = String.fromCharCode(HEAP[start + i]);
|
419
|
-
}
|
420
|
-
_free(value);
|
421
|
-
return a.join('');
|
422
|
-
},
|
423
|
-
'toWireType': function(destructors, value) {
|
424
|
-
// assumes 4-byte alignment
|
425
|
-
var length = value.length;
|
426
|
-
var ptr = _malloc(4 + length * charSize);
|
427
|
-
HEAPU32[ptr >> 2] = length;
|
428
|
-
var start = (ptr + 4) >> shift;
|
429
|
-
for (var i = 0; i < length; ++i) {
|
430
|
-
HEAP[start + i] = value.charCodeAt(i);
|
431
|
-
}
|
432
|
-
if (destructors !== null) {
|
433
|
-
destructors.push(_free, ptr);
|
434
|
-
}
|
435
|
-
return ptr;
|
436
|
-
},
|
437
|
-
destructorFunction: function(ptr) { _free(ptr); },
|
438
|
-
});
|
439
|
-
}
|
440
|
-
|
441
|
-
function __embind_register_emval(rawType, name) {
|
442
|
-
name = readLatin1String(name);
|
443
|
-
registerType(rawType, {
|
444
|
-
name: name,
|
445
|
-
'fromWireType': function(handle) {
|
446
|
-
var rv = _emval_handle_array[handle].value;
|
447
|
-
__emval_decref(handle);
|
448
|
-
return rv;
|
449
|
-
},
|
450
|
-
'toWireType': function(destructors, value) {
|
451
|
-
return __emval_register(value);
|
452
|
-
},
|
453
|
-
destructorFunction: null, // This type does not need a destructor
|
454
|
-
});
|
455
|
-
}
|
456
|
-
|
457
|
-
function __embind_register_memory_view(rawType, name) {
|
458
|
-
var typeMapping = [
|
459
|
-
Int8Array,
|
460
|
-
Uint8Array,
|
461
|
-
Int16Array,
|
462
|
-
Uint16Array,
|
463
|
-
Int32Array,
|
464
|
-
Uint32Array,
|
465
|
-
Float32Array,
|
466
|
-
Float64Array,
|
467
|
-
];
|
468
|
-
|
469
|
-
name = readLatin1String(name);
|
470
|
-
registerType(rawType, {
|
471
|
-
name: name,
|
472
|
-
'fromWireType': function(handle) {
|
473
|
-
var type = HEAPU32[handle >> 2];
|
474
|
-
var size = HEAPU32[(handle >> 2) + 1]; // in elements
|
475
|
-
var data = HEAPU32[(handle >> 2) + 2]; // byte offset into emscripten heap
|
476
|
-
var TA = typeMapping[type];
|
477
|
-
return new TA(HEAP8.buffer, data, size);
|
478
|
-
},
|
479
|
-
});
|
480
|
-
}
|
481
|
-
|
482
|
-
function runDestructors(destructors) {
|
483
|
-
while (destructors.length) {
|
484
|
-
var ptr = destructors.pop();
|
485
|
-
var del = destructors.pop();
|
486
|
-
del(ptr);
|
487
|
-
}
|
488
|
-
}
|
489
|
-
|
490
|
-
// Function implementation of operator new, per
|
491
|
-
// http://www.ecma-international.org/publications/files/ECMA-ST/Ecma-262.pdf
|
492
|
-
// 13.2.2
|
493
|
-
// ES3
|
494
|
-
function new_(constructor, argumentList) {
|
495
|
-
if (!(constructor instanceof Function)) {
|
496
|
-
throw new TypeError('new_ called with constructor type ' + typeof(constructor) + " which is not a function");
|
497
|
-
}
|
498
|
-
|
499
|
-
/*
|
500
|
-
* Previously, the following line was just:
|
501
|
-
|
502
|
-
function dummy() {};
|
503
|
-
|
504
|
-
* Unfortunately, Chrome was preserving 'dummy' as the object's name, even though at creation, the 'dummy' has the
|
505
|
-
* correct constructor name. Thus, objects created with IMVU.new would show up in the debugger as 'dummy', which
|
506
|
-
* isn't very helpful. Using IMVU.createNamedFunction addresses the issue. Doublely-unfortunately, there's no way
|
507
|
-
* to write a test for this behavior. -NRD 2013.02.22
|
508
|
-
*/
|
509
|
-
var dummy = createNamedFunction(constructor.name, function(){});
|
510
|
-
dummy.prototype = constructor.prototype;
|
511
|
-
var obj = new dummy;
|
512
|
-
|
513
|
-
var r = constructor.apply(obj, argumentList);
|
514
|
-
return (r instanceof Object) ? r : obj;
|
515
|
-
}
|
516
|
-
|
517
|
-
// The path to interop from JS code to C++ code:
|
518
|
-
// (hand-written JS code) -> (autogenerated JS invoker) -> (template-generated C++ invoker) -> (target C++ function)
|
519
|
-
// craftInvokerFunction generates the JS invoker function for each function exposed to JS through embind.
|
520
|
-
function craftInvokerFunction(humanName, argTypes, classType, cppInvokerFunc, cppTargetFunc) {
|
521
|
-
// humanName: a human-readable string name for the function to be generated.
|
522
|
-
// argTypes: An array that contains the embind type objects for all types in the function signature.
|
523
|
-
// argTypes[0] is the type object for the function return value.
|
524
|
-
// argTypes[1] is the type object for function this object/class type, or null if not crafting an invoker for a class method.
|
525
|
-
// argTypes[2...] are the actual function parameters.
|
526
|
-
// classType: The embind type object for the class to be bound, or null if this is not a method of a class.
|
527
|
-
// cppInvokerFunc: JS Function object to the C++-side function that interops into C++ code.
|
528
|
-
// cppTargetFunc: Function pointer (an integer to FUNCTION_TABLE) to the target C++ function the cppInvokerFunc will end up calling.
|
529
|
-
var argCount = argTypes.length;
|
530
|
-
|
531
|
-
if (argCount < 2) {
|
532
|
-
throwBindingError("argTypes array size mismatch! Must at least get return value and 'this' types!");
|
533
|
-
}
|
534
|
-
|
535
|
-
var isClassMethodFunc = (argTypes[1] !== null && classType !== null);
|
536
|
-
|
537
|
-
if (!isClassMethodFunc && !FUNCTION_TABLE[cppTargetFunc]) {
|
538
|
-
throwBindingError('Global function '+humanName+' is not defined!');
|
539
|
-
}
|
540
|
-
|
541
|
-
// Free functions with signature "void function()" do not need an invoker that marshalls between wire types.
|
542
|
-
// TODO: This omits argument count check - enable only at -O3 or similar.
|
543
|
-
// if (ENABLE_UNSAFE_OPTS && argCount == 2 && argTypes[0].name == "void" && !isClassMethodFunc) {
|
544
|
-
// return FUNCTION_TABLE[fn];
|
545
|
-
// }
|
546
|
-
|
547
|
-
var argsList = "";
|
548
|
-
var argsListWired = "";
|
549
|
-
for(var i = 0; i < argCount-2; ++i) {
|
550
|
-
argsList += (i!==0?", ":"")+"arg"+i;
|
551
|
-
argsListWired += (i!==0?", ":"")+"arg"+i+"Wired";
|
552
|
-
}
|
553
|
-
|
554
|
-
var invokerFnBody =
|
555
|
-
"return function "+makeLegalFunctionName(humanName)+"("+argsList+") {\n" +
|
556
|
-
"if (arguments.length !== "+(argCount - 2)+") {\n" +
|
557
|
-
"throwBindingError('function "+humanName+" called with ' + arguments.length + ' arguments, expected "+(argCount - 2)+" args!');\n" +
|
558
|
-
"}\n";
|
559
|
-
|
560
|
-
// Determine if we need to use a dynamic stack to store the destructors for the function parameters.
|
561
|
-
// TODO: Remove this completely once all function invokers are being dynamically generated.
|
562
|
-
var needsDestructorStack = false;
|
563
|
-
|
564
|
-
for(var i = 1; i < argTypes.length; ++i) { // Skip return value at index 0 - it's not deleted here.
|
565
|
-
if (argTypes[i] !== null && argTypes[i].destructorFunction === undefined) { // The type does not define a destructor function - must use dynamic stack
|
566
|
-
needsDestructorStack = true;
|
567
|
-
break;
|
568
|
-
}
|
569
|
-
}
|
570
|
-
|
571
|
-
if (needsDestructorStack) {
|
572
|
-
invokerFnBody +=
|
573
|
-
"var destructors = [];\n";
|
574
|
-
}
|
575
|
-
|
576
|
-
var dtorStack = needsDestructorStack ? "destructors" : "null";
|
577
|
-
var args1 = ["throwBindingError", "classType", "invoker", "fn", "runDestructors", "retType", "classParam"];
|
578
|
-
var args2 = [throwBindingError, classType, cppInvokerFunc, cppTargetFunc, runDestructors, argTypes[0], argTypes[1]];
|
579
|
-
|
580
|
-
if (isClassMethodFunc) {
|
581
|
-
invokerFnBody += "var thisWired = classParam.toWireType("+dtorStack+", this);\n";
|
582
|
-
}
|
583
|
-
|
584
|
-
for(var i = 0; i < argCount-2; ++i) {
|
585
|
-
invokerFnBody += "var arg"+i+"Wired = argType"+i+".toWireType("+dtorStack+", arg"+i+"); // "+argTypes[i+2].name+"\n";
|
586
|
-
args1.push("argType"+i);
|
587
|
-
args2.push(argTypes[i+2]);
|
588
|
-
}
|
589
|
-
|
590
|
-
if (isClassMethodFunc) {
|
591
|
-
argsListWired = "thisWired" + (argsListWired.length > 0 ? ", " : "") + argsListWired;
|
592
|
-
}
|
593
|
-
|
594
|
-
var returns = (argTypes[0].name !== "void");
|
595
|
-
|
596
|
-
invokerFnBody +=
|
597
|
-
(returns?"var rv = ":"") + "invoker(fn"+(argsListWired.length>0?", ":"")+argsListWired+");\n";
|
598
|
-
|
599
|
-
if (needsDestructorStack) {
|
600
|
-
invokerFnBody += "runDestructors(destructors);\n";
|
601
|
-
} else {
|
602
|
-
for(var i = isClassMethodFunc?1:2; i < argTypes.length; ++i) { // Skip return value at index 0 - it's not deleted here. Also skip class type if not a method.
|
603
|
-
var paramName = (i === 1 ? "thisWired" : ("arg"+(i-2)+"Wired"));
|
604
|
-
if (argTypes[i].destructorFunction !== null) {
|
605
|
-
invokerFnBody += paramName+"_dtor("+paramName+"); // "+argTypes[i].name+"\n";
|
606
|
-
args1.push(paramName+"_dtor");
|
607
|
-
args2.push(argTypes[i].destructorFunction);
|
608
|
-
}
|
609
|
-
}
|
610
|
-
}
|
611
|
-
|
612
|
-
if (returns) {
|
613
|
-
invokerFnBody += "return retType.fromWireType(rv);\n";
|
614
|
-
}
|
615
|
-
invokerFnBody += "}\n";
|
616
|
-
|
617
|
-
args1.push(invokerFnBody);
|
618
|
-
|
619
|
-
var invokerFunction = new_(Function, args1).apply(null, args2);
|
620
|
-
return invokerFunction;
|
621
|
-
}
|
622
|
-
|
623
|
-
function __embind_register_function(name, argCount, rawArgTypesAddr, rawInvoker, fn) {
|
624
|
-
var argTypes = heap32VectorToArray(argCount, rawArgTypesAddr);
|
625
|
-
name = readLatin1String(name);
|
626
|
-
rawInvoker = FUNCTION_TABLE[rawInvoker];
|
627
|
-
|
628
|
-
exposePublicSymbol(name, function() {
|
629
|
-
throwUnboundTypeError('Cannot call ' + name + ' due to unbound types', argTypes);
|
630
|
-
}, argCount - 1);
|
631
|
-
|
632
|
-
whenDependentTypesAreResolved([], argTypes, function(argTypes) {
|
633
|
-
var invokerArgsArray = [argTypes[0] /* return value */, null /* no class 'this'*/].concat(argTypes.slice(1) /* actual params */);
|
634
|
-
replacePublicSymbol(name, craftInvokerFunction(name, invokerArgsArray, null /* no class 'this'*/, rawInvoker, fn), argCount - 1);
|
635
|
-
return [];
|
636
|
-
});
|
637
|
-
}
|
638
|
-
|
639
|
-
var tupleRegistrations = {};
|
640
|
-
|
641
|
-
function __embind_register_value_array(rawType, name, rawConstructor, rawDestructor) {
|
642
|
-
tupleRegistrations[rawType] = {
|
643
|
-
name: readLatin1String(name),
|
644
|
-
rawConstructor: FUNCTION_TABLE[rawConstructor],
|
645
|
-
rawDestructor: FUNCTION_TABLE[rawDestructor],
|
646
|
-
elements: [],
|
647
|
-
};
|
648
|
-
}
|
649
|
-
|
650
|
-
function __embind_register_value_array_element(
|
651
|
-
rawTupleType,
|
652
|
-
getterReturnType,
|
653
|
-
getter,
|
654
|
-
getterContext,
|
655
|
-
setterArgumentType,
|
656
|
-
setter,
|
657
|
-
setterContext
|
658
|
-
) {
|
659
|
-
tupleRegistrations[rawTupleType].elements.push({
|
660
|
-
getterReturnType: getterReturnType,
|
661
|
-
getter: FUNCTION_TABLE[getter],
|
662
|
-
getterContext: getterContext,
|
663
|
-
setterArgumentType: setterArgumentType,
|
664
|
-
setter: FUNCTION_TABLE[setter],
|
665
|
-
setterContext: setterContext,
|
666
|
-
});
|
667
|
-
}
|
668
|
-
|
669
|
-
function __embind_finalize_value_array(rawTupleType) {
|
670
|
-
var reg = tupleRegistrations[rawTupleType];
|
671
|
-
delete tupleRegistrations[rawTupleType];
|
672
|
-
var elements = reg.elements;
|
673
|
-
var elementsLength = elements.length;
|
674
|
-
var elementTypes = elements.map(function(elt) { return elt.getterReturnType; }).
|
675
|
-
concat(elements.map(function(elt) { return elt.setterArgumentType; }));
|
676
|
-
|
677
|
-
var rawConstructor = reg.rawConstructor;
|
678
|
-
var rawDestructor = reg.rawDestructor;
|
679
|
-
|
680
|
-
whenDependentTypesAreResolved([rawTupleType], elementTypes, function(elementTypes) {
|
681
|
-
elements.forEach(function(elt, i) {
|
682
|
-
var getterReturnType = elementTypes[i];
|
683
|
-
var getter = elt.getter;
|
684
|
-
var getterContext = elt.getterContext;
|
685
|
-
var setterArgumentType = elementTypes[i + elementsLength];
|
686
|
-
var setter = elt.setter;
|
687
|
-
var setterContext = elt.setterContext;
|
688
|
-
elt.read = function(ptr) {
|
689
|
-
return getterReturnType['fromWireType'](getter(getterContext, ptr));
|
690
|
-
};
|
691
|
-
elt.write = function(ptr, o) {
|
692
|
-
var destructors = [];
|
693
|
-
setter(setterContext, ptr, setterArgumentType['toWireType'](destructors, o));
|
694
|
-
runDestructors(destructors);
|
695
|
-
};
|
696
|
-
});
|
697
|
-
|
698
|
-
return [{
|
699
|
-
name: reg.name,
|
700
|
-
'fromWireType': function(ptr) {
|
701
|
-
var rv = new Array(elementsLength);
|
702
|
-
for (var i = 0; i < elementsLength; ++i) {
|
703
|
-
rv[i] = elements[i].read(ptr);
|
704
|
-
}
|
705
|
-
rawDestructor(ptr);
|
706
|
-
return rv;
|
707
|
-
},
|
708
|
-
'toWireType': function(destructors, o) {
|
709
|
-
if (elementsLength !== o.length) {
|
710
|
-
throw new TypeError("Incorrect number of tuple elements for " + reg.name + ": expected=" + elementsLength + ", actual=" + o.length);
|
711
|
-
}
|
712
|
-
var ptr = rawConstructor();
|
713
|
-
for (var i = 0; i < elementsLength; ++i) {
|
714
|
-
elements[i].write(ptr, o[i]);
|
715
|
-
}
|
716
|
-
if (destructors !== null) {
|
717
|
-
destructors.push(rawDestructor, ptr);
|
718
|
-
}
|
719
|
-
return ptr;
|
720
|
-
},
|
721
|
-
destructorFunction: rawDestructor,
|
722
|
-
}];
|
723
|
-
});
|
724
|
-
}
|
725
|
-
|
726
|
-
var structRegistrations = {};
|
727
|
-
|
728
|
-
function __embind_register_value_object(
|
729
|
-
rawType,
|
730
|
-
name,
|
731
|
-
rawConstructor,
|
732
|
-
rawDestructor
|
733
|
-
) {
|
734
|
-
structRegistrations[rawType] = {
|
735
|
-
name: readLatin1String(name),
|
736
|
-
rawConstructor: FUNCTION_TABLE[rawConstructor],
|
737
|
-
rawDestructor: FUNCTION_TABLE[rawDestructor],
|
738
|
-
fields: [],
|
739
|
-
};
|
740
|
-
}
|
741
|
-
|
742
|
-
function __embind_register_value_object_field(
|
743
|
-
structType,
|
744
|
-
fieldName,
|
745
|
-
getterReturnType,
|
746
|
-
getter,
|
747
|
-
getterContext,
|
748
|
-
setterArgumentType,
|
749
|
-
setter,
|
750
|
-
setterContext
|
751
|
-
) {
|
752
|
-
structRegistrations[structType].fields.push({
|
753
|
-
fieldName: readLatin1String(fieldName),
|
754
|
-
getterReturnType: getterReturnType,
|
755
|
-
getter: FUNCTION_TABLE[getter],
|
756
|
-
getterContext: getterContext,
|
757
|
-
setterArgumentType: setterArgumentType,
|
758
|
-
setter: FUNCTION_TABLE[setter],
|
759
|
-
setterContext: setterContext,
|
760
|
-
});
|
761
|
-
}
|
762
|
-
|
763
|
-
function __embind_finalize_value_object(structType) {
|
764
|
-
var reg = structRegistrations[structType];
|
765
|
-
delete structRegistrations[structType];
|
766
|
-
|
767
|
-
var rawConstructor = reg.rawConstructor;
|
768
|
-
var rawDestructor = reg.rawDestructor;
|
769
|
-
var fieldRecords = reg.fields;
|
770
|
-
var fieldTypes = fieldRecords.map(function(field) { return field.getterReturnType; }).
|
771
|
-
concat(fieldRecords.map(function(field) { return field.setterArgumentType; }));
|
772
|
-
whenDependentTypesAreResolved([structType], fieldTypes, function(fieldTypes) {
|
773
|
-
var fields = {};
|
774
|
-
fieldRecords.forEach(function(field, i) {
|
775
|
-
var fieldName = field.fieldName;
|
776
|
-
var getterReturnType = fieldTypes[i];
|
777
|
-
var getter = field.getter;
|
778
|
-
var getterContext = field.getterContext;
|
779
|
-
var setterArgumentType = fieldTypes[i + fieldRecords.length];
|
780
|
-
var setter = field.setter;
|
781
|
-
var setterContext = field.setterContext;
|
782
|
-
fields[fieldName] = {
|
783
|
-
read: function(ptr) {
|
784
|
-
return getterReturnType['fromWireType'](
|
785
|
-
getter(getterContext, ptr));
|
786
|
-
},
|
787
|
-
write: function(ptr, o) {
|
788
|
-
var destructors = [];
|
789
|
-
setter(setterContext, ptr, setterArgumentType['toWireType'](destructors, o));
|
790
|
-
runDestructors(destructors);
|
791
|
-
}
|
792
|
-
};
|
793
|
-
});
|
794
|
-
|
795
|
-
return [{
|
796
|
-
name: reg.name,
|
797
|
-
'fromWireType': function(ptr) {
|
798
|
-
var rv = {};
|
799
|
-
for (var i in fields) {
|
800
|
-
rv[i] = fields[i].read(ptr);
|
801
|
-
}
|
802
|
-
rawDestructor(ptr);
|
803
|
-
return rv;
|
804
|
-
},
|
805
|
-
'toWireType': function(destructors, o) {
|
806
|
-
// todo: Here we have an opportunity for -O3 level "unsafe" optimizations:
|
807
|
-
// assume all fields are present without checking.
|
808
|
-
for (var fieldName in fields) {
|
809
|
-
if (!(fieldName in o)) {
|
810
|
-
throw new TypeError('Missing field');
|
811
|
-
}
|
812
|
-
}
|
813
|
-
var ptr = rawConstructor();
|
814
|
-
for (fieldName in fields) {
|
815
|
-
fields[fieldName].write(ptr, o[fieldName]);
|
816
|
-
}
|
817
|
-
if (destructors !== null) {
|
818
|
-
destructors.push(rawDestructor, ptr);
|
819
|
-
}
|
820
|
-
return ptr;
|
821
|
-
},
|
822
|
-
destructorFunction: rawDestructor,
|
823
|
-
}];
|
824
|
-
});
|
825
|
-
}
|
826
|
-
|
827
|
-
var genericPointerToWireType = function(destructors, handle) {
|
828
|
-
if (handle === null) {
|
829
|
-
if (this.isReference) {
|
830
|
-
throwBindingError('null is not a valid ' + this.name);
|
831
|
-
}
|
832
|
-
|
833
|
-
if (this.isSmartPointer) {
|
834
|
-
var ptr = this.rawConstructor();
|
835
|
-
if (destructors !== null) {
|
836
|
-
destructors.push(this.rawDestructor, ptr);
|
837
|
-
}
|
838
|
-
return ptr;
|
839
|
-
} else {
|
840
|
-
return 0;
|
841
|
-
}
|
842
|
-
}
|
843
|
-
|
844
|
-
if (!handle.$$) {
|
845
|
-
throwBindingError('Cannot pass "' + _embind_repr(handle) + '" as a ' + this.name);
|
846
|
-
}
|
847
|
-
if (!handle.$$.ptr) {
|
848
|
-
throwBindingError('Cannot pass deleted object as a pointer of type ' + this.name);
|
849
|
-
}
|
850
|
-
if (!this.isConst && handle.$$.ptrType.isConst) {
|
851
|
-
throwBindingError('Cannot convert argument of type ' + (handle.$$.smartPtrType ? handle.$$.smartPtrType.name : handle.$$.ptrType.name) + ' to parameter type ' + this.name);
|
852
|
-
}
|
853
|
-
var handleClass = handle.$$.ptrType.registeredClass;
|
854
|
-
var ptr = upcastPointer(handle.$$.ptr, handleClass, this.registeredClass);
|
855
|
-
|
856
|
-
if (this.isSmartPointer) {
|
857
|
-
// TODO: this is not strictly true
|
858
|
-
// We could support BY_EMVAL conversions from raw pointers to smart pointers
|
859
|
-
// because the smart pointer can hold a reference to the handle
|
860
|
-
if (undefined === handle.$$.smartPtr) {
|
861
|
-
throwBindingError('Passing raw pointer to smart pointer is illegal');
|
862
|
-
}
|
863
|
-
|
864
|
-
switch (this.sharingPolicy) {
|
865
|
-
case 0: // NONE
|
866
|
-
// no upcasting
|
867
|
-
if (handle.$$.smartPtrType === this) {
|
868
|
-
ptr = handle.$$.smartPtr;
|
869
|
-
} else {
|
870
|
-
throwBindingError('Cannot convert argument of type ' + (handle.$$.smartPtrType ? handle.$$.smartPtrType.name : handle.$$.ptrType.name) + ' to parameter type ' + this.name);
|
871
|
-
}
|
872
|
-
break;
|
873
|
-
|
874
|
-
case 1: // INTRUSIVE
|
875
|
-
ptr = handle.$$.smartPtr;
|
876
|
-
break;
|
877
|
-
|
878
|
-
case 2: // BY_EMVAL
|
879
|
-
if (handle.$$.smartPtrType === this) {
|
880
|
-
ptr = handle.$$.smartPtr;
|
881
|
-
} else {
|
882
|
-
var clonedHandle = handle['clone']();
|
883
|
-
ptr = this.rawShare(
|
884
|
-
ptr,
|
885
|
-
__emval_register(function() {
|
886
|
-
clonedHandle['delete']();
|
887
|
-
})
|
888
|
-
);
|
889
|
-
if (destructors !== null) {
|
890
|
-
destructors.push(this.rawDestructor, ptr);
|
891
|
-
}
|
892
|
-
}
|
893
|
-
break;
|
894
|
-
|
895
|
-
default:
|
896
|
-
throwBindingError('Unsupporting sharing policy');
|
897
|
-
}
|
898
|
-
}
|
899
|
-
return ptr;
|
900
|
-
};
|
901
|
-
|
902
|
-
// If we know a pointer type is not going to have SmartPtr logic in it, we can
|
903
|
-
// special-case optimize it a bit (compare to genericPointerToWireType)
|
904
|
-
var constNoSmartPtrRawPointerToWireType = function(destructors, handle) {
|
905
|
-
if (handle === null) {
|
906
|
-
if (this.isReference) {
|
907
|
-
throwBindingError('null is not a valid ' + this.name);
|
908
|
-
}
|
909
|
-
return 0;
|
910
|
-
}
|
911
|
-
|
912
|
-
if (!handle.$$) {
|
913
|
-
throwBindingError('Cannot pass "' + _embind_repr(handle) + '" as a ' + this.name);
|
914
|
-
}
|
915
|
-
if (!handle.$$.ptr) {
|
916
|
-
throwBindingError('Cannot pass deleted object as a pointer of type ' + this.name);
|
917
|
-
}
|
918
|
-
var handleClass = handle.$$.ptrType.registeredClass;
|
919
|
-
var ptr = upcastPointer(handle.$$.ptr, handleClass, this.registeredClass);
|
920
|
-
return ptr;
|
921
|
-
};
|
922
|
-
|
923
|
-
// An optimized version for non-const method accesses - there we must additionally restrict that
|
924
|
-
// the pointer is not a const-pointer.
|
925
|
-
var nonConstNoSmartPtrRawPointerToWireType = function(destructors, handle) {
|
926
|
-
if (handle === null) {
|
927
|
-
if (this.isReference) {
|
928
|
-
throwBindingError('null is not a valid ' + this.name);
|
929
|
-
}
|
930
|
-
return 0;
|
931
|
-
}
|
932
|
-
|
933
|
-
if (!handle.$$) {
|
934
|
-
throwBindingError('Cannot pass "' + _embind_repr(handle) + '" as a ' + this.name);
|
935
|
-
}
|
936
|
-
if (!handle.$$.ptr) {
|
937
|
-
throwBindingError('Cannot pass deleted object as a pointer of type ' + this.name);
|
938
|
-
}
|
939
|
-
if (handle.$$.ptrType.isConst) {
|
940
|
-
throwBindingError('Cannot convert argument of type ' + handle.$$.ptrType.name + ' to parameter type ' + this.name);
|
941
|
-
}
|
942
|
-
var handleClass = handle.$$.ptrType.registeredClass;
|
943
|
-
var ptr = upcastPointer(handle.$$.ptr, handleClass, this.registeredClass);
|
944
|
-
return ptr;
|
945
|
-
};
|
946
|
-
|
947
|
-
function RegisteredPointer(
|
948
|
-
name,
|
949
|
-
registeredClass,
|
950
|
-
isReference,
|
951
|
-
isConst,
|
952
|
-
|
953
|
-
// smart pointer properties
|
954
|
-
isSmartPointer,
|
955
|
-
pointeeType,
|
956
|
-
sharingPolicy,
|
957
|
-
rawGetPointee,
|
958
|
-
rawConstructor,
|
959
|
-
rawShare,
|
960
|
-
rawDestructor
|
961
|
-
) {
|
962
|
-
this.name = name;
|
963
|
-
this.registeredClass = registeredClass;
|
964
|
-
this.isReference = isReference;
|
965
|
-
this.isConst = isConst;
|
966
|
-
|
967
|
-
// smart pointer properties
|
968
|
-
this.isSmartPointer = isSmartPointer;
|
969
|
-
this.pointeeType = pointeeType;
|
970
|
-
this.sharingPolicy = sharingPolicy;
|
971
|
-
this.rawGetPointee = rawGetPointee;
|
972
|
-
this.rawConstructor = rawConstructor;
|
973
|
-
this.rawShare = rawShare;
|
974
|
-
this.rawDestructor = rawDestructor;
|
975
|
-
|
976
|
-
if (!isSmartPointer && registeredClass.baseClass === undefined) {
|
977
|
-
if (isConst) {
|
978
|
-
this['toWireType'] = constNoSmartPtrRawPointerToWireType;
|
979
|
-
this.destructorFunction = null;
|
980
|
-
} else {
|
981
|
-
this['toWireType'] = nonConstNoSmartPtrRawPointerToWireType;
|
982
|
-
this.destructorFunction = null;
|
983
|
-
}
|
984
|
-
} else {
|
985
|
-
this['toWireType'] = genericPointerToWireType;
|
986
|
-
// Here we must leave this.destructorFunction undefined, since whether genericPointerToWireType returns
|
987
|
-
// a pointer that needs to be freed up is runtime-dependent, and cannot be evaluated at registration time.
|
988
|
-
// TODO: Create an alternative mechanism that allows removing the use of var destructors = []; array in
|
989
|
-
// craftInvokerFunction altogether.
|
990
|
-
}
|
991
|
-
}
|
992
|
-
|
993
|
-
RegisteredPointer.prototype.getPointee = function(ptr) {
|
994
|
-
if (this.rawGetPointee) {
|
995
|
-
ptr = this.rawGetPointee(ptr);
|
996
|
-
}
|
997
|
-
return ptr;
|
998
|
-
};
|
999
|
-
|
1000
|
-
RegisteredPointer.prototype.destructor = function(ptr) {
|
1001
|
-
if (this.rawDestructor) {
|
1002
|
-
this.rawDestructor(ptr);
|
1003
|
-
}
|
1004
|
-
};
|
1005
|
-
|
1006
|
-
RegisteredPointer.prototype['fromWireType'] = function(ptr) {
|
1007
|
-
// ptr is a raw pointer (or a raw smartpointer)
|
1008
|
-
|
1009
|
-
// rawPointer is a maybe-null raw pointer
|
1010
|
-
var rawPointer = this.getPointee(ptr);
|
1011
|
-
if (!rawPointer) {
|
1012
|
-
this.destructor(ptr);
|
1013
|
-
return null;
|
1014
|
-
}
|
1015
|
-
|
1016
|
-
function makeDefaultHandle() {
|
1017
|
-
if (this.isSmartPointer) {
|
1018
|
-
return makeClassHandle(this.registeredClass.instancePrototype, {
|
1019
|
-
ptrType: this.pointeeType,
|
1020
|
-
ptr: rawPointer,
|
1021
|
-
smartPtrType: this,
|
1022
|
-
smartPtr: ptr,
|
1023
|
-
});
|
1024
|
-
} else {
|
1025
|
-
return makeClassHandle(this.registeredClass.instancePrototype, {
|
1026
|
-
ptrType: this,
|
1027
|
-
ptr: ptr,
|
1028
|
-
});
|
1029
|
-
}
|
1030
|
-
}
|
1031
|
-
|
1032
|
-
var actualType = this.registeredClass.getActualType(rawPointer);
|
1033
|
-
var registeredPointerRecord = registeredPointers[actualType];
|
1034
|
-
if (!registeredPointerRecord) {
|
1035
|
-
return makeDefaultHandle.call(this);
|
1036
|
-
}
|
1037
|
-
|
1038
|
-
var toType;
|
1039
|
-
if (this.isConst) {
|
1040
|
-
toType = registeredPointerRecord.constPointerType;
|
1041
|
-
} else {
|
1042
|
-
toType = registeredPointerRecord.pointerType;
|
1043
|
-
}
|
1044
|
-
var dp = downcastPointer(
|
1045
|
-
rawPointer,
|
1046
|
-
this.registeredClass,
|
1047
|
-
toType.registeredClass);
|
1048
|
-
if (dp === null) {
|
1049
|
-
return makeDefaultHandle.call(this);
|
1050
|
-
}
|
1051
|
-
if (this.isSmartPointer) {
|
1052
|
-
return makeClassHandle(toType.registeredClass.instancePrototype, {
|
1053
|
-
ptrType: toType,
|
1054
|
-
ptr: dp,
|
1055
|
-
smartPtrType: this,
|
1056
|
-
smartPtr: ptr,
|
1057
|
-
});
|
1058
|
-
} else {
|
1059
|
-
return makeClassHandle(toType.registeredClass.instancePrototype, {
|
1060
|
-
ptrType: toType,
|
1061
|
-
ptr: dp,
|
1062
|
-
});
|
1063
|
-
}
|
1064
|
-
};
|
1065
|
-
|
1066
|
-
function makeClassHandle(prototype, record) {
|
1067
|
-
if (!record.ptrType || !record.ptr) {
|
1068
|
-
throwInternalError('makeClassHandle requires ptr and ptrType');
|
1069
|
-
}
|
1070
|
-
var hasSmartPtrType = !!record.smartPtrType;
|
1071
|
-
var hasSmartPtr = !!record.smartPtr;
|
1072
|
-
if (hasSmartPtrType !== hasSmartPtr) {
|
1073
|
-
throwInternalError('Both smartPtrType and smartPtr must be specified');
|
1074
|
-
}
|
1075
|
-
record.count = { value: 1 };
|
1076
|
-
return Object.create(prototype, {
|
1077
|
-
$$: {
|
1078
|
-
value: record,
|
1079
|
-
},
|
1080
|
-
});
|
1081
|
-
}
|
1082
|
-
|
1083
|
-
// root of all pointer and smart pointer handles in embind
|
1084
|
-
function ClassHandle() {
|
1085
|
-
}
|
1086
|
-
|
1087
|
-
function getInstanceTypeName(handle) {
|
1088
|
-
return handle.$$.ptrType.registeredClass.name;
|
1089
|
-
}
|
1090
|
-
|
1091
|
-
ClassHandle.prototype['isAliasOf'] = function(other) {
|
1092
|
-
if (!(this instanceof ClassHandle)) {
|
1093
|
-
return false;
|
1094
|
-
}
|
1095
|
-
if (!(other instanceof ClassHandle)) {
|
1096
|
-
return false;
|
1097
|
-
}
|
1098
|
-
|
1099
|
-
var leftClass = this.$$.ptrType.registeredClass;
|
1100
|
-
var left = this.$$.ptr;
|
1101
|
-
var rightClass = other.$$.ptrType.registeredClass;
|
1102
|
-
var right = other.$$.ptr;
|
1103
|
-
|
1104
|
-
while (leftClass.baseClass) {
|
1105
|
-
left = leftClass.upcast(left);
|
1106
|
-
leftClass = leftClass.baseClass;
|
1107
|
-
}
|
1108
|
-
|
1109
|
-
while (rightClass.baseClass) {
|
1110
|
-
right = rightClass.upcast(right);
|
1111
|
-
rightClass = rightClass.baseClass;
|
1112
|
-
}
|
1113
|
-
|
1114
|
-
return leftClass === rightClass && left === right;
|
1115
|
-
};
|
1116
|
-
|
1117
|
-
function throwInstanceAlreadyDeleted(obj) {
|
1118
|
-
throwBindingError(getInstanceTypeName(obj) + ' instance already deleted');
|
1119
|
-
}
|
1120
|
-
|
1121
|
-
ClassHandle.prototype['clone'] = function() {
|
1122
|
-
if (!this.$$.ptr) {
|
1123
|
-
throwInstanceAlreadyDeleted(this);
|
1124
|
-
}
|
1125
|
-
|
1126
|
-
var clone = Object.create(Object.getPrototypeOf(this), {
|
1127
|
-
$$: {
|
1128
|
-
value: shallowCopy(this.$$),
|
1129
|
-
}
|
1130
|
-
});
|
1131
|
-
|
1132
|
-
clone.$$.count.value += 1;
|
1133
|
-
return clone;
|
1134
|
-
};
|
1135
|
-
|
1136
|
-
function runDestructor(handle) {
|
1137
|
-
var $$ = handle.$$;
|
1138
|
-
if ($$.smartPtr) {
|
1139
|
-
$$.smartPtrType.rawDestructor($$.smartPtr);
|
1140
|
-
} else {
|
1141
|
-
$$.ptrType.registeredClass.rawDestructor($$.ptr);
|
1142
|
-
}
|
1143
|
-
}
|
1144
|
-
|
1145
|
-
ClassHandle.prototype['delete'] = function ClassHandle_delete() {
|
1146
|
-
if (!this.$$.ptr) {
|
1147
|
-
throwInstanceAlreadyDeleted(this);
|
1148
|
-
}
|
1149
|
-
if (this.$$.deleteScheduled) {
|
1150
|
-
throwBindingError('Object already scheduled for deletion');
|
1151
|
-
}
|
1152
|
-
|
1153
|
-
this.$$.count.value -= 1;
|
1154
|
-
if (0 === this.$$.count.value) {
|
1155
|
-
runDestructor(this);
|
1156
|
-
}
|
1157
|
-
this.$$.smartPtr = undefined;
|
1158
|
-
this.$$.ptr = undefined;
|
1159
|
-
};
|
1160
|
-
|
1161
|
-
var deletionQueue = [];
|
1162
|
-
|
1163
|
-
ClassHandle.prototype['isDeleted'] = function isDeleted() {
|
1164
|
-
return !this.$$.ptr;
|
1165
|
-
};
|
1166
|
-
|
1167
|
-
ClassHandle.prototype['deleteLater'] = function deleteLater() {
|
1168
|
-
if (!this.$$.ptr) {
|
1169
|
-
throwInstanceAlreadyDeleted(this);
|
1170
|
-
}
|
1171
|
-
if (this.$$.deleteScheduled) {
|
1172
|
-
throwBindingError('Object already scheduled for deletion');
|
1173
|
-
}
|
1174
|
-
deletionQueue.push(this);
|
1175
|
-
if (deletionQueue.length === 1 && delayFunction) {
|
1176
|
-
delayFunction(flushPendingDeletes);
|
1177
|
-
}
|
1178
|
-
this.$$.deleteScheduled = true;
|
1179
|
-
return this;
|
1180
|
-
};
|
1181
|
-
|
1182
|
-
function flushPendingDeletes() {
|
1183
|
-
while (deletionQueue.length) {
|
1184
|
-
var obj = deletionQueue.pop();
|
1185
|
-
obj.$$.deleteScheduled = false;
|
1186
|
-
obj['delete']();
|
1187
|
-
}
|
1188
|
-
}
|
1189
|
-
Module['flushPendingDeletes'] = flushPendingDeletes;
|
1190
|
-
|
1191
|
-
var delayFunction;
|
1192
|
-
Module['setDelayFunction'] = function setDelayFunction(fn) {
|
1193
|
-
delayFunction = fn;
|
1194
|
-
if (deletionQueue.length && delayFunction) {
|
1195
|
-
delayFunction(flushPendingDeletes);
|
1196
|
-
}
|
1197
|
-
};
|
1198
|
-
|
1199
|
-
function RegisteredClass(
|
1200
|
-
name,
|
1201
|
-
constructor,
|
1202
|
-
instancePrototype,
|
1203
|
-
rawDestructor,
|
1204
|
-
baseClass,
|
1205
|
-
getActualType,
|
1206
|
-
upcast,
|
1207
|
-
downcast
|
1208
|
-
) {
|
1209
|
-
this.name = name;
|
1210
|
-
this.constructor = constructor;
|
1211
|
-
this.instancePrototype = instancePrototype;
|
1212
|
-
this.rawDestructor = rawDestructor;
|
1213
|
-
this.baseClass = baseClass;
|
1214
|
-
this.getActualType = getActualType;
|
1215
|
-
this.upcast = upcast;
|
1216
|
-
this.downcast = downcast;
|
1217
|
-
}
|
1218
|
-
|
1219
|
-
function shallowCopy(o) {
|
1220
|
-
var rv = {};
|
1221
|
-
for (var k in o) {
|
1222
|
-
rv[k] = o[k];
|
1223
|
-
}
|
1224
|
-
return rv;
|
1225
|
-
}
|
1226
|
-
|
1227
|
-
function __embind_register_class(
|
1228
|
-
rawType,
|
1229
|
-
rawPointerType,
|
1230
|
-
rawConstPointerType,
|
1231
|
-
baseClassRawType,
|
1232
|
-
getActualType,
|
1233
|
-
upcast,
|
1234
|
-
downcast,
|
1235
|
-
name,
|
1236
|
-
rawDestructor
|
1237
|
-
) {
|
1238
|
-
name = readLatin1String(name);
|
1239
|
-
rawDestructor = FUNCTION_TABLE[rawDestructor];
|
1240
|
-
getActualType = FUNCTION_TABLE[getActualType];
|
1241
|
-
upcast = FUNCTION_TABLE[upcast];
|
1242
|
-
downcast = FUNCTION_TABLE[downcast];
|
1243
|
-
var legalFunctionName = makeLegalFunctionName(name);
|
1244
|
-
|
1245
|
-
exposePublicSymbol(legalFunctionName, function() {
|
1246
|
-
// this code cannot run if baseClassRawType is zero
|
1247
|
-
throwUnboundTypeError('Cannot construct ' + name + ' due to unbound types', [baseClassRawType]);
|
1248
|
-
});
|
1249
|
-
|
1250
|
-
whenDependentTypesAreResolved(
|
1251
|
-
[rawType, rawPointerType, rawConstPointerType],
|
1252
|
-
baseClassRawType ? [baseClassRawType] : [],
|
1253
|
-
function(base) {
|
1254
|
-
base = base[0];
|
1255
|
-
|
1256
|
-
var baseClass;
|
1257
|
-
var basePrototype;
|
1258
|
-
if (baseClassRawType) {
|
1259
|
-
baseClass = base.registeredClass;
|
1260
|
-
basePrototype = baseClass.instancePrototype;
|
1261
|
-
} else {
|
1262
|
-
basePrototype = ClassHandle.prototype;
|
1263
|
-
}
|
1264
|
-
|
1265
|
-
var constructor = createNamedFunction(legalFunctionName, function() {
|
1266
|
-
if (Object.getPrototypeOf(this) !== instancePrototype) {
|
1267
|
-
throw new BindingError("Use 'new' to construct " + name);
|
1268
|
-
}
|
1269
|
-
if (undefined === registeredClass.constructor_body) {
|
1270
|
-
throw new BindingError(name + " has no accessible constructor");
|
1271
|
-
}
|
1272
|
-
var body = registeredClass.constructor_body[arguments.length];
|
1273
|
-
if (undefined === body) {
|
1274
|
-
throw new BindingError("Tried to invoke ctor of " + name + " with invalid number of parameters (" + arguments.length + ") - expected (" + Object.keys(registeredClass.constructor_body).toString() + ") parameters instead!");
|
1275
|
-
}
|
1276
|
-
return body.apply(this, arguments);
|
1277
|
-
});
|
1278
|
-
|
1279
|
-
var instancePrototype = Object.create(basePrototype, {
|
1280
|
-
constructor: { value: constructor },
|
1281
|
-
});
|
1282
|
-
|
1283
|
-
constructor.prototype = instancePrototype;
|
1284
|
-
|
1285
|
-
var registeredClass = new RegisteredClass(
|
1286
|
-
name,
|
1287
|
-
constructor,
|
1288
|
-
instancePrototype,
|
1289
|
-
rawDestructor,
|
1290
|
-
baseClass,
|
1291
|
-
getActualType,
|
1292
|
-
upcast,
|
1293
|
-
downcast);
|
1294
|
-
|
1295
|
-
var referenceConverter = new RegisteredPointer(
|
1296
|
-
name,
|
1297
|
-
registeredClass,
|
1298
|
-
true,
|
1299
|
-
false,
|
1300
|
-
false);
|
1301
|
-
|
1302
|
-
var pointerConverter = new RegisteredPointer(
|
1303
|
-
name + '*',
|
1304
|
-
registeredClass,
|
1305
|
-
false,
|
1306
|
-
false,
|
1307
|
-
false);
|
1308
|
-
|
1309
|
-
var constPointerConverter = new RegisteredPointer(
|
1310
|
-
name + ' const*',
|
1311
|
-
registeredClass,
|
1312
|
-
false,
|
1313
|
-
true,
|
1314
|
-
false);
|
1315
|
-
|
1316
|
-
registeredPointers[rawType] = {
|
1317
|
-
pointerType: pointerConverter,
|
1318
|
-
constPointerType: constPointerConverter
|
1319
|
-
};
|
1320
|
-
|
1321
|
-
replacePublicSymbol(legalFunctionName, constructor);
|
1322
|
-
|
1323
|
-
return [referenceConverter, pointerConverter, constPointerConverter];
|
1324
|
-
}
|
1325
|
-
);
|
1326
|
-
}
|
1327
|
-
|
1328
|
-
function __embind_register_class_constructor(
|
1329
|
-
rawClassType,
|
1330
|
-
argCount,
|
1331
|
-
rawArgTypesAddr,
|
1332
|
-
invoker,
|
1333
|
-
rawConstructor
|
1334
|
-
) {
|
1335
|
-
var rawArgTypes = heap32VectorToArray(argCount, rawArgTypesAddr);
|
1336
|
-
invoker = FUNCTION_TABLE[invoker];
|
1337
|
-
|
1338
|
-
whenDependentTypesAreResolved([], [rawClassType], function(classType) {
|
1339
|
-
classType = classType[0];
|
1340
|
-
var humanName = 'constructor ' + classType.name;
|
1341
|
-
|
1342
|
-
if (undefined === classType.registeredClass.constructor_body) {
|
1343
|
-
classType.registeredClass.constructor_body = [];
|
1344
|
-
}
|
1345
|
-
if (undefined !== classType.registeredClass.constructor_body[argCount - 1]) {
|
1346
|
-
throw new BindingError("Cannot register multiple constructors with identical number of parameters (" + (argCount-1) + ") for class '" + classType.name + "'! Overload resolution is currently only performed using the parameter count, not actual type info!");
|
1347
|
-
}
|
1348
|
-
classType.registeredClass.constructor_body[argCount - 1] = function() {
|
1349
|
-
throwUnboundTypeError('Cannot construct ' + classType.name + ' due to unbound types', rawArgTypes);
|
1350
|
-
};
|
1351
|
-
|
1352
|
-
whenDependentTypesAreResolved([], rawArgTypes, function(argTypes) {
|
1353
|
-
classType.registeredClass.constructor_body[argCount - 1] = function() {
|
1354
|
-
if (arguments.length !== argCount - 1) {
|
1355
|
-
throwBindingError(humanName + ' called with ' + arguments.length + ' arguments, expected ' + (argCount-1));
|
1356
|
-
}
|
1357
|
-
var destructors = [];
|
1358
|
-
var args = new Array(argCount);
|
1359
|
-
args[0] = rawConstructor;
|
1360
|
-
for (var i = 1; i < argCount; ++i) {
|
1361
|
-
args[i] = argTypes[i]['toWireType'](destructors, arguments[i - 1]);
|
1362
|
-
}
|
1363
|
-
|
1364
|
-
var ptr = invoker.apply(null, args);
|
1365
|
-
runDestructors(destructors);
|
1366
|
-
|
1367
|
-
return argTypes[0]['fromWireType'](ptr);
|
1368
|
-
};
|
1369
|
-
return [];
|
1370
|
-
});
|
1371
|
-
return [];
|
1372
|
-
});
|
1373
|
-
}
|
1374
|
-
|
1375
|
-
function downcastPointer(ptr, ptrClass, desiredClass) {
|
1376
|
-
if (ptrClass === desiredClass) {
|
1377
|
-
return ptr;
|
1378
|
-
}
|
1379
|
-
if (undefined === desiredClass.baseClass) {
|
1380
|
-
return null; // no conversion
|
1381
|
-
}
|
1382
|
-
// O(depth) stack space used
|
1383
|
-
return desiredClass.downcast(
|
1384
|
-
downcastPointer(ptr, ptrClass, desiredClass.baseClass));
|
1385
|
-
}
|
1386
|
-
|
1387
|
-
function upcastPointer(ptr, ptrClass, desiredClass) {
|
1388
|
-
while (ptrClass !== desiredClass) {
|
1389
|
-
if (!ptrClass.upcast) {
|
1390
|
-
throwBindingError("Expected null or instance of " + desiredClass.name + ", got an instance of " + ptrClass.name);
|
1391
|
-
}
|
1392
|
-
ptr = ptrClass.upcast(ptr);
|
1393
|
-
ptrClass = ptrClass.baseClass;
|
1394
|
-
}
|
1395
|
-
return ptr;
|
1396
|
-
}
|
1397
|
-
|
1398
|
-
function validateThis(this_, classType, humanName) {
|
1399
|
-
if (!(this_ instanceof Object)) {
|
1400
|
-
throwBindingError(humanName + ' with invalid "this": ' + this_);
|
1401
|
-
}
|
1402
|
-
if (!(this_ instanceof classType.registeredClass.constructor)) {
|
1403
|
-
throwBindingError(humanName + ' incompatible with "this" of type ' + this_.constructor.name);
|
1404
|
-
}
|
1405
|
-
if (!this_.$$.ptr) {
|
1406
|
-
throwBindingError('cannot call emscripten binding method ' + humanName + ' on deleted object');
|
1407
|
-
}
|
1408
|
-
|
1409
|
-
// todo: kill this
|
1410
|
-
return upcastPointer(
|
1411
|
-
this_.$$.ptr,
|
1412
|
-
this_.$$.ptrType.registeredClass,
|
1413
|
-
classType.registeredClass);
|
1414
|
-
}
|
1415
|
-
|
1416
|
-
function __embind_register_class_function(
|
1417
|
-
rawClassType,
|
1418
|
-
methodName,
|
1419
|
-
argCount,
|
1420
|
-
rawArgTypesAddr, // [ReturnType, ThisType, Args...]
|
1421
|
-
rawInvoker,
|
1422
|
-
context
|
1423
|
-
) {
|
1424
|
-
var rawArgTypes = heap32VectorToArray(argCount, rawArgTypesAddr);
|
1425
|
-
methodName = readLatin1String(methodName);
|
1426
|
-
rawInvoker = FUNCTION_TABLE[rawInvoker];
|
1427
|
-
|
1428
|
-
whenDependentTypesAreResolved([], [rawClassType], function(classType) {
|
1429
|
-
classType = classType[0];
|
1430
|
-
var humanName = classType.name + '.' + methodName;
|
1431
|
-
|
1432
|
-
var unboundTypesHandler = function() {
|
1433
|
-
throwUnboundTypeError('Cannot call ' + humanName + ' due to unbound types', rawArgTypes);
|
1434
|
-
};
|
1435
|
-
|
1436
|
-
var proto = classType.registeredClass.instancePrototype;
|
1437
|
-
var method = proto[methodName];
|
1438
|
-
if (undefined === method || (undefined === method.overloadTable && method.className !== classType.name && method.argCount === argCount-2)) {
|
1439
|
-
// This is the first overload to be registered, OR we are replacing a function in the base class with a function in the derived class.
|
1440
|
-
unboundTypesHandler.argCount = argCount-2;
|
1441
|
-
unboundTypesHandler.className = classType.name;
|
1442
|
-
proto[methodName] = unboundTypesHandler;
|
1443
|
-
} else {
|
1444
|
-
// There was an existing function with the same name registered. Set up a function overload routing table.
|
1445
|
-
ensureOverloadTable(proto, methodName, humanName);
|
1446
|
-
proto[methodName].overloadTable[argCount-2] = unboundTypesHandler;
|
1447
|
-
}
|
1448
|
-
|
1449
|
-
whenDependentTypesAreResolved([], rawArgTypes, function(argTypes) {
|
1450
|
-
|
1451
|
-
var memberFunction = craftInvokerFunction(humanName, argTypes, classType, rawInvoker, context);
|
1452
|
-
|
1453
|
-
// Replace the initial unbound-handler-stub function with the appropriate member function, now that all types
|
1454
|
-
// are resolved. If multiple overloads are registered for this function, the function goes into an overload table.
|
1455
|
-
if (undefined === proto[methodName].overloadTable) {
|
1456
|
-
proto[methodName] = memberFunction;
|
1457
|
-
} else {
|
1458
|
-
proto[methodName].overloadTable[argCount-2] = memberFunction;
|
1459
|
-
}
|
1460
|
-
|
1461
|
-
return [];
|
1462
|
-
});
|
1463
|
-
return [];
|
1464
|
-
});
|
1465
|
-
}
|
1466
|
-
|
1467
|
-
function __embind_register_class_class_function(
|
1468
|
-
rawClassType,
|
1469
|
-
methodName,
|
1470
|
-
argCount,
|
1471
|
-
rawArgTypesAddr,
|
1472
|
-
rawInvoker,
|
1473
|
-
fn
|
1474
|
-
) {
|
1475
|
-
var rawArgTypes = heap32VectorToArray(argCount, rawArgTypesAddr);
|
1476
|
-
methodName = readLatin1String(methodName);
|
1477
|
-
rawInvoker = FUNCTION_TABLE[rawInvoker];
|
1478
|
-
whenDependentTypesAreResolved([], [rawClassType], function(classType) {
|
1479
|
-
classType = classType[0];
|
1480
|
-
var humanName = classType.name + '.' + methodName;
|
1481
|
-
|
1482
|
-
var unboundTypesHandler = function() {
|
1483
|
-
throwUnboundTypeError('Cannot call ' + humanName + ' due to unbound types', rawArgTypes);
|
1484
|
-
};
|
1485
|
-
|
1486
|
-
var proto = classType.registeredClass.constructor;
|
1487
|
-
if (undefined === proto[methodName]) {
|
1488
|
-
// This is the first function to be registered with this name.
|
1489
|
-
unboundTypesHandler.argCount = argCount-1;
|
1490
|
-
proto[methodName] = unboundTypesHandler;
|
1491
|
-
} else {
|
1492
|
-
// There was an existing function with the same name registered. Set up a function overload routing table.
|
1493
|
-
ensureOverloadTable(proto, methodName, humanName);
|
1494
|
-
proto[methodName].overloadTable[argCount-1] = unboundTypesHandler;
|
1495
|
-
}
|
1496
|
-
|
1497
|
-
whenDependentTypesAreResolved([], rawArgTypes, function(argTypes) {
|
1498
|
-
// Replace the initial unbound-types-handler stub with the proper function. If multiple overloads are registered,
|
1499
|
-
// the function handlers go into an overload table.
|
1500
|
-
var invokerArgsArray = [argTypes[0] /* return value */, null /* no class 'this'*/].concat(argTypes.slice(1) /* actual params */);
|
1501
|
-
var func = craftInvokerFunction(humanName, invokerArgsArray, null /* no class 'this'*/, rawInvoker, fn);
|
1502
|
-
if (undefined === proto[methodName].overloadTable) {
|
1503
|
-
proto[methodName] = func;
|
1504
|
-
} else {
|
1505
|
-
proto[methodName].overloadTable[argCount-1] = func;
|
1506
|
-
}
|
1507
|
-
return [];
|
1508
|
-
});
|
1509
|
-
return [];
|
1510
|
-
});
|
1511
|
-
}
|
1512
|
-
|
1513
|
-
function __embind_register_class_property(
|
1514
|
-
classType,
|
1515
|
-
fieldName,
|
1516
|
-
getterReturnType,
|
1517
|
-
getter,
|
1518
|
-
getterContext,
|
1519
|
-
setterArgumentType,
|
1520
|
-
setter,
|
1521
|
-
setterContext
|
1522
|
-
) {
|
1523
|
-
fieldName = readLatin1String(fieldName);
|
1524
|
-
getter = FUNCTION_TABLE[getter];
|
1525
|
-
|
1526
|
-
whenDependentTypesAreResolved([], [classType], function(classType) {
|
1527
|
-
classType = classType[0];
|
1528
|
-
var humanName = classType.name + '.' + fieldName;
|
1529
|
-
var desc = {
|
1530
|
-
get: function() {
|
1531
|
-
throwUnboundTypeError('Cannot access ' + humanName + ' due to unbound types', [getterReturnType, setterArgumentType]);
|
1532
|
-
},
|
1533
|
-
enumerable: true,
|
1534
|
-
configurable: true
|
1535
|
-
};
|
1536
|
-
if (setter) {
|
1537
|
-
desc.set = function() {
|
1538
|
-
throwUnboundTypeError('Cannot access ' + humanName + ' due to unbound types', [getterReturnType, setterArgumentType]);
|
1539
|
-
};
|
1540
|
-
} else {
|
1541
|
-
desc.set = function(v) {
|
1542
|
-
throwBindingError(humanName + ' is a read-only property');
|
1543
|
-
};
|
1544
|
-
}
|
1545
|
-
|
1546
|
-
Object.defineProperty(classType.registeredClass.instancePrototype, fieldName, desc);
|
1547
|
-
|
1548
|
-
whenDependentTypesAreResolved(
|
1549
|
-
[],
|
1550
|
-
(setter ? [getterReturnType, setterArgumentType] : [getterReturnType]),
|
1551
|
-
function(types) {
|
1552
|
-
var getterReturnType = types[0];
|
1553
|
-
var desc = {
|
1554
|
-
get: function() {
|
1555
|
-
var ptr = validateThis(this, classType, humanName + ' getter');
|
1556
|
-
return getterReturnType['fromWireType'](getter(getterContext, ptr));
|
1557
|
-
},
|
1558
|
-
enumerable: true
|
1559
|
-
};
|
1560
|
-
|
1561
|
-
if (setter) {
|
1562
|
-
setter = FUNCTION_TABLE[setter];
|
1563
|
-
var setterArgumentType = types[1];
|
1564
|
-
desc.set = function(v) {
|
1565
|
-
var ptr = validateThis(this, classType, humanName + ' setter');
|
1566
|
-
var destructors = [];
|
1567
|
-
setter(setterContext, ptr, setterArgumentType['toWireType'](destructors, v));
|
1568
|
-
runDestructors(destructors);
|
1569
|
-
};
|
1570
|
-
}
|
1571
|
-
|
1572
|
-
Object.defineProperty(classType.registeredClass.instancePrototype, fieldName, desc);
|
1573
|
-
return [];
|
1574
|
-
});
|
1575
|
-
|
1576
|
-
return [];
|
1577
|
-
});
|
1578
|
-
}
|
1579
|
-
|
1580
|
-
var char_0 = '0'.charCodeAt(0);
|
1581
|
-
var char_9 = '9'.charCodeAt(0);
|
1582
|
-
function makeLegalFunctionName(name) {
|
1583
|
-
name = name.replace(/[^a-zA-Z0-9_]/g, '$');
|
1584
|
-
var f = name.charCodeAt(0);
|
1585
|
-
if (f >= char_0 && f <= char_9) {
|
1586
|
-
return '_' + name;
|
1587
|
-
} else {
|
1588
|
-
return name;
|
1589
|
-
}
|
1590
|
-
}
|
1591
|
-
|
1592
|
-
function __embind_register_smart_ptr(
|
1593
|
-
rawType,
|
1594
|
-
rawPointeeType,
|
1595
|
-
name,
|
1596
|
-
sharingPolicy,
|
1597
|
-
rawGetPointee,
|
1598
|
-
rawConstructor,
|
1599
|
-
rawShare,
|
1600
|
-
rawDestructor
|
1601
|
-
) {
|
1602
|
-
name = readLatin1String(name);
|
1603
|
-
rawGetPointee = FUNCTION_TABLE[rawGetPointee];
|
1604
|
-
rawConstructor = FUNCTION_TABLE[rawConstructor];
|
1605
|
-
rawShare = FUNCTION_TABLE[rawShare];
|
1606
|
-
rawDestructor = FUNCTION_TABLE[rawDestructor];
|
1607
|
-
|
1608
|
-
whenDependentTypesAreResolved([rawType], [rawPointeeType], function(pointeeType) {
|
1609
|
-
pointeeType = pointeeType[0];
|
1610
|
-
|
1611
|
-
var registeredPointer = new RegisteredPointer(
|
1612
|
-
name,
|
1613
|
-
pointeeType.registeredClass,
|
1614
|
-
false,
|
1615
|
-
false,
|
1616
|
-
// smart pointer properties
|
1617
|
-
true,
|
1618
|
-
pointeeType,
|
1619
|
-
sharingPolicy,
|
1620
|
-
rawGetPointee,
|
1621
|
-
rawConstructor,
|
1622
|
-
rawShare,
|
1623
|
-
rawDestructor);
|
1624
|
-
return [registeredPointer];
|
1625
|
-
});
|
1626
|
-
}
|
1627
|
-
|
1628
|
-
function __embind_register_enum(
|
1629
|
-
rawType,
|
1630
|
-
name
|
1631
|
-
) {
|
1632
|
-
name = readLatin1String(name);
|
1633
|
-
|
1634
|
-
function constructor() {
|
1635
|
-
}
|
1636
|
-
constructor.values = {};
|
1637
|
-
|
1638
|
-
registerType(rawType, {
|
1639
|
-
name: name,
|
1640
|
-
constructor: constructor,
|
1641
|
-
'fromWireType': function(c) {
|
1642
|
-
return this.constructor.values[c];
|
1643
|
-
},
|
1644
|
-
'toWireType': function(destructors, c) {
|
1645
|
-
return c.value;
|
1646
|
-
},
|
1647
|
-
destructorFunction: null,
|
1648
|
-
});
|
1649
|
-
exposePublicSymbol(name, constructor);
|
1650
|
-
}
|
1651
|
-
|
1652
|
-
function __embind_register_enum_value(
|
1653
|
-
rawEnumType,
|
1654
|
-
name,
|
1655
|
-
enumValue
|
1656
|
-
) {
|
1657
|
-
var enumType = requireRegisteredType(rawEnumType, 'enum');
|
1658
|
-
name = readLatin1String(name);
|
1659
|
-
|
1660
|
-
var Enum = enumType.constructor;
|
1661
|
-
|
1662
|
-
var Value = Object.create(enumType.constructor.prototype, {
|
1663
|
-
value: {value: enumValue},
|
1664
|
-
constructor: {value: createNamedFunction(enumType.name + '_' + name, function() {})},
|
1665
|
-
});
|
1666
|
-
Enum.values[enumValue] = Value;
|
1667
|
-
Enum[name] = Value;
|
1668
|
-
}
|
1669
|
-
|
1670
|
-
function __embind_register_constant(name, type, value) {
|
1671
|
-
name = readLatin1String(name);
|
1672
|
-
whenDependentTypesAreResolved([], [type], function(type) {
|
1673
|
-
type = type[0];
|
1674
|
-
Module[name] = type['fromWireType'](value);
|
1675
|
-
return [];
|
1676
|
-
});
|
1677
|
-
}
|