opal 0.11.0.rc1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.jshintrc +1 -1
- data/.travis.yml +14 -2
- data/CHANGELOG.md +30 -5
- data/HACKING.md +2 -2
- data/README.md +4 -5
- data/appveyor.yml +3 -4
- data/bin +1 -0
- data/docs/headless_chrome.md +105 -0
- data/docs/rspec.md +2 -19
- data/{bin → exe}/opal +0 -0
- data/{bin → exe}/opal-build +0 -0
- data/{bin → exe}/opal-mspec +0 -0
- data/{bin → exe}/opal-repl +0 -0
- data/lib/opal.rb +1 -0
- data/lib/opal/ast/builder.rb +0 -4
- data/lib/opal/builder.rb +69 -15
- data/lib/opal/builder_processors.rb +8 -7
- data/lib/opal/cli.rb +1 -1
- data/lib/opal/cli_options.rb +1 -1
- data/lib/opal/cli_runners.rb +1 -1
- data/lib/opal/cli_runners/applescript.rb +0 -1
- data/lib/opal/cli_runners/chrome.js +135 -0
- data/lib/opal/cli_runners/chrome.rb +100 -0
- data/lib/opal/cli_runners/nashorn.rb +0 -1
- data/lib/opal/cli_runners/node_modules/.bin/chrome-remote-interface +1 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/LICENSE +18 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/README.md +843 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/bin/client.js +326 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/chrome-remote-interface.js +11 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/index.js +39 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/api.js +84 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/chrome.js +289 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/defaults.js +4 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/devtools.js +245 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/external-request.js +23 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/protocol.json +13303 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/lib/websocket-wrapper.js +32 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/package.json +128 -0
- data/lib/opal/cli_runners/node_modules/chrome-remote-interface/webpack.config.js +55 -0
- data/lib/opal/cli_runners/node_modules/commander/Readme.md +195 -0
- data/lib/opal/cli_runners/node_modules/commander/index.js +851 -0
- data/lib/opal/cli_runners/node_modules/commander/package.json +92 -0
- data/lib/opal/cli_runners/node_modules/ultron/LICENSE +22 -0
- data/lib/opal/cli_runners/node_modules/ultron/index.js +138 -0
- data/lib/opal/cli_runners/node_modules/ultron/package.json +112 -0
- data/lib/opal/cli_runners/node_modules/ws/LICENSE +21 -0
- data/lib/opal/cli_runners/node_modules/ws/README.md +259 -0
- data/lib/opal/cli_runners/node_modules/ws/SECURITY.md +33 -0
- data/lib/opal/cli_runners/node_modules/ws/index.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.fallback.js +56 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/BufferUtil.js +15 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/ErrorCodes.js +28 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/EventTarget.js +158 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Extensions.js +69 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/PerMessageDeflate.js +339 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Receiver.js +520 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Sender.js +438 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.fallback.js +9 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/Validation.js +17 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocket.js +705 -0
- data/lib/opal/cli_runners/node_modules/ws/lib/WebSocketServer.js +336 -0
- data/lib/opal/cli_runners/node_modules/ws/package.json +122 -0
- data/lib/opal/cli_runners/nodejs.rb +0 -1
- data/lib/opal/cli_runners/package.json +5 -0
- data/lib/opal/cli_runners/server.rb +0 -1
- data/lib/opal/compiler.rb +8 -18
- data/lib/opal/deprecations.rb +1 -1
- data/lib/opal/eof_content.rb +36 -0
- data/lib/opal/nodes.rb +0 -1
- data/lib/opal/nodes/args/kwarg.rb +8 -6
- data/lib/opal/nodes/args/kwoptarg.rb +12 -6
- data/lib/opal/nodes/call.rb +3 -2
- data/lib/opal/nodes/call_special.rb +10 -1
- data/lib/opal/nodes/definitions.rb +5 -3
- data/lib/opal/nodes/helpers.rb +4 -8
- data/lib/opal/nodes/literal.rb +13 -1
- data/lib/opal/nodes/logic.rb +19 -32
- data/lib/opal/nodes/node_with_args.rb +1 -1
- data/lib/opal/nodes/scope.rb +1 -0
- data/lib/opal/nodes/super.rb +0 -4
- data/lib/opal/nodes/variables.rb +11 -0
- data/lib/opal/parser.rb +24 -19
- data/lib/opal/path_reader.rb +17 -4
- data/lib/opal/rewriter.rb +5 -1
- data/lib/opal/rewriters/base.rb +37 -34
- data/lib/opal/rewriters/binary_operator_assignment.rb +0 -3
- data/lib/opal/rewriters/for_rewriter.rb +93 -0
- data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +58 -0
- data/lib/opal/rewriters/js_reserved_words.rb +5 -8
- data/lib/opal/rewriters/logical_operator_assignment.rb +0 -1
- data/lib/opal/simple_server.rb +1 -0
- data/lib/opal/util.rb +1 -1
- data/lib/opal/version.rb +1 -1
- data/opal.gemspec +32 -30
- data/opal/corelib/array.rb +53 -30
- data/opal/corelib/boolean.rb +11 -3
- data/opal/corelib/comparable.rb +16 -0
- data/opal/corelib/constants.rb +3 -3
- data/opal/corelib/enumerable.rb +48 -1
- data/opal/corelib/file.rb +54 -11
- data/opal/corelib/hash.rb +98 -0
- data/opal/corelib/io.rb +2 -2
- data/opal/corelib/kernel.rb +28 -11
- data/opal/corelib/marshal/read_buffer.rb +288 -150
- data/opal/corelib/marshal/write_buffer.rb +27 -2
- data/opal/corelib/nil.rb +11 -3
- data/opal/corelib/number.rb +90 -20
- data/opal/corelib/numeric.rb +3 -3
- data/opal/corelib/random.rb +1 -1
- data/opal/corelib/range.rb +22 -22
- data/opal/corelib/regexp.rb +45 -4
- data/opal/corelib/runtime.js +25 -9
- data/opal/corelib/string.rb +1 -1
- data/opal/corelib/string/encoding.rb +21 -29
- data/opal/corelib/string/inheritance.rb +1 -1
- data/opal/corelib/struct.rb +0 -5
- data/opal/corelib/time.rb +1 -1
- data/stdlib/buffer/array.rb +4 -2
- data/stdlib/date.rb +46 -12
- data/stdlib/headless_chrome.rb +11 -0
- data/stdlib/nodejs/file.rb +36 -11
- data/stdlib/nodejs/io.rb +8 -0
- data/stdlib/nodejs/stacktrace.rb +116 -100
- data/stdlib/opal-builder.rb +1 -0
- data/stdlib/opal-platform.rb +6 -6
- data/stdlib/opal/platform.rb +2 -2
- data/stdlib/rbconfig.rb +1 -1
- data/stdlib/securerandom.rb +1 -1
- data/tasks/testing.rake +58 -26
- data/tasks/testing/opal_rspec_smoketest.Gemfile +5 -12
- metadata +64 -733
- data/lib/opal/cli_runners/phantom.js +0 -69
- data/lib/opal/cli_runners/phantomjs.rb +0 -29
- data/lib/opal/hike_path_finder.rb +0 -19
- data/lib/opal/nodes/for.rb +0 -75
- data/spec/README.md +0 -10
- data/spec/filters/bugs/array.rb +0 -16
- data/spec/filters/bugs/basicobject.rb +0 -13
- data/spec/filters/bugs/bigdecimal.rb +0 -146
- data/spec/filters/bugs/class.rb +0 -11
- data/spec/filters/bugs/comparable.rb +0 -5
- data/spec/filters/bugs/complex.rb +0 -3
- data/spec/filters/bugs/date.rb +0 -94
- data/spec/filters/bugs/enumerable.rb +0 -43
- data/spec/filters/bugs/enumerator.rb +0 -40
- data/spec/filters/bugs/exception.rb +0 -72
- data/spec/filters/bugs/file.rb +0 -8
- data/spec/filters/bugs/float.rb +0 -39
- data/spec/filters/bugs/hash.rb +0 -15
- data/spec/filters/bugs/inheritance.rb +0 -5
- data/spec/filters/bugs/integer.rb +0 -30
- data/spec/filters/bugs/io.rb +0 -8
- data/spec/filters/bugs/kernel.rb +0 -168
- data/spec/filters/bugs/language.rb +0 -190
- data/spec/filters/bugs/marshal.rb +0 -41
- data/spec/filters/bugs/method.rb +0 -60
- data/spec/filters/bugs/module.rb +0 -158
- data/spec/filters/bugs/numeric.rb +0 -8
- data/spec/filters/bugs/pathname.rb +0 -7
- data/spec/filters/bugs/proc.rb +0 -37
- data/spec/filters/bugs/random.rb +0 -7
- data/spec/filters/bugs/range.rb +0 -36
- data/spec/filters/bugs/rational.rb +0 -4
- data/spec/filters/bugs/regexp.rb +0 -158
- data/spec/filters/bugs/set.rb +0 -41
- data/spec/filters/bugs/singleton.rb +0 -6
- data/spec/filters/bugs/string.rb +0 -98
- data/spec/filters/bugs/stringscanner.rb +0 -71
- data/spec/filters/bugs/struct.rb +0 -4
- data/spec/filters/bugs/time.rb +0 -35
- data/spec/filters/bugs/unboundmethod.rb +0 -17
- data/spec/filters/unsupported/array.rb +0 -167
- data/spec/filters/unsupported/basicobject.rb +0 -14
- data/spec/filters/unsupported/bignum.rb +0 -55
- data/spec/filters/unsupported/class.rb +0 -4
- data/spec/filters/unsupported/delegator.rb +0 -5
- data/spec/filters/unsupported/enumerable.rb +0 -11
- data/spec/filters/unsupported/enumerator.rb +0 -13
- data/spec/filters/unsupported/file.rb +0 -4
- data/spec/filters/unsupported/fixnum.rb +0 -14
- data/spec/filters/unsupported/float.rb +0 -46
- data/spec/filters/unsupported/freeze.rb +0 -75
- data/spec/filters/unsupported/hash.rb +0 -43
- data/spec/filters/unsupported/integer.rb +0 -3
- data/spec/filters/unsupported/kernel.rb +0 -32
- data/spec/filters/unsupported/language.rb +0 -22
- data/spec/filters/unsupported/marshal.rb +0 -46
- data/spec/filters/unsupported/matchdata.rb +0 -33
- data/spec/filters/unsupported/math.rb +0 -3
- data/spec/filters/unsupported/pathname.rb +0 -3
- data/spec/filters/unsupported/privacy.rb +0 -279
- data/spec/filters/unsupported/proc.rb +0 -3
- data/spec/filters/unsupported/random.rb +0 -4
- data/spec/filters/unsupported/range.rb +0 -7
- data/spec/filters/unsupported/regexp.rb +0 -69
- data/spec/filters/unsupported/set.rb +0 -4
- data/spec/filters/unsupported/singleton.rb +0 -6
- data/spec/filters/unsupported/string.rb +0 -546
- data/spec/filters/unsupported/struct.rb +0 -6
- data/spec/filters/unsupported/symbol.rb +0 -20
- data/spec/filters/unsupported/taint.rb +0 -30
- data/spec/filters/unsupported/thread.rb +0 -7
- data/spec/filters/unsupported/time.rb +0 -202
- data/spec/lib/builder_processors_spec.rb +0 -27
- data/spec/lib/builder_spec.rb +0 -89
- data/spec/lib/cli_runners/phantomjs_spec.rb +0 -39
- data/spec/lib/cli_spec.rb +0 -240
- data/spec/lib/compiler/call_spec.rb +0 -732
- data/spec/lib/compiler_spec.rb +0 -294
- data/spec/lib/config_spec.rb +0 -110
- data/spec/lib/dependency_resolver_spec.rb +0 -40
- data/spec/lib/deprecations_spec.rb +0 -16
- data/spec/lib/fixtures/complex_sprockets.js.rb.erb +0 -4
- data/spec/lib/fixtures/file_with_directives.js +0 -2
- data/spec/lib/fixtures/jst_file.js.jst +0 -1
- data/spec/lib/fixtures/no_requires.rb +0 -1
- data/spec/lib/fixtures/opal_file.rb +0 -2
- data/spec/lib/fixtures/require_tree_test.rb +0 -3
- data/spec/lib/fixtures/required_file.js +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file1.rb +0 -1
- data/spec/lib/fixtures/required_tree_test/required_file2.rb +0 -1
- data/spec/lib/fixtures/requires.rb +0 -7
- data/spec/lib/fixtures/source_location_test.rb +0 -7
- data/spec/lib/fixtures/source_map.rb +0 -1
- data/spec/lib/fixtures/source_map/subfolder/other_file.rb +0 -1
- data/spec/lib/fixtures/sprockets_file.js.rb +0 -3
- data/spec/lib/fixtures/sprockets_require_tree_test.rb +0 -3
- data/spec/lib/hike_path_finder_spec.rb +0 -23
- data/spec/lib/path_reader_spec.rb +0 -36
- data/spec/lib/paths_spec.rb +0 -18
- data/spec/lib/rewriters/binary_operator_assignment_spec.rb +0 -151
- data/spec/lib/rewriters/block_to_iter_spec.rb +0 -28
- data/spec/lib/rewriters/dot_js_syntax_spec.rb +0 -108
- data/spec/lib/rewriters/explicit_writer_return_spec.rb +0 -186
- data/spec/lib/rewriters/js_reserved_words_spec.rb +0 -116
- data/spec/lib/rewriters/logical_operator_assignment_spec.rb +0 -202
- data/spec/lib/rewriters/opal_engine_check_spec.rb +0 -82
- data/spec/lib/rewriters/rubyspec/filters_rewriter_spec.rb +0 -53
- data/spec/lib/shared/path_finder_shared.rb +0 -19
- data/spec/lib/shared/path_reader_shared.rb +0 -31
- data/spec/lib/simple_server_spec.rb +0 -54
- data/spec/lib/spec_helper.rb +0 -100
- data/spec/mspec-opal/formatters.rb +0 -236
- data/spec/mspec-opal/runner.rb +0 -173
- data/spec/opal/compiler/irb_spec.rb +0 -44
- data/spec/opal/core/arity_spec.rb +0 -142
- data/spec/opal/core/array/intersection_spec.rb +0 -38
- data/spec/opal/core/array/minus_spec.rb +0 -38
- data/spec/opal/core/array/select_spec.rb +0 -14
- data/spec/opal/core/array/set_range_to_array_spec.rb +0 -7
- data/spec/opal/core/array/union_spec.rb +0 -38
- data/spec/opal/core/array/uniq_spec.rb +0 -49
- data/spec/opal/core/date_spec.rb +0 -191
- data/spec/opal/core/enumerable/all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/any_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/collect_break_spec.rb +0 -13
- data/spec/opal/core/enumerable/count_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/detect_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/drop_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_slice_break.rb +0 -6
- data/spec/opal/core/enumerable/each_with_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/each_with_object_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_all_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/find_index_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/grep_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/max_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/min_by_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/none_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/one_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/reduce_break_spec.rb +0 -5
- data/spec/opal/core/enumerable/take_while_break_spec.rb +0 -5
- data/spec/opal/core/enumerator/with_index_spec.rb +0 -6
- data/spec/opal/core/exception_spec.rb +0 -30
- data/spec/opal/core/fixtures/class.rb +0 -124
- data/spec/opal/core/fixtures/class_variables.rb +0 -0
- data/spec/opal/core/fixtures/constants.rb +0 -33
- data/spec/opal/core/fixtures/require_tree_files/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 4.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/file 5.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/nested/nested 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_files/other/other 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 1.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 2.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/file 3.rb +0 -1
- data/spec/opal/core/fixtures/require_tree_with_dot/index.rb +0 -3
- data/spec/opal/core/hash/has_value_spec.rb +0 -13
- data/spec/opal/core/hash/internals_spec.rb +0 -332
- data/spec/opal/core/helpers_spec.rb +0 -14
- data/spec/opal/core/kernel/Array_spec.rb +0 -10
- data/spec/opal/core/kernel/at_exit_spec.rb +0 -70
- data/spec/opal/core/kernel/block_given_spec.rb +0 -30
- data/spec/opal/core/kernel/class_spec.rb +0 -6
- data/spec/opal/core/kernel/define_singleton_method_spec.rb +0 -21
- data/spec/opal/core/kernel/equal_value_spec.rb +0 -12
- data/spec/opal/core/kernel/extend_spec.rb +0 -21
- data/spec/opal/core/kernel/format_spec.rb +0 -122
- data/spec/opal/core/kernel/freeze_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_eval_spec.rb +0 -28
- data/spec/opal/core/kernel/instance_variable_defined_spec.rb +0 -15
- data/spec/opal/core/kernel/instance_variable_get_spec.rb +0 -14
- data/spec/opal/core/kernel/instance_variable_set_spec.rb +0 -10
- data/spec/opal/core/kernel/instance_variables_spec.rb +0 -110
- data/spec/opal/core/kernel/loop_spec.rb +0 -23
- data/spec/opal/core/kernel/match_spec.rb +0 -5
- data/spec/opal/core/kernel/method_spec.rb +0 -31
- data/spec/opal/core/kernel/methods_spec.rb +0 -25
- data/spec/opal/core/kernel/nil_spec.rb +0 -7
- data/spec/opal/core/kernel/p_spec.rb +0 -15
- data/spec/opal/core/kernel/printf_spec.rb +0 -11
- data/spec/opal/core/kernel/proc_spec.rb +0 -13
- data/spec/opal/core/kernel/raise_spec.rb +0 -13
- data/spec/opal/core/kernel/rand_spec.rb +0 -19
- data/spec/opal/core/kernel/require_tree_spec.rb +0 -18
- data/spec/opal/core/kernel/respond_to_spec.rb +0 -44
- data/spec/opal/core/kernel/send_spec.rb +0 -56
- data/spec/opal/core/kernel/sprintf_spec.rb +0 -5
- data/spec/opal/core/language/arguments/mlhs_arg_spec.rb +0 -19
- data/spec/opal/core/language/class_spec.rb +0 -55
- data/spec/opal/core/language/constant_lookup_spec.rb +0 -38
- data/spec/opal/core/language/equal_spec.rb +0 -8
- data/spec/opal/core/language/fixtures/array.rb +0 -11
- data/spec/opal/core/language/fixtures/block.rb +0 -57
- data/spec/opal/core/language/fixtures/break.rb +0 -240
- data/spec/opal/core/language/fixtures/ensure.rb +0 -72
- data/spec/opal/core/language/fixtures/literal_lambda.rb +0 -7
- data/spec/opal/core/language/fixtures/metaclass.rb +0 -33
- data/spec/opal/core/language/fixtures/module.rb +0 -24
- data/spec/opal/core/language/fixtures/next.rb +0 -128
- data/spec/opal/core/language/fixtures/return.rb +0 -118
- data/spec/opal/core/language/fixtures/send.rb +0 -111
- data/spec/opal/core/language/fixtures/send_1.9.rb +0 -22
- data/spec/opal/core/language/fixtures/super.rb +0 -308
- data/spec/opal/core/language/fixtures/variables.rb +0 -58
- data/spec/opal/core/language/fixtures/yield.rb +0 -28
- data/spec/opal/core/language/heredoc_spec.rb +0 -42
- data/spec/opal/core/language/keyword_arguments_spec.rb +0 -11
- data/spec/opal/core/language/predefined_spec.rb +0 -138
- data/spec/opal/core/language/regexp_spec.rb +0 -20
- data/spec/opal/core/language/rescue_spec.rb +0 -18
- data/spec/opal/core/language/safe_navigator_spec.rb +0 -7
- data/spec/opal/core/language/send_spec.rb +0 -222
- data/spec/opal/core/language/string_spec.rb +0 -44
- data/spec/opal/core/language/ternary_operator_spec.rb +0 -20
- data/spec/opal/core/language/versions/array_1.9.rb +0 -39
- data/spec/opal/core/language/versions/block_1.9.rb +0 -0
- data/spec/opal/core/language/versions/break_1.9.rb +0 -0
- data/spec/opal/core/language/versions/case_1.9.rb +0 -20
- data/spec/opal/core/language/versions/def_2_0_spec.rb +0 -58
- data/spec/opal/core/language/versions/hash_1_9_spec.rb +0 -23
- data/spec/opal/core/language/versions/literal_lambda_1.9.rb +0 -143
- data/spec/opal/core/language/versions/not_1.9.rb +0 -22
- data/spec/opal/core/language/versions/send_1.9.rb +0 -241
- data/spec/opal/core/language/versions/symbol_1.9.rb +0 -15
- data/spec/opal/core/language/versions/variables_1.9.rb +0 -8
- data/spec/opal/core/language_spec.rb +0 -77
- data/spec/opal/core/marshal/dump_spec.rb +0 -53
- data/spec/opal/core/marshal/load_spec.rb +0 -7
- data/spec/opal/core/method/to_proc_spec.rb +0 -28
- data/spec/opal/core/module/alias_method_spec.rb +0 -28
- data/spec/opal/core/module/ancestors_spec.rb +0 -11
- data/spec/opal/core/module/append_features_spec.rb +0 -14
- data/spec/opal/core/module/attr_accessor_spec.rb +0 -26
- data/spec/opal/core/module/const_defined_spec.rb +0 -84
- data/spec/opal/core/module/const_get_spec.rb +0 -85
- data/spec/opal/core/module/const_missing_spec.rb +0 -17
- data/spec/opal/core/module/const_set_spec.rb +0 -64
- data/spec/opal/core/module/constants_spec.rb +0 -49
- data/spec/opal/core/module/fixtures/classes.rb +0 -444
- data/spec/opal/core/module/method_defined_spec.rb +0 -48
- data/spec/opal/core/module/method_lookup_spec.rb +0 -13
- data/spec/opal/core/module/module_function_spec.rb +0 -25
- data/spec/opal/core/module/name_spec.rb +0 -41
- data/spec/opal/core/module/public_method_defined_spec.rb +0 -18
- data/spec/opal/core/module/remove_const_spec.rb +0 -22
- data/spec/opal/core/module/undef_method_spec.rb +0 -66
- data/spec/opal/core/numeric/bit_and_spec.rb +0 -7
- data/spec/opal/core/numeric/bit_or_spec.rb +0 -8
- data/spec/opal/core/numeric/bit_xor_spec.rb +0 -6
- data/spec/opal/core/numeric/ceil_spec.rb +0 -8
- data/spec/opal/core/numeric/chr_spec.rb +0 -8
- data/spec/opal/core/numeric/comparison_spec.rb +0 -24
- data/spec/opal/core/numeric/complement_spec.rb +0 -8
- data/spec/opal/core/numeric/divide_spec.rb +0 -10
- data/spec/opal/core/numeric/eql_spec.rb +0 -9
- data/spec/opal/core/numeric/exponent_spec.rb +0 -33
- data/spec/opal/core/numeric/floor_spec.rb +0 -8
- data/spec/opal/core/numeric/gt_spec.rb +0 -11
- data/spec/opal/core/numeric/gte_spec.rb +0 -12
- data/spec/opal/core/numeric/integer_spec.rb +0 -9
- data/spec/opal/core/numeric/left_shift_spec.rb +0 -21
- data/spec/opal/core/numeric/lt_spec.rb +0 -11
- data/spec/opal/core/numeric/lte_spec.rb +0 -12
- data/spec/opal/core/numeric/minus_spec.rb +0 -8
- data/spec/opal/core/numeric/modulo_spec.rb +0 -19
- data/spec/opal/core/numeric/multiply_spec.rb +0 -9
- data/spec/opal/core/numeric/next_spec.rb +0 -9
- data/spec/opal/core/numeric/ord_spec.rb +0 -9
- data/spec/opal/core/numeric/plus_spec.rb +0 -8
- data/spec/opal/core/numeric/pred_spec.rb +0 -7
- data/spec/opal/core/numeric/right_shift_spec.rb +0 -25
- data/spec/opal/core/numeric/step_spec.rb +0 -11
- data/spec/opal/core/numeric/succ_spec.rb +0 -9
- data/spec/opal/core/numeric/times_spec.rb +0 -36
- data/spec/opal/core/numeric/to_f_spec.rb +0 -7
- data/spec/opal/core/numeric/to_i_spec.rb +0 -7
- data/spec/opal/core/numeric/to_json_spec.rb +0 -8
- data/spec/opal/core/numeric/to_s_spec.rb +0 -26
- data/spec/opal/core/numeric/uminus_spec.rb +0 -9
- data/spec/opal/core/numeric/upto_spec.rb +0 -19
- data/spec/opal/core/numeric/zero_spec.rb +0 -7
- data/spec/opal/core/object_id_spec.rb +0 -56
- data/spec/opal/core/proc/call_spec.rb +0 -21
- data/spec/opal/core/proc/element_reference_spec.rb +0 -21
- data/spec/opal/core/proc/proc_tricks_spec.rb +0 -7
- data/spec/opal/core/runtime/begin_spec.rb +0 -39
- data/spec/opal/core/runtime/block_spec.rb +0 -23
- data/spec/opal/core/runtime/bridged_classes_spec.rb +0 -123
- data/spec/opal/core/runtime/constants_spec.rb +0 -13
- data/spec/opal/core/runtime/donate_spec.rb +0 -53
- data/spec/opal/core/runtime/eval_spec.rb +0 -5
- data/spec/opal/core/runtime/is_a_spec.rb +0 -36
- data/spec/opal/core/runtime/main_methods_spec.rb +0 -27
- data/spec/opal/core/runtime/method_missing_spec.rb +0 -68
- data/spec/opal/core/runtime/method_spec.rb +0 -31
- data/spec/opal/core/runtime/operator_call_spec.rb +0 -13
- data/spec/opal/core/runtime/paren_spec.rb +0 -14
- data/spec/opal/core/runtime/rescue_spec.rb +0 -106
- data/spec/opal/core/runtime/return_spec.rb +0 -38
- data/spec/opal/core/runtime/singleton_class_spec.rb +0 -13
- data/spec/opal/core/runtime/super_spec.rb +0 -223
- data/spec/opal/core/runtime/truthy_spec.rb +0 -63
- data/spec/opal/core/runtime/variables_spec.rb +0 -20
- data/spec/opal/core/runtime_spec.rb +0 -58
- data/spec/opal/core/source_map_spec.rb +0 -49
- data/spec/opal/core/string_spec.rb +0 -32
- data/spec/opal/core/time_spec.rb +0 -38
- data/spec/opal/javascript_api_spec.rb +0 -16
- data/spec/opal/stdlib/erb/erb_spec.rb +0 -30
- data/spec/opal/stdlib/erb/inline_block.opalerb +0 -3
- data/spec/opal/stdlib/erb/quoted.opalerb +0 -1
- data/spec/opal/stdlib/erb/simple.opalerb +0 -1
- data/spec/opal/stdlib/js_spec.rb +0 -66
- data/spec/opal/stdlib/json/ext_spec.rb +0 -48
- data/spec/opal/stdlib/json/parse_spec.rb +0 -37
- data/spec/opal/stdlib/native/alias_native_spec.rb +0 -27
- data/spec/opal/stdlib/native/array_spec.rb +0 -11
- data/spec/opal/stdlib/native/each_spec.rb +0 -13
- data/spec/opal/stdlib/native/element_reference_spec.rb +0 -16
- data/spec/opal/stdlib/native/exposure_spec.rb +0 -33
- data/spec/opal/stdlib/native/ext_spec.rb +0 -19
- data/spec/opal/stdlib/native/hash_spec.rb +0 -67
- data/spec/opal/stdlib/native/initialize_spec.rb +0 -17
- data/spec/opal/stdlib/native/method_missing_spec.rb +0 -51
- data/spec/opal/stdlib/native/native_alias_spec.rb +0 -19
- data/spec/opal/stdlib/native/native_class_spec.rb +0 -18
- data/spec/opal/stdlib/native/native_module_spec.rb +0 -13
- data/spec/opal/stdlib/native/native_reader_spec.rb +0 -22
- data/spec/opal/stdlib/native/native_writer_spec.rb +0 -30
- data/spec/opal/stdlib/native/new_spec.rb +0 -92
- data/spec/opal/stdlib/native/struct_spec.rb +0 -12
- data/spec/opal/stdlib/promise/always_spec.rb +0 -49
- data/spec/opal/stdlib/promise/error_spec.rb +0 -15
- data/spec/opal/stdlib/promise/rescue_spec.rb +0 -53
- data/spec/opal/stdlib/promise/then_spec.rb +0 -79
- data/spec/opal/stdlib/promise/trace_spec.rb +0 -51
- data/spec/opal/stdlib/promise/value_spec.rb +0 -15
- data/spec/opal/stdlib/promise/when_spec.rb +0 -34
- data/spec/opal/stdlib/source_map_spec.rb +0 -8
- data/spec/opal/stdlib/strscan/scan_spec.rb +0 -11
- data/spec/opal/stdlib/template/paths_spec.rb +0 -10
- data/spec/opal/stdlib/thread/mutex_spec.rb +0 -40
- data/spec/opal/stdlib/thread/thread_queue_spec.rb +0 -32
- data/spec/opal/stdlib/thread/thread_spec.rb +0 -60
- data/spec/ruby_specs +0 -122
- data/spec/spec_helper.rb +0 -27
- data/spec/support/match_helpers.rb +0 -57
- data/spec/support/mspec_rspec_adapter.rb +0 -33
- data/spec/support/rewriters_helper.rb +0 -24
- data/stdlib/phantomjs.rb +0 -17
- data/tasks/testing/sprockets-phantomjs.js +0 -54
- data/test/nodejs/fixtures/hello.rb +0 -1
- data/test/nodejs/test_dir.rb +0 -17
- data/test/nodejs/test_file.rb +0 -87
- data/test/nodejs/test_io.rb +0 -18
- data/test/nodejs/test_opal_builder.rb +0 -12
- data/test/opal/test_keyword.rb +0 -590
- data/test/opal/unsupported_and_bugs.rb +0 -39
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'spec_helper'
|
2
|
-
|
3
|
-
class ExceptionSubclassTest < Exception
|
4
|
-
def custom_method
|
5
|
-
42
|
6
|
-
end
|
7
|
-
end
|
8
|
-
|
9
|
-
describe "Exception" do
|
10
|
-
it "subclasses can have methods defined on them" do
|
11
|
-
ExceptionSubclassTest.new.custom_method.should == 42
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
describe "Native exception" do
|
16
|
-
it "handles messages for native exceptions" do
|
17
|
-
exception = `new Error("native message")`
|
18
|
-
exception.message.should == "native message"
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
# TODO: Delete when this code is added to the ruby spec
|
23
|
-
describe "Exception#to_s" do
|
24
|
-
it "calls #to_s on the message" do
|
25
|
-
message = mock("message")
|
26
|
-
message.should_receive(:to_s).and_return("message").any_number_of_times
|
27
|
-
ExceptionSpecs::Exceptional.new(message).to_s.should == "message"
|
28
|
-
end
|
29
|
-
end
|
30
|
-
|
@@ -1,124 +0,0 @@
|
|
1
|
-
module ClassSpecs
|
2
|
-
|
3
|
-
def self.sclass_with_block
|
4
|
-
class << self
|
5
|
-
yield
|
6
|
-
end
|
7
|
-
end
|
8
|
-
|
9
|
-
def self.sclass_with_return
|
10
|
-
class << self
|
11
|
-
return :inner
|
12
|
-
end
|
13
|
-
return :outer
|
14
|
-
end
|
15
|
-
|
16
|
-
class A; end
|
17
|
-
|
18
|
-
def self.string_class_variables(obj)
|
19
|
-
obj.class_variables.map { |x| x.to_s }
|
20
|
-
end
|
21
|
-
|
22
|
-
def self.string_instance_variables(obj)
|
23
|
-
obj.instance_variables.map { |x| x.to_s }
|
24
|
-
end
|
25
|
-
|
26
|
-
class B
|
27
|
-
@@cvar = :cvar
|
28
|
-
@ivar = :ivar
|
29
|
-
|
30
|
-
end
|
31
|
-
|
32
|
-
class C
|
33
|
-
def self.make_class_variable
|
34
|
-
@@cvar = :cvar
|
35
|
-
end
|
36
|
-
|
37
|
-
def self.make_class_instance_variable
|
38
|
-
@civ = :civ
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
class D
|
43
|
-
def make_class_variable
|
44
|
-
@@cvar = :cvar
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
class E
|
49
|
-
def self.cmeth() :cmeth end
|
50
|
-
def meth() :meth end
|
51
|
-
|
52
|
-
class << self
|
53
|
-
def smeth() :smeth end
|
54
|
-
end
|
55
|
-
|
56
|
-
CONSTANT = :constant!
|
57
|
-
end
|
58
|
-
|
59
|
-
class F; end
|
60
|
-
class F
|
61
|
-
def meth() :meth end
|
62
|
-
end
|
63
|
-
class F
|
64
|
-
def another() :another end
|
65
|
-
end
|
66
|
-
|
67
|
-
class G
|
68
|
-
def override() :nothing end
|
69
|
-
def override() :override end
|
70
|
-
end
|
71
|
-
|
72
|
-
class Container
|
73
|
-
class A; end
|
74
|
-
class B; end
|
75
|
-
end
|
76
|
-
|
77
|
-
O = Object.new
|
78
|
-
class << O
|
79
|
-
def smeth
|
80
|
-
:smeth
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
class H
|
85
|
-
def self.inherited(sub)
|
86
|
-
track_inherited << sub
|
87
|
-
end
|
88
|
-
|
89
|
-
def self.track_inherited
|
90
|
-
@inherited_modules ||= []
|
91
|
-
end
|
92
|
-
end
|
93
|
-
|
94
|
-
class K < H; end
|
95
|
-
|
96
|
-
class I
|
97
|
-
class J < self
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
|
-
class K
|
102
|
-
def example_instance_method
|
103
|
-
end
|
104
|
-
def self.example_class_method
|
105
|
-
end
|
106
|
-
end
|
107
|
-
|
108
|
-
class L; end
|
109
|
-
|
110
|
-
class M < L; end
|
111
|
-
end
|
112
|
-
|
113
|
-
class Class
|
114
|
-
def example_instance_method_of_class; end
|
115
|
-
def self.example_class_method_of_class; end
|
116
|
-
end
|
117
|
-
class << Class
|
118
|
-
def example_instance_method_of_singleton_class; end
|
119
|
-
def self.example_class_method_of_singleton_class; end
|
120
|
-
end
|
121
|
-
class Object
|
122
|
-
def example_instance_method_of_object; end
|
123
|
-
def self.example_class_method_of_object; end
|
124
|
-
end
|
File without changes
|
@@ -1,33 +0,0 @@
|
|
1
|
-
CS_GLOBAL = "global"
|
2
|
-
CS_NIL = nil
|
3
|
-
CS_ZERO = 0
|
4
|
-
CS_BLANK = ""
|
5
|
-
CS_FALSE = false
|
6
|
-
|
7
|
-
module ConstantSpecs
|
8
|
-
|
9
|
-
# Included in ModuleD
|
10
|
-
module ModuleM
|
11
|
-
CS_CONST10 = :const10_11
|
12
|
-
CS_CONST24 = :const24
|
13
|
-
end
|
14
|
-
|
15
|
-
class ClassA
|
16
|
-
CS_CONST10 = :const10_10
|
17
|
-
CS_CONST16 = :const16
|
18
|
-
CS_CONST17 = :const17_2
|
19
|
-
CS_CONST22 = :const22_1
|
20
|
-
|
21
|
-
def self.const_missing(const)
|
22
|
-
const
|
23
|
-
end
|
24
|
-
|
25
|
-
def self.constx; CS_CONSTX; end
|
26
|
-
def self.const10; CS_CONST10; end
|
27
|
-
def self.const16; ParentA.const16; end
|
28
|
-
def self.const22; ParentA.const22 { CS_CONST22 }; end
|
29
|
-
|
30
|
-
def const10; CS_CONST10; end
|
31
|
-
def constx; CS_CONSTX; end
|
32
|
-
end
|
33
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1 +0,0 @@
|
|
1
|
-
$ScratchPad << File.basename(__FILE__)
|
@@ -1,13 +0,0 @@
|
|
1
|
-
describe 'Hash#has_value?' do
|
2
|
-
context 'when hash contains provided value' do
|
3
|
-
it 'returns true' do
|
4
|
-
expect({ a: 1 }.has_value?(1)).to eq(true)
|
5
|
-
end
|
6
|
-
end
|
7
|
-
|
8
|
-
context 'when hash does not contain provided value' do
|
9
|
-
it 'returns false' do
|
10
|
-
expect({ a: 1 }.has_value?(2)).to eq(false)
|
11
|
-
end
|
12
|
-
end
|
13
|
-
end
|
@@ -1,332 +0,0 @@
|
|
1
|
-
describe 'Hash' do
|
2
|
-
|
3
|
-
describe 'internal implementation of string keys' do
|
4
|
-
before :each do
|
5
|
-
@h = {'a' => 123, 'b' => 456}
|
6
|
-
end
|
7
|
-
|
8
|
-
it 'stores keys directly as strings in the `keys` array' do
|
9
|
-
`#@h.$$keys.length`.should == 2
|
10
|
-
`#@h.$$keys[0]`.should == 'a'
|
11
|
-
`#@h.$$keys[1]`.should == 'b'
|
12
|
-
|
13
|
-
@h['c'] = 789
|
14
|
-
|
15
|
-
`#@h.$$keys.length`.should == 3
|
16
|
-
`#@h.$$keys[2]`.should == 'c'
|
17
|
-
end
|
18
|
-
|
19
|
-
it 'stores values directly as objects in the `smap` object by their corresponding string key' do
|
20
|
-
`Object.keys(#@h.$$smap).length`.should == 2
|
21
|
-
`#@h.$$smap['a']`.should == 123
|
22
|
-
`#@h.$$smap['b']`.should == 456
|
23
|
-
|
24
|
-
@h['c'] = 789
|
25
|
-
|
26
|
-
`Object.keys(#@h.$$smap).length`.should == 3
|
27
|
-
`#@h.$$smap['c']`.should == 789
|
28
|
-
end
|
29
|
-
|
30
|
-
it 'does not use the `map` object' do
|
31
|
-
`Object.keys(#@h.$$map).length`.should == 0
|
32
|
-
|
33
|
-
@h['c'] = 789
|
34
|
-
|
35
|
-
`Object.keys(#@h.$$map).length`.should == 0
|
36
|
-
end
|
37
|
-
|
38
|
-
it 'uses the `map` object when an object key is added' do
|
39
|
-
`Object.keys(#@h.$$map).length`.should == 0
|
40
|
-
|
41
|
-
@h[Object.new] = 789
|
42
|
-
|
43
|
-
`Object.keys(#@h.$$map).length`.should == 1
|
44
|
-
end
|
45
|
-
end
|
46
|
-
|
47
|
-
describe 'internal implementation of object keys' do
|
48
|
-
before :each do
|
49
|
-
@obj1 = Object.new
|
50
|
-
@obj2 = Object.new
|
51
|
-
@h = {@obj1 => 123, @obj2 => 456}
|
52
|
-
end
|
53
|
-
|
54
|
-
it 'uses a data structure called "bucket", which is a wrapper object with `key`, `key_hash`, `value`, and `next` properties' do
|
55
|
-
bucket = `#@h.$$keys[0]`
|
56
|
-
`#{bucket}.key`.should == @obj1
|
57
|
-
`#{bucket}.key_hash`.should == @obj1.hash
|
58
|
-
`#{bucket}.value`.should == 123
|
59
|
-
`#{bucket}.next === undefined`.should == true
|
60
|
-
end
|
61
|
-
|
62
|
-
it 'stores keys in the `keys` array as "bucket" objects' do
|
63
|
-
`#@h.$$keys.length`.should == 2
|
64
|
-
`#@h.$$keys[0].key`.should == @obj1
|
65
|
-
`#@h.$$keys[1].key`.should == @obj2
|
66
|
-
|
67
|
-
obj3 = Object.new
|
68
|
-
@h[obj3] = 789
|
69
|
-
|
70
|
-
`#@h.$$keys.length`.should == 3
|
71
|
-
`#@h.$$keys[2].key`.should == obj3
|
72
|
-
end
|
73
|
-
|
74
|
-
it 'stores values in the `map` object as "bucket" objects by #hash string of their corresponding object key' do
|
75
|
-
`Object.keys(#@h.$$map).length`.should == 2
|
76
|
-
`#@h.$$map[#{@obj1.hash}].value`.should == 123
|
77
|
-
`#@h.$$map[#{@obj2.hash}].value`.should == 456
|
78
|
-
|
79
|
-
obj3 = Object.new
|
80
|
-
@h[obj3] = 789
|
81
|
-
|
82
|
-
`Object.keys(#@h.$$map).length`.should == 3
|
83
|
-
`#@h.$$map[#{obj3.hash}].value`.should == 789
|
84
|
-
end
|
85
|
-
|
86
|
-
it 'keeps a pointer to the same "bucket" object in the `keys` array and in the `map` object' do
|
87
|
-
`#@h.$$map[#{@obj1.hash}] === #@h.$$keys[0]`.should == true
|
88
|
-
`#@h.$$map[#{@obj2.hash}] === #@h.$$keys[1]`.should == true
|
89
|
-
end
|
90
|
-
|
91
|
-
it 'does not use the `smap` object' do
|
92
|
-
`Object.keys(#@h.$$smap).length`.should == 0
|
93
|
-
|
94
|
-
@h[Object.new] = 789
|
95
|
-
|
96
|
-
`Object.keys(#@h.$$smap).length`.should == 0
|
97
|
-
end
|
98
|
-
|
99
|
-
it 'uses the `smap` object when a string key is added' do
|
100
|
-
`Object.keys(#@h.$$smap).length`.should == 0
|
101
|
-
|
102
|
-
@h['c'] = 789
|
103
|
-
|
104
|
-
`Object.keys(#@h.$$smap).length`.should == 1
|
105
|
-
end
|
106
|
-
|
107
|
-
it 'allows multiple keys that #hash to the same value to be stored in the Hash' do
|
108
|
-
@hash = {}
|
109
|
-
|
110
|
-
@mock1 = mock('mock1')
|
111
|
-
@mock1.should_receive(:hash).at_least(1).and_return('hhh')
|
112
|
-
@mock1.should_receive(:eql?).exactly(0)
|
113
|
-
|
114
|
-
@mock2 = mock('mock2')
|
115
|
-
@mock2.should_receive(:hash).at_least(1).and_return('hhh')
|
116
|
-
@mock2.should_receive(:eql?).exactly(1).and_return(false)
|
117
|
-
|
118
|
-
@mock3 = mock('mock3')
|
119
|
-
@mock3.should_receive(:hash).at_least(1).and_return('hhh')
|
120
|
-
@mock3.should_receive(:eql?).exactly(2).and_return(false)
|
121
|
-
|
122
|
-
`Object.keys(#@hash.$$map).length`.should == 0
|
123
|
-
`#@hash.$$keys.length`.should == 0
|
124
|
-
|
125
|
-
@hash[@mock1] = 123
|
126
|
-
`Object.keys(#@hash.$$map).length`.should == 1
|
127
|
-
`#@hash.$$keys.length`.should == 1
|
128
|
-
`#@hash.$$keys[0] === #@hash.$$map['hhh']`.should == true
|
129
|
-
`#@hash.$$keys[0].key`.should == @mock1
|
130
|
-
`#@hash.$$keys[0].key_hash`.should == @mock1.hash
|
131
|
-
`#@hash.$$keys[0].value`.should == 123
|
132
|
-
`#@hash.$$keys[0].next === undefined`.should == true
|
133
|
-
|
134
|
-
@hash[@mock2] = 456
|
135
|
-
`Object.keys(#@hash.$$map).length`.should == 1
|
136
|
-
`#@hash.$$keys.length`.should == 2
|
137
|
-
`#@hash.$$keys[1] === #@hash.$$map['hhh'].next`.should == true
|
138
|
-
`#@hash.$$keys[1].key`.should == @mock2
|
139
|
-
`#@hash.$$keys[1].key_hash`.should == @mock2.hash
|
140
|
-
`#@hash.$$keys[1].value`.should == 456
|
141
|
-
`#@hash.$$keys[1].next === undefined`.should == true
|
142
|
-
|
143
|
-
@hash[@mock3] = 789
|
144
|
-
`Object.keys(#@hash.$$map).length`.should == 1
|
145
|
-
`#@hash.$$keys.length`.should == 3
|
146
|
-
`#@hash.$$keys[2] === #@hash.$$map['hhh'].next.next`.should == true
|
147
|
-
`#@hash.$$keys[2].key`.should == @mock3
|
148
|
-
`#@hash.$$keys[2].key_hash`.should == @mock3.hash
|
149
|
-
`#@hash.$$keys[2].value`.should == 789
|
150
|
-
`#@hash.$$keys[2].next === undefined`.should == true
|
151
|
-
|
152
|
-
obj = Object.new
|
153
|
-
@hash[obj] = 999
|
154
|
-
`Object.keys(#@hash.$$map).length`.should == 2
|
155
|
-
`#@hash.$$keys.length`.should == 4
|
156
|
-
`#@hash.$$keys[3] === #@hash.$$map[#{obj.hash}]`.should == true
|
157
|
-
`#@hash.$$keys[3].key`.should == obj
|
158
|
-
`#@hash.$$keys[3].key_hash`.should == obj.hash
|
159
|
-
`#@hash.$$keys[3].value`.should == 999
|
160
|
-
`#@hash.$$keys[3].next === undefined`.should == true
|
161
|
-
end
|
162
|
-
|
163
|
-
it 'correctly updates internal data structures when deleting keys' do
|
164
|
-
@mock1 = mock('mock1')
|
165
|
-
@mock1.should_receive(:hash).any_number_of_times.and_return('hhh')
|
166
|
-
@mock1.should_receive(:eql?).any_number_of_times.and_return(false)
|
167
|
-
|
168
|
-
@mock2 = mock('mock2')
|
169
|
-
@mock2.should_receive(:hash).any_number_of_times.and_return('hhh')
|
170
|
-
@mock2.should_receive(:eql?).any_number_of_times.and_return(false)
|
171
|
-
|
172
|
-
@mock3 = mock('mock3')
|
173
|
-
@mock3.should_receive(:hash).any_number_of_times.and_return('hhh')
|
174
|
-
@mock3.should_receive(:eql?).any_number_of_times.and_return(false)
|
175
|
-
|
176
|
-
@mock4 = mock('mock4')
|
177
|
-
@mock4.should_receive(:hash).any_number_of_times.and_return('hhh')
|
178
|
-
@mock4.should_receive(:eql?).any_number_of_times.and_return(false)
|
179
|
-
|
180
|
-
@hash = {
|
181
|
-
@mock1 => 123,
|
182
|
-
'a' => 'abc',
|
183
|
-
@mock2 => 456,
|
184
|
-
'b' => 'def',
|
185
|
-
@mock3 => 789,
|
186
|
-
@mock4 => 999,
|
187
|
-
'c' => 'ghi',
|
188
|
-
@obj1 => 'xyz'
|
189
|
-
}
|
190
|
-
|
191
|
-
`Opal.hasOwnProperty.call(#@hash.$$map, 'hhh')`.should == true
|
192
|
-
`Opal.hasOwnProperty.call(#@hash.$$map, #{@obj1.hash})`.should == true
|
193
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'a')`.should == true
|
194
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'b')`.should == true
|
195
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'c')`.should == true
|
196
|
-
|
197
|
-
`#@hash.$$keys.length`.should == 8
|
198
|
-
`Object.keys(#@hash.$$map).length`.should == 2
|
199
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
200
|
-
|
201
|
-
`#@hash.$$keys[0].key`.should == @mock1
|
202
|
-
`#@hash.$$keys[1]`.should == 'a'
|
203
|
-
`#@hash.$$keys[2].key`.should == @mock2
|
204
|
-
`#@hash.$$keys[3]`.should == 'b'
|
205
|
-
`#@hash.$$keys[4].key`.should == @mock3
|
206
|
-
`#@hash.$$keys[5].key`.should == @mock4
|
207
|
-
`#@hash.$$keys[6]`.should == 'c'
|
208
|
-
`#@hash.$$keys[7].key`.should == @obj1
|
209
|
-
|
210
|
-
`#@hash.$$map['hhh'] === #@hash.$$keys[0]`.should == true
|
211
|
-
`#@hash.$$keys[0].next === #@hash.$$keys[2]`.should == true
|
212
|
-
`#@hash.$$keys[2].next === #@hash.$$keys[4]`.should == true
|
213
|
-
`#@hash.$$keys[4].next === #@hash.$$keys[5]`.should == true
|
214
|
-
`#@hash.$$keys[5].next === undefined`.should == true
|
215
|
-
|
216
|
-
@hash.delete @mock2
|
217
|
-
|
218
|
-
`#@hash.$$keys.length`.should == 7
|
219
|
-
`Object.keys(#@hash.$$map).length`.should == 2
|
220
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
221
|
-
|
222
|
-
`#@hash.$$keys[0].key`.should == @mock1
|
223
|
-
`#@hash.$$keys[1]`.should == 'a'
|
224
|
-
`#@hash.$$keys[2]`.should == 'b'
|
225
|
-
`#@hash.$$keys[3].key`.should == @mock3
|
226
|
-
`#@hash.$$keys[4].key`.should == @mock4
|
227
|
-
`#@hash.$$keys[5]`.should == 'c'
|
228
|
-
`#@hash.$$keys[6].key`.should == @obj1
|
229
|
-
|
230
|
-
`#@hash.$$map['hhh'] === #@hash.$$keys[0]`.should == true
|
231
|
-
`#@hash.$$keys[0].next === #@hash.$$keys[3]`.should == true
|
232
|
-
`#@hash.$$keys[3].next === #@hash.$$keys[4]`.should == true
|
233
|
-
`#@hash.$$keys[4].next === undefined`.should == true
|
234
|
-
|
235
|
-
@hash.delete @mock4
|
236
|
-
|
237
|
-
`#@hash.$$keys.length`.should == 6
|
238
|
-
`Object.keys(#@hash.$$map).length`.should == 2
|
239
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
240
|
-
|
241
|
-
`#@hash.$$keys[0].key`.should == @mock1
|
242
|
-
`#@hash.$$keys[1]`.should == 'a'
|
243
|
-
`#@hash.$$keys[2]`.should == 'b'
|
244
|
-
`#@hash.$$keys[3].key`.should == @mock3
|
245
|
-
`#@hash.$$keys[4]`.should == 'c'
|
246
|
-
`#@hash.$$keys[5].key`.should == @obj1
|
247
|
-
|
248
|
-
`#@hash.$$map['hhh'] === #@hash.$$keys[0]`.should == true
|
249
|
-
`#@hash.$$keys[0].next === #@hash.$$keys[3]`.should == true
|
250
|
-
`#@hash.$$keys[3].next === undefined`.should == true
|
251
|
-
|
252
|
-
@hash.delete @mock1
|
253
|
-
|
254
|
-
`#@hash.$$keys.length`.should == 5
|
255
|
-
`Object.keys(#@hash.$$map).length`.should == 2
|
256
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
257
|
-
|
258
|
-
`#@hash.$$keys[0]`.should == 'a'
|
259
|
-
`#@hash.$$keys[1]`.should == 'b'
|
260
|
-
`#@hash.$$keys[2].key`.should == @mock3
|
261
|
-
`#@hash.$$keys[3]`.should == 'c'
|
262
|
-
`#@hash.$$keys[4].key`.should == @obj1
|
263
|
-
|
264
|
-
`#@hash.$$map['hhh'] === #@hash.$$keys[2]`.should == true
|
265
|
-
`#@hash.$$keys[2].next === undefined`.should == true
|
266
|
-
|
267
|
-
@hash.delete @mock3
|
268
|
-
|
269
|
-
`#@hash.$$keys.length`.should == 4
|
270
|
-
`Object.keys(#@hash.$$map).length`.should == 1
|
271
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
272
|
-
|
273
|
-
`#@hash.$$keys[0]`.should == 'a'
|
274
|
-
`#@hash.$$keys[1]`.should == 'b'
|
275
|
-
`#@hash.$$keys[2]`.should == 'c'
|
276
|
-
`#@hash.$$keys[3].key`.should == @obj1
|
277
|
-
|
278
|
-
`#@hash.$$map['hhh'] === undefined`.should == true
|
279
|
-
|
280
|
-
@hash.delete @obj1
|
281
|
-
|
282
|
-
`#@hash.$$keys.length`.should == 3
|
283
|
-
`Object.keys(#@hash.$$map).length`.should == 0
|
284
|
-
`Object.keys(#@hash.$$smap).length`.should == 3
|
285
|
-
|
286
|
-
`#@hash.$$keys[0]`.should == 'a'
|
287
|
-
`#@hash.$$keys[1]`.should == 'b'
|
288
|
-
`#@hash.$$keys[2]`.should == 'c'
|
289
|
-
|
290
|
-
`#@hash.$$map[#{@obj1.hash}] === undefined`.should == true
|
291
|
-
|
292
|
-
@hash.delete 'b'
|
293
|
-
|
294
|
-
`#@hash.$$keys.length`.should == 2
|
295
|
-
`Object.keys(#@hash.$$map).length`.should == 0
|
296
|
-
`Object.keys(#@hash.$$smap).length`.should == 2
|
297
|
-
|
298
|
-
`#@hash.$$keys[0]`.should == 'a'
|
299
|
-
`#@hash.$$keys[1]`.should == 'c'
|
300
|
-
`#@hash.$$smap['a']`.should == 'abc'
|
301
|
-
`#@hash.$$smap['b'] === undefined`.should == true
|
302
|
-
`#@hash.$$smap['c']`.should == 'ghi'
|
303
|
-
|
304
|
-
@hash.delete 'c'
|
305
|
-
|
306
|
-
`#@hash.$$keys.length`.should == 1
|
307
|
-
`Object.keys(#@hash.$$map).length`.should == 0
|
308
|
-
`Object.keys(#@hash.$$smap).length`.should == 1
|
309
|
-
|
310
|
-
`#@hash.$$keys[0]`.should == 'a'
|
311
|
-
`#@hash.$$smap['a']`.should == 'abc'
|
312
|
-
`#@hash.$$smap['b'] === undefined`.should == true
|
313
|
-
`#@hash.$$smap['c'] === undefined`.should == true
|
314
|
-
|
315
|
-
@hash.delete 'a'
|
316
|
-
|
317
|
-
`#@hash.$$keys.length`.should == 0
|
318
|
-
`Object.keys(#@hash.$$map).length`.should == 0
|
319
|
-
`Object.keys(#@hash.$$smap).length`.should == 0
|
320
|
-
|
321
|
-
`#@hash.$$smap['a'] === undefined`.should == true
|
322
|
-
`#@hash.$$smap['b'] === undefined`.should == true
|
323
|
-
`#@hash.$$smap['c'] === undefined`.should == true
|
324
|
-
|
325
|
-
`Opal.hasOwnProperty.call(#@hash.$$map, 'hhh')`.should == false
|
326
|
-
`Opal.hasOwnProperty.call(#@hash.$$map, #{@obj1.hash})`.should == false
|
327
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'a')`.should == false
|
328
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'b')`.should == false
|
329
|
-
`Opal.hasOwnProperty.call(#@hash.$$smap, 'c')`.should == false
|
330
|
-
end
|
331
|
-
end
|
332
|
-
end
|