opal 1.0.5 → 1.1.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.codeclimate.yml +14 -12
- data/.gitattributes +1 -1
- data/.github/workflows/build.yml +15 -10
- data/.jshintrc +1 -1
- data/.overcommit.yml +35 -0
- data/.rubocop.yml +44 -7
- data/{.rubocop_todo.yml → .rubocop/todo.yml} +4 -5
- data/CHANGELOG.md +87 -2
- data/Gemfile +1 -2
- data/HACKING.md +2 -9
- data/README.md +20 -17
- data/UNRELEASED.md +108 -0
- data/benchmark-ips/bm_array_pop_1.rb +8 -0
- data/benchmark-ips/bm_array_shift.rb +7 -0
- data/benchmark-ips/class_shovel_vs_singleton_class.rb +16 -0
- data/bin/build-browser-source-map-support +5 -0
- data/bin/format-filters +54 -0
- data/bin/remove-filters +39 -0
- data/docs/roda-sprockets.md +86 -0
- data/docs/sinatra.md +5 -12
- data/examples/rack/Gemfile +1 -0
- data/examples/rack/app/application.rb +3 -0
- data/examples/rack/config.ru +5 -4
- data/exe/opal-repl +2 -83
- data/lib/opal/ast/builder.rb +1 -1
- data/lib/opal/builder.rb +2 -10
- data/lib/opal/builder_processors.rb +1 -1
- data/lib/opal/cli_runners.rb +27 -37
- data/lib/opal/cli_runners/applescript.rb +5 -44
- data/lib/opal/cli_runners/chrome.js +7 -35
- data/lib/opal/cli_runners/chrome.rb +75 -17
- data/lib/opal/cli_runners/compiler.rb +17 -0
- data/lib/opal/cli_runners/nashorn.rb +9 -43
- data/lib/opal/cli_runners/nodejs.rb +18 -47
- data/lib/opal/cli_runners/server.rb +18 -6
- data/lib/opal/cli_runners/source-map-support-browser.js +6445 -0
- data/lib/opal/cli_runners/source-map-support.js +639 -0
- data/lib/opal/cli_runners/system_runner.rb +45 -0
- data/lib/opal/compiler.rb +57 -29
- data/lib/opal/config.rb +0 -5
- data/lib/opal/erb.rb +1 -1
- data/lib/opal/magic_comments.rb +34 -0
- data/lib/opal/nodes/args/arity_check.rb +2 -1
- data/lib/opal/nodes/base.rb +1 -1
- data/lib/opal/nodes/call.rb +1 -4
- data/lib/opal/nodes/def.rb +2 -0
- data/lib/opal/nodes/iter.rb +1 -1
- data/lib/opal/nodes/literal.rb +19 -14
- data/lib/opal/nodes/logic.rb +5 -80
- data/lib/opal/nodes/masgn.rb +2 -0
- data/lib/opal/nodes/rescue.rb +1 -1
- data/lib/opal/nodes/super.rb +24 -10
- data/lib/opal/nodes/top.rb +5 -4
- data/lib/opal/parser/with_c_lexer.rb +2 -1
- data/lib/opal/parser/with_ruby_lexer.rb +1 -1
- data/lib/opal/path_reader.rb +2 -2
- data/lib/opal/paths.rb +8 -5
- data/lib/opal/repl.rb +103 -0
- data/lib/opal/rewriter.rb +4 -0
- data/lib/opal/rewriters/for_rewriter.rb +1 -1
- data/lib/opal/rewriters/js_reserved_words.rb +7 -7
- data/lib/opal/rewriters/numblocks.rb +31 -0
- data/lib/opal/rewriters/returnable_logic.rb +33 -0
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +25 -25
- data/opal/corelib/array.rb +160 -118
- data/opal/corelib/array/pack.rb +5 -3
- data/opal/corelib/basic_object.rb +4 -4
- data/opal/corelib/class.rb +2 -1
- data/opal/corelib/comparable.rb +49 -31
- data/opal/corelib/constants.rb +5 -5
- data/opal/corelib/enumerable.rb +108 -46
- data/opal/corelib/enumerator.rb +27 -12
- data/opal/corelib/file.rb +3 -1
- data/opal/corelib/hash.rb +6 -1
- data/opal/corelib/helpers.rb +8 -28
- data/opal/corelib/io.rb +12 -7
- data/opal/corelib/kernel.rb +45 -14
- data/opal/corelib/kernel/format.rb +3 -1
- data/opal/corelib/math.rb +8 -6
- data/opal/corelib/method.rb +8 -0
- data/opal/corelib/module.rb +17 -2
- data/opal/corelib/number.rb +3 -12
- data/opal/corelib/proc.rb +16 -0
- data/opal/corelib/random/mersenne_twister.rb +147 -0
- data/opal/corelib/range.rb +3 -13
- data/opal/corelib/regexp.rb +10 -6
- data/opal/corelib/runtime.js +208 -81
- data/opal/corelib/string.rb +55 -49
- data/opal/corelib/string/encoding.rb +109 -32
- data/opal/corelib/string/unpack.rb +2 -17
- data/opal/corelib/struct.rb +14 -1
- data/opal/corelib/time.rb +4 -0
- data/opal/opal.rb +1 -1
- data/opal/opal/mini.rb +1 -1
- data/package.json +1 -0
- data/spec/README.md +10 -0
- data/spec/filters/bugs/array.rb +76 -0
- data/spec/filters/bugs/base64.rb +10 -0
- data/spec/filters/bugs/basicobject.rb +12 -0
- data/spec/filters/bugs/bigdecimal.rb +248 -0
- data/spec/filters/bugs/class.rb +12 -0
- data/spec/filters/bugs/complex.rb +7 -0
- data/spec/filters/bugs/date.rb +104 -0
- data/spec/filters/bugs/encoding.rb +259 -0
- data/spec/filters/bugs/enumerable.rb +26 -0
- data/spec/filters/bugs/enumerator.rb +48 -0
- data/spec/filters/bugs/exception.rb +120 -0
- data/spec/filters/bugs/file.rb +48 -0
- data/spec/filters/bugs/float.rb +74 -0
- data/spec/filters/bugs/hash.rb +60 -0
- data/spec/filters/bugs/integer.rb +78 -0
- data/spec/filters/bugs/io.rb +9 -0
- data/spec/filters/bugs/kernel.rb +401 -0
- data/spec/filters/bugs/language.rb +451 -0
- data/spec/filters/bugs/marshal.rb +50 -0
- data/spec/filters/bugs/math.rb +4 -0
- data/spec/filters/bugs/method.rb +79 -0
- data/spec/filters/bugs/module.rb +281 -0
- data/spec/filters/bugs/nilclass.rb +4 -0
- data/spec/filters/bugs/numeric.rb +27 -0
- data/spec/filters/bugs/openstruct.rb +8 -0
- data/spec/filters/bugs/pack_unpack.rb +138 -0
- data/spec/filters/bugs/pathname.rb +9 -0
- data/spec/filters/bugs/proc.rb +80 -0
- data/spec/filters/bugs/random.rb +20 -0
- data/spec/filters/bugs/range.rb +139 -0
- data/spec/filters/bugs/rational.rb +12 -0
- data/spec/filters/bugs/regexp.rb +91 -0
- data/spec/filters/bugs/set.rb +51 -0
- data/spec/filters/bugs/singleton.rb +7 -0
- data/spec/filters/bugs/string.rb +341 -0
- data/spec/filters/bugs/stringscanner.rb +78 -0
- data/spec/filters/bugs/struct.rb +26 -0
- data/spec/filters/bugs/symbol.rb +7 -0
- data/spec/filters/bugs/time.rb +109 -0
- data/spec/filters/bugs/unboundmethod.rb +33 -0
- data/spec/filters/bugs/warnings.rb +30 -0
- data/spec/filters/unsupported/array.rb +168 -0
- data/spec/filters/unsupported/basicobject.rb +15 -0
- data/spec/filters/unsupported/bignum.rb +55 -0
- data/spec/filters/unsupported/class.rb +5 -0
- data/spec/filters/unsupported/delegator.rb +6 -0
- data/spec/filters/unsupported/enumerable.rb +12 -0
- data/spec/filters/unsupported/enumerator.rb +14 -0
- data/spec/filters/unsupported/file.rb +4 -0
- data/spec/filters/unsupported/fixnum.rb +15 -0
- data/spec/filters/unsupported/float.rb +47 -0
- data/spec/filters/unsupported/freeze.rb +259 -0
- data/spec/filters/unsupported/hash.rb +44 -0
- data/spec/filters/unsupported/integer.rb +101 -0
- data/spec/filters/unsupported/kernel.rb +35 -0
- data/spec/filters/unsupported/language.rb +25 -0
- data/spec/filters/unsupported/marshal.rb +44 -0
- data/spec/filters/unsupported/matchdata.rb +63 -0
- data/spec/filters/unsupported/math.rb +4 -0
- data/spec/filters/unsupported/pathname.rb +4 -0
- data/spec/filters/unsupported/privacy.rb +287 -0
- data/spec/filters/unsupported/proc.rb +4 -0
- data/spec/filters/unsupported/random.rb +5 -0
- data/spec/filters/unsupported/range.rb +8 -0
- data/spec/filters/unsupported/regexp.rb +70 -0
- data/spec/filters/unsupported/set.rb +5 -0
- data/spec/filters/unsupported/singleton.rb +7 -0
- data/spec/filters/unsupported/string.rb +687 -0
- data/spec/filters/unsupported/struct.rb +7 -0
- data/spec/filters/unsupported/symbol.rb +21 -0
- data/spec/filters/unsupported/taint.rb +162 -0
- data/spec/filters/unsupported/thread.rb +10 -0
- data/spec/filters/unsupported/time.rb +204 -0
- data/spec/filters/unsupported/usage_of_files.rb +262 -0
- data/spec/lib/builder_processors_spec.rb +44 -0
- data/spec/lib/builder_spec.rb +133 -0
- data/spec/lib/cli_runners/server_spec.rb +25 -0
- data/spec/lib/cli_runners_spec.rb +16 -0
- data/spec/lib/cli_spec.rb +256 -0
- data/spec/lib/compiler_spec.rb +693 -0
- data/spec/lib/config_spec.rb +112 -0
- data/spec/lib/dependency_resolver_spec.rb +43 -0
- data/spec/lib/deprecations_spec.rb +17 -0
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +4 -0
- data/spec/lib/fixtures/file_with_directives.js +2 -0
- data/spec/lib/fixtures/jst_file.js.jst +1 -0
- data/spec/lib/fixtures/no_requires.rb +1 -0
- data/spec/lib/fixtures/opal_file.rb +2 -0
- data/spec/lib/fixtures/require_tree_test.rb +3 -0
- data/spec/lib/fixtures/required_file.js +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +1 -0
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +1 -0
- data/spec/lib/fixtures/requires.rb +7 -0
- data/spec/lib/fixtures/source_location_test.rb +7 -0
- data/spec/lib/fixtures/source_map.rb +1 -0
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +1 -0
- data/spec/lib/fixtures/sprockets_file.js.rb +3 -0
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +3 -0
- data/spec/lib/path_reader_spec.rb +47 -0
- data/spec/lib/paths_spec.rb +18 -0
- data/spec/lib/repl_spec.rb +28 -0
- data/spec/lib/rewriters/base_spec.rb +68 -0
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +153 -0
- data/spec/lib/rewriters/block_to_iter_spec.rb +28 -0
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +108 -0
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +186 -0
- data/spec/lib/rewriters/for_rewriter_spec.rb +92 -0
- data/spec/lib/rewriters/hashes/key_duplicates_rewriter_spec.rb +47 -0
- data/spec/lib/rewriters/js_reserved_words_spec.rb +119 -0
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +202 -0
- data/spec/lib/rewriters/opal_engine_check_spec.rb +84 -0
- data/spec/lib/rewriters/returnable_logic_spec.rb +52 -0
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +59 -0
- data/spec/lib/simple_server_spec.rb +56 -0
- data/spec/lib/source_map/file_spec.rb +67 -0
- data/spec/lib/source_map/index_spec.rb +80 -0
- data/spec/lib/spec_helper.rb +105 -0
- data/spec/mspec-opal/formatters.rb +197 -0
- data/spec/mspec-opal/runner.rb +172 -0
- data/spec/opal/compiler/irb_spec.rb +44 -0
- data/spec/opal/compiler/unicode_spec.rb +10 -0
- data/spec/opal/core/array/dup_spec.rb +23 -0
- data/spec/opal/core/array/intersection_spec.rb +38 -0
- data/spec/opal/core/array/minus_spec.rb +38 -0
- data/spec/opal/core/array/union_spec.rb +38 -0
- data/spec/opal/core/array/uniq_spec.rb +49 -0
- data/spec/opal/core/class/inherited_spec.rb +18 -0
- data/spec/opal/core/enumerable/all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/any_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/collect_break_spec.rb +13 -0
- data/spec/opal/core/enumerable/count_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/detect_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_slice_break_spec.rb +6 -0
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_all_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/find_index_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/grep_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/max_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/min_by_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/none_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/one_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/reduce_break_spec.rb +5 -0
- data/spec/opal/core/enumerable/take_while_break_spec.rb +5 -0
- data/spec/opal/core/enumerator/with_index_spec.rb +6 -0
- data/spec/opal/core/exception_spec.rb +8 -0
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +1 -0
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +3 -0
- data/spec/opal/core/hash/internals_spec.rb +339 -0
- data/spec/opal/core/helpers_spec.rb +14 -0
- data/spec/opal/core/iterable_props_spec.rb +53 -0
- data/spec/opal/core/kernel/at_exit_spec.rb +70 -0
- data/spec/opal/core/kernel/freeze_spec.rb +15 -0
- data/spec/opal/core/kernel/instance_variables_spec.rb +110 -0
- data/spec/opal/core/kernel/methods_spec.rb +25 -0
- data/spec/opal/core/kernel/public_methods_spec.rb +25 -0
- data/spec/opal/core/kernel/require_tree_spec.rb +18 -0
- data/spec/opal/core/kernel/respond_to_spec.rb +15 -0
- data/spec/opal/core/language/DATA/characters_support_spec.rb +9 -0
- data/spec/opal/core/language/DATA/empty___END___spec.rb +7 -0
- data/spec/opal/core/language/DATA/multiple___END___spec.rb +10 -0
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +18 -0
- data/spec/opal/core/language/keyword_arguments_spec.rb +9 -0
- data/spec/opal/core/language/numblocks_spec.rb +16 -0
- data/spec/opal/core/language/safe_navigator_spec.rb +7 -0
- data/spec/opal/core/language/while_spec.rb +31 -0
- data/spec/opal/core/language_spec.rb +29 -0
- data/spec/opal/core/marshal/dump_spec.rb +81 -0
- data/spec/opal/core/marshal/load_spec.rb +13 -0
- data/spec/opal/core/module_spec.rb +27 -0
- data/spec/opal/core/object_id_spec.rb +56 -0
- data/spec/opal/core/regexp/interpolation_spec.rb +40 -0
- data/spec/opal/core/regexp/match_spec.rb +78 -0
- data/spec/opal/core/runtime/bridged_classes_spec.rb +123 -0
- data/spec/opal/core/runtime/constants_spec.rb +16 -0
- data/spec/opal/core/runtime/eval_spec.rb +5 -0
- data/spec/opal/core/runtime/exit_spec.rb +29 -0
- data/spec/opal/core/runtime/is_a_spec.rb +48 -0
- data/spec/opal/core/runtime/loaded_spec.rb +20 -0
- data/spec/opal/core/runtime/main_methods_spec.rb +39 -0
- data/spec/opal/core/runtime/method_missing_spec.rb +68 -0
- data/spec/opal/core/runtime/rescue_spec.rb +37 -0
- data/spec/opal/core/runtime/string_spec.rb +25 -0
- data/spec/opal/core/runtime/truthy_spec.rb +61 -0
- data/spec/opal/core/runtime_spec.rb +58 -0
- data/spec/opal/core/string/each_byte_spec.rb +19 -0
- data/spec/opal/core/string/gsub_spec.rb +35 -0
- data/spec/opal/core/string/to_sym_spec.rb +9 -0
- data/spec/opal/core/string_spec.rb +28 -0
- data/spec/opal/core/struct/dup_spec.rb +11 -0
- data/spec/opal/core/time_spec.rb +68 -0
- data/spec/opal/stdlib/erb/erb_spec.rb +30 -0
- data/spec/opal/stdlib/erb/inline_block.opalerb +3 -0
- data/spec/opal/stdlib/erb/quoted.opalerb +1 -0
- data/spec/opal/stdlib/erb/simple.opalerb +1 -0
- data/spec/opal/stdlib/js_spec.rb +72 -0
- data/spec/opal/stdlib/json/ext_spec.rb +55 -0
- data/spec/opal/stdlib/json/parse_spec.rb +37 -0
- data/spec/opal/stdlib/logger/logger_spec.rb +308 -0
- data/spec/opal/stdlib/native/alias_native_spec.rb +27 -0
- data/spec/opal/stdlib/native/array_spec.rb +11 -0
- data/spec/opal/stdlib/native/date_spec.rb +12 -0
- data/spec/opal/stdlib/native/deprecated_include_spec.rb +8 -0
- data/spec/opal/stdlib/native/each_spec.rb +13 -0
- data/spec/opal/stdlib/native/element_reference_spec.rb +16 -0
- data/spec/opal/stdlib/native/exposure_spec.rb +33 -0
- data/spec/opal/stdlib/native/ext_spec.rb +19 -0
- data/spec/opal/stdlib/native/hash_spec.rb +67 -0
- data/spec/opal/stdlib/native/initialize_spec.rb +17 -0
- data/spec/opal/stdlib/native/method_missing_spec.rb +51 -0
- data/spec/opal/stdlib/native/native_alias_spec.rb +26 -0
- data/spec/opal/stdlib/native/native_class_spec.rb +18 -0
- data/spec/opal/stdlib/native/native_module_spec.rb +13 -0
- data/spec/opal/stdlib/native/native_reader_spec.rb +22 -0
- data/spec/opal/stdlib/native/native_writer_spec.rb +30 -0
- data/spec/opal/stdlib/native/new_spec.rb +92 -0
- data/spec/opal/stdlib/native/struct_spec.rb +12 -0
- data/spec/opal/stdlib/pp_spec.rb +5 -0
- data/spec/opal/stdlib/promise/always_spec.rb +49 -0
- data/spec/opal/stdlib/promise/error_spec.rb +15 -0
- data/spec/opal/stdlib/promise/rescue_spec.rb +53 -0
- data/spec/opal/stdlib/promise/then_spec.rb +79 -0
- data/spec/opal/stdlib/promise/trace_spec.rb +51 -0
- data/spec/opal/stdlib/promise/value_spec.rb +15 -0
- data/spec/opal/stdlib/promise/when_spec.rb +34 -0
- data/spec/opal/stdlib/source_map_spec.rb +8 -0
- data/spec/opal/stdlib/strscan/scan_spec.rb +11 -0
- data/spec/opal/stdlib/template/paths_spec.rb +10 -0
- data/spec/opal/stdlib/thread/mutex_spec.rb +40 -0
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +32 -0
- data/spec/opal/stdlib/thread/thread_spec.rb +60 -0
- data/spec/ruby_specs +183 -0
- data/spec/spec_helper.rb +31 -0
- data/spec/support/guard_platform.rb +4 -0
- data/spec/support/match_helpers.rb +57 -0
- data/spec/support/mspec_rspec_adapter.rb +33 -0
- data/spec/support/rewriters_helper.rb +54 -0
- data/spec/support/source_map_helper.rb +190 -0
- data/stdlib/base64.rb +2 -2
- data/stdlib/bigdecimal.rb +15 -3
- data/stdlib/bigdecimal/bignumber.js.rb +1 -1
- data/stdlib/bigdecimal/util.rb +148 -0
- data/stdlib/delegate.rb +8 -0
- data/stdlib/nodejs/fileutils.rb +1 -1
- data/stdlib/nodejs/kernel.rb +0 -13
- data/stdlib/nodejs/stacktrace.rb +4 -179
- data/stdlib/ostruct.rb +5 -0
- data/stdlib/pp.rb +586 -19
- data/stdlib/prettyprint.rb +556 -0
- data/stdlib/rbconfig/sizeof.rb +2 -0
- data/stdlib/securerandom.rb +32 -0
- data/stdlib/set.rb +36 -0
- data/stdlib/strscan.rb +15 -0
- data/tasks/benchmarking.rake +1 -1
- data/tasks/releasing.rake +0 -3
- data/tasks/testing.rake +16 -11
- data/tasks/testing/mspec_special_calls.rb +1 -19
- data/test/nodejs/fixtures/cat.png +0 -0
- data/test/nodejs/fixtures/hello.rb +1 -0
- data/test/nodejs/fixtures/iso88591.txt +1 -0
- data/test/nodejs/fixtures/utf8.txt +1 -0
- data/test/nodejs/fixtures/win1258.txt +1 -0
- data/test/nodejs/test_dir.rb +39 -0
- data/test/nodejs/test_env.rb +62 -0
- data/test/nodejs/test_error.rb +29 -0
- data/test/nodejs/test_file.rb +206 -0
- data/test/nodejs/test_file_encoding.rb +20 -0
- data/test/nodejs/test_io.rb +18 -0
- data/test/nodejs/test_opal_builder.rb +12 -0
- data/test/nodejs/test_pathname.rb +16 -0
- data/test/opal/cat.png +0 -0
- data/test/opal/http_server.rb +52 -0
- data/test/opal/test_base64.rb +115 -0
- data/test/opal/test_keyword.rb +590 -0
- data/test/opal/test_matrix.rb +661 -0
- data/test/opal/test_openuri.rb +53 -0
- data/test/opal/unsupported_and_bugs.rb +39 -0
- data/yarn.lock +1114 -3
- metadata +889 -31
- data/lib/opal/nodes/runtime_helpers.rb +0 -51
- data/opal/corelib/random/MersenneTwister.js +0 -137
- data/opal/corelib/random/mersenne_twister.js.rb +0 -13
- data/stdlib/bigdecimal/kernel.rb +0 -5
@@ -0,0 +1,172 @@
|
|
1
|
+
require 'mspec-opal/formatters'
|
2
|
+
|
3
|
+
class OSpecFilter
|
4
|
+
def self.main
|
5
|
+
@main ||= self.new
|
6
|
+
end
|
7
|
+
|
8
|
+
def initialize
|
9
|
+
@filters = Set.new
|
10
|
+
@seen = Set.new
|
11
|
+
end
|
12
|
+
|
13
|
+
def register
|
14
|
+
if ENV['INVERT_RUNNING_MODE']
|
15
|
+
MSpec.register :include, self
|
16
|
+
else
|
17
|
+
MSpec.register :exclude, self
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
def ===(description)
|
22
|
+
@seen << description
|
23
|
+
@filters.include?(description)
|
24
|
+
end
|
25
|
+
|
26
|
+
def register_filters(description, block)
|
27
|
+
instance_eval(&block)
|
28
|
+
end
|
29
|
+
|
30
|
+
def fails(description)
|
31
|
+
@filters << description
|
32
|
+
end
|
33
|
+
|
34
|
+
def fails_badly(description)
|
35
|
+
if ENV['INVERT_RUNNING_MODE']
|
36
|
+
warn "WARNING: FAILS BADLY: Ignoring filter to avoid blocking the suite: #{description.inspect}"
|
37
|
+
else
|
38
|
+
@filters << description
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
def unused_filters_message(list: false)
|
43
|
+
unused = @filters - @seen
|
44
|
+
return if unused.size == 0
|
45
|
+
|
46
|
+
if list
|
47
|
+
puts
|
48
|
+
puts "Unused filters:"
|
49
|
+
unused.each {|u| puts " fails #{u.inspect}"}
|
50
|
+
puts
|
51
|
+
else
|
52
|
+
warn "\nThere are #{unused.size} unused filters, re-run with ENV['LIST_UNUSED_FILTERS'] = true to list them\n\n"
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
class Object
|
58
|
+
def opal_filter(description, &block)
|
59
|
+
OSpecFilter.main.register_filters(description, block)
|
60
|
+
end
|
61
|
+
|
62
|
+
alias opal_unsupported_filter opal_filter
|
63
|
+
end
|
64
|
+
|
65
|
+
# MSpec relies on File.readable? to do method detection on backtraces
|
66
|
+
class File
|
67
|
+
def self.readable?(path)
|
68
|
+
false
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
class OSpecFormatter
|
73
|
+
def self.main
|
74
|
+
@main ||= self.new
|
75
|
+
end
|
76
|
+
|
77
|
+
def default_formatter
|
78
|
+
formatters = {
|
79
|
+
'browser' => BrowserFormatter,
|
80
|
+
'server' => BrowserFormatter,
|
81
|
+
'chrome' => DottedFormatter,
|
82
|
+
'node' => NodeJSFormatter,
|
83
|
+
'nodejs' => NodeJSFormatter,
|
84
|
+
'nodedoc' => NodeJSDocFormatter,
|
85
|
+
'nodejsdoc' => NodeJSDocFormatter,
|
86
|
+
'dotted' => DottedFormatter
|
87
|
+
}
|
88
|
+
|
89
|
+
formatter = formatters.fetch(ENV['FORMATTER']) do
|
90
|
+
warn "Using the default 'dotted' formatter, set the FORMATTER env var to select a different formatter (was: #{ENV['FORMATTER'].inspect}, options: #{formatters.keys.join(", ")})"
|
91
|
+
DottedFormatter
|
92
|
+
end
|
93
|
+
|
94
|
+
if ENV['INVERT_RUNNING_MODE']
|
95
|
+
formatter = Class.new(formatter)
|
96
|
+
formatter.include InvertedFormatter
|
97
|
+
end
|
98
|
+
|
99
|
+
formatter
|
100
|
+
end
|
101
|
+
|
102
|
+
def register(formatter_class = default_formatter)
|
103
|
+
formatter_class.new.register
|
104
|
+
end
|
105
|
+
end
|
106
|
+
|
107
|
+
class OpalBM
|
108
|
+
def self.main
|
109
|
+
@main ||= self.new
|
110
|
+
end
|
111
|
+
|
112
|
+
def register(repeat, bm_filepath)
|
113
|
+
`self.bm = {}`
|
114
|
+
`self.bm_filepath = bm_filepath`
|
115
|
+
MSpec.repeat = repeat
|
116
|
+
MSpec.register :before, self
|
117
|
+
MSpec.register :after, self
|
118
|
+
MSpec.register :finish, self
|
119
|
+
end
|
120
|
+
|
121
|
+
def before(state = nil)
|
122
|
+
%x{
|
123
|
+
if (self.bm && !self.bm.hasOwnProperty(state.description)) {
|
124
|
+
self.bm[state.description] = {started: Date.now()};
|
125
|
+
}
|
126
|
+
}
|
127
|
+
end
|
128
|
+
|
129
|
+
def after(state = nil)
|
130
|
+
%x{
|
131
|
+
if (self.bm) {
|
132
|
+
self.bm[state.description].stopped = Date.now();
|
133
|
+
}
|
134
|
+
}
|
135
|
+
end
|
136
|
+
|
137
|
+
def finish
|
138
|
+
%x{
|
139
|
+
var obj = self.bm, key, val, report = '';
|
140
|
+
if (obj) {
|
141
|
+
for (key in obj) {
|
142
|
+
if (obj.hasOwnProperty(key)) {
|
143
|
+
val = obj[key];
|
144
|
+
report += key.replace(/\s/g, '_') + ' ' + ((val.stopped - val.started) / 1000) + '\n';
|
145
|
+
}
|
146
|
+
}
|
147
|
+
require('fs').writeFileSync(self.bm_filepath, report);
|
148
|
+
}
|
149
|
+
}
|
150
|
+
end
|
151
|
+
end
|
152
|
+
|
153
|
+
module OutputSilencer
|
154
|
+
def silence_stdout
|
155
|
+
original_stdout = $stdout
|
156
|
+
new_stdout = IO.new
|
157
|
+
new_stdout.extend IO::Writable
|
158
|
+
new_stdout.write_proc = ->s{}
|
159
|
+
|
160
|
+
begin
|
161
|
+
$stdout = new_stdout
|
162
|
+
yield
|
163
|
+
ensure
|
164
|
+
$stdout = original_stdout
|
165
|
+
end
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
OSpecFormatter.main.register
|
170
|
+
OSpecFilter.main.register
|
171
|
+
|
172
|
+
MSpec.enable_feature :encoding
|
@@ -0,0 +1,44 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'native'
|
3
|
+
|
4
|
+
describe Opal::Compiler do
|
5
|
+
describe "irb parser option" do
|
6
|
+
it "creates Opal.irb_vars if it does not exist" do
|
7
|
+
$global["Opal"].irb_vars = nil
|
8
|
+
eval_js compile("nil", :irb => true)
|
9
|
+
|
10
|
+
($global["Opal"].irb_vars == nil).should be_false
|
11
|
+
end
|
12
|
+
|
13
|
+
it "does not create Opal.irb_vars if :irb option not passed" do
|
14
|
+
$global["Opal"].irb_vars = nil
|
15
|
+
eval_js compile("nil")
|
16
|
+
|
17
|
+
($global["Opal"].irb_vars == nil).should be_true
|
18
|
+
end
|
19
|
+
|
20
|
+
it "sets each s(:lasgn) in the top level onto irb_vars" do
|
21
|
+
eval_js compile("foo = 42", :irb => true)
|
22
|
+
$global["Opal"].irb_vars.foo.should == 42
|
23
|
+
end
|
24
|
+
|
25
|
+
it "gets each s(:lvar) in the top level from irb_vars" do
|
26
|
+
eval_js compile("foo = 3.142; bar = foo", :irb => true)
|
27
|
+
$global["Opal"].irb_vars.bar.should == 3.142
|
28
|
+
end
|
29
|
+
|
30
|
+
it "persists local vars between parses" do
|
31
|
+
eval_js compile("foo = 'hello world'", :irb => true)
|
32
|
+
eval_js compile("bar = foo.upcase", :irb => true)
|
33
|
+
$global["Opal"].irb_vars.bar.should == "HELLO WORLD"
|
34
|
+
end
|
35
|
+
|
36
|
+
it "can still call top level methods" do
|
37
|
+
eval_js(compile("to_s", :irb => true)).should == "main"
|
38
|
+
end
|
39
|
+
|
40
|
+
def compile *args
|
41
|
+
Opal::Compiler.new(*args).compile
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
describe "Array#dup" do
|
2
|
+
it "should use slice optimization" do
|
3
|
+
a = Array.new
|
4
|
+
`a.slice = function() { return ['sliced'] }`
|
5
|
+
lambda { a.dup }.should_not raise_error
|
6
|
+
a.dup.should == ['sliced']
|
7
|
+
end
|
8
|
+
|
9
|
+
it "should use slice optimization on Array subclass" do
|
10
|
+
subclass = Class.new(Array)
|
11
|
+
a = subclass.new
|
12
|
+
`a.slice = function() { return ['sliced'] }`
|
13
|
+
lambda { a.dup }.should_not raise_error
|
14
|
+
a.dup.should == ['sliced']
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should not use slice optimization when allocation is redefined" do
|
18
|
+
subclass = Class.new(Array)
|
19
|
+
a = subclass.new
|
20
|
+
subclass.define_singleton_method(:allocate) { raise 'Overriden method, no slice optimization for you!' }
|
21
|
+
lambda { a.dup }.should raise_error # dup should call allocate because the method is overriden
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
describe "Array#&" do
|
2
|
+
it "relies on Ruby's #hash (not JavaScript's #toString) for identifying array items" do
|
3
|
+
a1 = [ 123, '123']
|
4
|
+
a2 = ['123', 123 ]
|
5
|
+
(a1 & a2).should == a1
|
6
|
+
(a2 & a1).should == a2
|
7
|
+
|
8
|
+
a1 = [ Time.at(1429521600.1), Time.at(1429521600.9) ]
|
9
|
+
a2 = [ Time.at(1429521600.9), Time.at(1429521600.1) ]
|
10
|
+
(a1 & a2).should == a1
|
11
|
+
(a2 & a1).should == a2
|
12
|
+
|
13
|
+
a1 = [ Object.new, Object.new ]
|
14
|
+
a2 = [ Object.new, Object.new ]
|
15
|
+
(a1 & a2).should == []
|
16
|
+
(a2 & a1).should == []
|
17
|
+
|
18
|
+
a1 = [ 1, 2, 3, '1', '2', '3']
|
19
|
+
a2 = ['1', '2', '3', 1, 2, 3 ]
|
20
|
+
(a1 & a2).should == a1
|
21
|
+
(a2 & a1).should == a2
|
22
|
+
|
23
|
+
a1 = [ [1, 2, 3], '1,2,3']
|
24
|
+
a2 = ['1,2,3', [1, 2, 3] ]
|
25
|
+
(a1 & a2).should == a1
|
26
|
+
(a2 & a1).should == a2
|
27
|
+
|
28
|
+
a1 = [ true, 'true']
|
29
|
+
a2 = ['true', true ]
|
30
|
+
(a1 & a2).should == a1
|
31
|
+
(a2 & a1).should == a2
|
32
|
+
|
33
|
+
a1 = [ false, 'false']
|
34
|
+
a2 = ['false', false ]
|
35
|
+
(a1 & a2).should == a1
|
36
|
+
(a2 & a1).should == a2
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
describe "Array#-" do
|
2
|
+
it "relies on Ruby's #hash (not JavaScript's #toString) for identifying array items" do
|
3
|
+
a1 = [ 123 ]
|
4
|
+
a2 = ['123']
|
5
|
+
(a1 - a2).should == a1
|
6
|
+
(a2 - a1).should == a2
|
7
|
+
|
8
|
+
a1 = [ Time.at(1429521600.1) ]
|
9
|
+
a2 = [ Time.at(1429521600.9) ]
|
10
|
+
(a1 - a2).should == a1
|
11
|
+
(a2 - a1).should == a2
|
12
|
+
|
13
|
+
a1 = [ Object.new ]
|
14
|
+
a2 = [ Object.new ]
|
15
|
+
(a1 - a2).should == a1
|
16
|
+
(a2 - a1).should == a2
|
17
|
+
|
18
|
+
a1 = [ 1, 2, 3 ]
|
19
|
+
a2 = ['1', '2', '3']
|
20
|
+
(a1 - a2).should == a1
|
21
|
+
(a2 - a1).should == a2
|
22
|
+
|
23
|
+
a1 = [ 1, 2, 3 ]
|
24
|
+
a2 = ['1,2,3']
|
25
|
+
(a1 - a2).should == a1
|
26
|
+
(a2 - a1).should == a2
|
27
|
+
|
28
|
+
a1 = [ true ]
|
29
|
+
a2 = ['true']
|
30
|
+
(a1 - a2).should == a1
|
31
|
+
(a2 - a1).should == a2
|
32
|
+
|
33
|
+
a1 = [ false ]
|
34
|
+
a2 = ['false']
|
35
|
+
(a1 - a2).should == a1
|
36
|
+
(a2 - a1).should == a2
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
describe "Array#|" do
|
2
|
+
it "relies on Ruby's #hash (not JavaScript's #toString) for identifying array items" do
|
3
|
+
a1 = [ 123, '123']
|
4
|
+
a2 = ['123', 123 ]
|
5
|
+
(a1 | a2).should == a1
|
6
|
+
(a2 | a1).should == a2
|
7
|
+
|
8
|
+
a1 = [ Time.at(1429521600.1), Time.at(1429521600.9) ]
|
9
|
+
a2 = [ Time.at(1429521600.9), Time.at(1429521600.1) ]
|
10
|
+
(a1 | a2).should == a1
|
11
|
+
(a2 | a1).should == a2
|
12
|
+
|
13
|
+
a1 = [ Object.new, Object.new ]
|
14
|
+
a2 = [ Object.new, Object.new ]
|
15
|
+
(a1 | a2).should == a1 + a2
|
16
|
+
(a2 | a1).should == a2 + a1
|
17
|
+
|
18
|
+
a1 = [ 1, 2, 3, '1', '2', '3']
|
19
|
+
a2 = ['1', '2', '3', 1, 2, 3 ]
|
20
|
+
(a1 | a2).should == a1
|
21
|
+
(a2 | a1).should == a2
|
22
|
+
|
23
|
+
a1 = [ [1, 2, 3], '1,2,3']
|
24
|
+
a2 = ['1,2,3', [1, 2, 3] ]
|
25
|
+
(a1 | a2).should == a1
|
26
|
+
(a2 | a1).should == a2
|
27
|
+
|
28
|
+
a1 = [ true, 'true']
|
29
|
+
a2 = ['true', true ]
|
30
|
+
(a1 | a2).should == a1
|
31
|
+
(a2 | a1).should == a2
|
32
|
+
|
33
|
+
a1 = [ false, 'false']
|
34
|
+
a2 = ['false', false ]
|
35
|
+
(a1 | a2).should == a1
|
36
|
+
(a2 | a1).should == a2
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
describe "Array#uniq" do
|
2
|
+
it "relies on Ruby's #hash (not JavaScript's #toString) for identifying array items" do
|
3
|
+
a = [ 123, '123']
|
4
|
+
a.uniq.should == a
|
5
|
+
|
6
|
+
a = [ Time.at(1429521600.1), Time.at(1429521600.9) ]
|
7
|
+
a.uniq.should == a
|
8
|
+
|
9
|
+
a = [ Object.new, Object.new ]
|
10
|
+
a.uniq.should == a
|
11
|
+
|
12
|
+
a = [ 1, 2, 3, '1', '2', '3']
|
13
|
+
a.uniq.should == a
|
14
|
+
|
15
|
+
a = [ [1, 2, 3], '1,2,3']
|
16
|
+
a.uniq.should == a
|
17
|
+
|
18
|
+
a = [ true, 'true']
|
19
|
+
a.uniq.should == a
|
20
|
+
|
21
|
+
a = [ false, 'false']
|
22
|
+
a.uniq.should == a
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
describe "Array#uniq!" do
|
27
|
+
it "relies on Ruby's #hash (not JavaScript's #toString) for identifying array items" do
|
28
|
+
a = [ 123, '123']
|
29
|
+
a.uniq!.should == nil
|
30
|
+
|
31
|
+
a = [ Time.at(1429521600.1), Time.at(1429521600.9) ]
|
32
|
+
a.uniq!.should == nil
|
33
|
+
|
34
|
+
a = [ Object.new, Object.new ]
|
35
|
+
a.uniq!.should == nil
|
36
|
+
|
37
|
+
a = [ 1, 2, 3, '1', '2', '3']
|
38
|
+
a.uniq!.should == nil
|
39
|
+
|
40
|
+
a = [ [1, 2, 3], '1,2,3']
|
41
|
+
a.uniq!.should == nil
|
42
|
+
|
43
|
+
a = [ true, 'true']
|
44
|
+
a.uniq!.should == nil
|
45
|
+
|
46
|
+
a = [ false, 'false']
|
47
|
+
a.uniq!.should == nil
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module ModuleInheritedTestModule
|
2
|
+
class A
|
3
|
+
def self.inherited(subclass)
|
4
|
+
$ScratchPad << subclass.name
|
5
|
+
end
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
describe 'Class#inherited' do
|
10
|
+
it 'gets called after setting a base scope of the subclass' do
|
11
|
+
$ScratchPad = []
|
12
|
+
module ModuleInheritedTestModule
|
13
|
+
class B < A
|
14
|
+
end
|
15
|
+
end
|
16
|
+
$ScratchPad.should == ['ModuleInheritedTestModule::B']
|
17
|
+
end
|
18
|
+
end
|