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,17 +0,0 @@
|
|
1
|
-
require File.expand_path('../../fixtures/constants', __FILE__)
|
2
|
-
|
3
|
-
describe "Module#const_missing" do
|
4
|
-
it "is called when an undefined constant is referenced via literal form" do
|
5
|
-
ConstantSpecs::ClassA::CS_CONSTX.should == :CS_CONSTX
|
6
|
-
end
|
7
|
-
|
8
|
-
it "is called when an undefined constant is referenced via #const_get" do
|
9
|
-
ConstantSpecs::ClassA.const_get(:CS_CONSTX).should == :CS_CONSTX
|
10
|
-
end
|
11
|
-
|
12
|
-
it "raises NameError and includes the name of the value that wasn't found" do
|
13
|
-
lambda {
|
14
|
-
ConstantSpecs.const_missing("HelloMissing")
|
15
|
-
}.should raise_error(NameError, /ConstantSpecs::HelloMissing/)
|
16
|
-
end
|
17
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
require File.expand_path('../../fixtures/constants', __FILE__)
|
2
|
-
|
3
|
-
module ConstantSpecs
|
4
|
-
end
|
5
|
-
|
6
|
-
describe "Module#const_set" do
|
7
|
-
it "sets the constant specified by a String or Symbol to the given value" do
|
8
|
-
ConstantSpecs.const_set :CS_CONST401, :const401
|
9
|
-
ConstantSpecs::CS_CONST401.should == :const401
|
10
|
-
|
11
|
-
ConstantSpecs.const_set "CS_CONST402", :const402
|
12
|
-
ConstantSpecs.const_get(:CS_CONST402).should == :const402
|
13
|
-
end
|
14
|
-
|
15
|
-
it "returns the value set" do
|
16
|
-
ConstantSpecs.const_set(:CS_CONST403, :const403).should == :const403
|
17
|
-
end
|
18
|
-
|
19
|
-
# PENDING: needs proper parser implementation
|
20
|
-
#
|
21
|
-
# it "sets the name of an anonymous module" do
|
22
|
-
# m = Module.new
|
23
|
-
# ConstantSpecs.const_set(:CS_CONST1000, m)
|
24
|
-
# m.name.should == "ConstantSpecs::CS_CONST1000"
|
25
|
-
# end
|
26
|
-
|
27
|
-
it "raises a NameError if the name does not start with a capital letter" do
|
28
|
-
lambda { ConstantSpecs.const_set "name", 1 }.should raise_error(NameError)
|
29
|
-
end
|
30
|
-
|
31
|
-
it "raises a NameError if the name starts with a non-alphabetic character" do
|
32
|
-
lambda { ConstantSpecs.const_set "__CONSTX__", 1 }.should raise_error(NameError)
|
33
|
-
lambda { ConstantSpecs.const_set "@Name", 1 }.should raise_error(NameError)
|
34
|
-
lambda { ConstantSpecs.const_set "!Name", 1 }.should raise_error(NameError)
|
35
|
-
lambda { ConstantSpecs.const_set "::Name", 1 }.should raise_error(NameError)
|
36
|
-
end
|
37
|
-
|
38
|
-
it "raises a NameError if the name contains non-word characters" do
|
39
|
-
# underscore (i.e., _) is a valid word character
|
40
|
-
ConstantSpecs.const_set("CS_CONST404", :const404).should == :const404
|
41
|
-
lambda { ConstantSpecs.const_set "Name=", 1 }.should raise_error(NameError)
|
42
|
-
lambda { ConstantSpecs.const_set "Name?", 1 }.should raise_error(NameError)
|
43
|
-
end
|
44
|
-
|
45
|
-
# PENDING: should_receive isn't available on opal-spec
|
46
|
-
#
|
47
|
-
# it "calls #to_str to convert the given name to a String" do
|
48
|
-
#
|
49
|
-
# name = mock("CS_CONST405")
|
50
|
-
# name.should_receive(:to_str).and_return("CS_CONST405")
|
51
|
-
# ConstantSpecs.const_set(name, :const405).should == :const405
|
52
|
-
# ConstantSpecs::CS_CONST405.should == :const405
|
53
|
-
# end
|
54
|
-
|
55
|
-
# PENDING: should_receive isn't available on opal-spec
|
56
|
-
#
|
57
|
-
# it "raises a TypeError if conversion to a String by calling #to_str fails" do
|
58
|
-
# name = mock('123')
|
59
|
-
# lambda { ConstantSpecs.const_set name, 1 }.should raise_error(TypeError)
|
60
|
-
#
|
61
|
-
# name.should_receive(:to_str).and_return(123)
|
62
|
-
# lambda { ConstantSpecs.const_set name, 1 }.should raise_error(TypeError)
|
63
|
-
# end
|
64
|
-
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
module ConstantsSpecsModule
|
2
|
-
MOD_CONST1 = "1"
|
3
|
-
MOD_CONST2 = "2"
|
4
|
-
MOD_CONST3 = "3"
|
5
|
-
|
6
|
-
module Foo
|
7
|
-
FOO = "foo"
|
8
|
-
end
|
9
|
-
end
|
10
|
-
|
11
|
-
class ConstantsSpecsClass
|
12
|
-
CLASS_CONST1 = "1"
|
13
|
-
CLASS_CONST2 = "2"
|
14
|
-
CLASS_CONST3 = "3"
|
15
|
-
end
|
16
|
-
|
17
|
-
class SubConstantsSpecsClass < ConstantsSpecsClass
|
18
|
-
CLASS_CONST4 = "4"
|
19
|
-
end
|
20
|
-
|
21
|
-
describe "Module#constants" do
|
22
|
-
it "should return constants in global scope when called from Module or Class" do
|
23
|
-
result = Module.constants
|
24
|
-
result.should include("Module", "Object", "TrueClass", "FalseClass", "RUBY_ENGINE")
|
25
|
-
result2 = Class.constants
|
26
|
-
result.should == result2
|
27
|
-
end
|
28
|
-
|
29
|
-
it "should only return constants and child modules defined directly on module" do
|
30
|
-
result = ConstantsSpecsModule.constants
|
31
|
-
result.size.should == 4
|
32
|
-
result.should include("MOD_CONST1", "MOD_CONST2", "MOD_CONST3", "Foo")
|
33
|
-
result = ConstantsSpecsModule::Foo.constants
|
34
|
-
result.size.should == 1
|
35
|
-
result.should include("FOO")
|
36
|
-
end
|
37
|
-
|
38
|
-
it "should only return constants defined directly on class" do
|
39
|
-
result = ConstantsSpecsClass.constants
|
40
|
-
result.size.should == 3
|
41
|
-
result.should include("CLASS_CONST1", "CLASS_CONST2", "CLASS_CONST3")
|
42
|
-
end
|
43
|
-
|
44
|
-
it "should include constants inherited from superclass" do
|
45
|
-
result = SubConstantsSpecsClass.constants
|
46
|
-
result.size.should == 4
|
47
|
-
result.should include("CLASS_CONST4", "CLASS_CONST1", "CLASS_CONST2", "CLASS_CONST3")
|
48
|
-
end
|
49
|
-
end
|
@@ -1,444 +0,0 @@
|
|
1
|
-
module ModuleSpecs
|
2
|
-
CONST = :plain_constant
|
3
|
-
|
4
|
-
class Subclass < Module
|
5
|
-
end
|
6
|
-
|
7
|
-
class SubclassSpec
|
8
|
-
end
|
9
|
-
|
10
|
-
class RemoveClassVariable
|
11
|
-
end
|
12
|
-
|
13
|
-
module LookupModInMod
|
14
|
-
INCS = :ethereal
|
15
|
-
end
|
16
|
-
|
17
|
-
module LookupMod
|
18
|
-
include LookupModInMod
|
19
|
-
|
20
|
-
MODS = :rockers
|
21
|
-
end
|
22
|
-
|
23
|
-
class Lookup
|
24
|
-
include LookupMod
|
25
|
-
LOOKIE = :lookie
|
26
|
-
end
|
27
|
-
|
28
|
-
class LookupChild < Lookup
|
29
|
-
end
|
30
|
-
|
31
|
-
class Parent
|
32
|
-
# For private_class_method spec
|
33
|
-
#def self.private_method; end
|
34
|
-
#private_class_method :private_method
|
35
|
-
|
36
|
-
def undefed_method() end
|
37
|
-
undef_method :undefed_method
|
38
|
-
|
39
|
-
def parent_method; end
|
40
|
-
def another_parent_method; end
|
41
|
-
|
42
|
-
# For public_class_method spec
|
43
|
-
private
|
44
|
-
def self.public_method; end
|
45
|
-
# public_class_method :public_method
|
46
|
-
|
47
|
-
public
|
48
|
-
def public_parent() end
|
49
|
-
|
50
|
-
protected
|
51
|
-
def protected_parent() end
|
52
|
-
|
53
|
-
private
|
54
|
-
def private_parent() end
|
55
|
-
end
|
56
|
-
|
57
|
-
module Basic
|
58
|
-
def public_module() end
|
59
|
-
|
60
|
-
protected
|
61
|
-
def protected_module() end
|
62
|
-
|
63
|
-
private
|
64
|
-
def private_module() end
|
65
|
-
end
|
66
|
-
|
67
|
-
module Super
|
68
|
-
include Basic
|
69
|
-
|
70
|
-
def public_super_module() end
|
71
|
-
|
72
|
-
protected
|
73
|
-
def protected_super_module() end
|
74
|
-
|
75
|
-
private
|
76
|
-
def private_super_module() end
|
77
|
-
|
78
|
-
def super_included_method; end
|
79
|
-
|
80
|
-
class SuperChild
|
81
|
-
end
|
82
|
-
end
|
83
|
-
|
84
|
-
module Internal
|
85
|
-
end
|
86
|
-
|
87
|
-
class Child < Parent
|
88
|
-
include Super
|
89
|
-
|
90
|
-
class << self
|
91
|
-
# include Internal
|
92
|
-
end
|
93
|
-
attr_accessor :accessor_method
|
94
|
-
|
95
|
-
def undefed_child() end
|
96
|
-
|
97
|
-
def public_child() end
|
98
|
-
|
99
|
-
undef_method :parent_method
|
100
|
-
undef_method :another_parent_method
|
101
|
-
|
102
|
-
protected
|
103
|
-
def protected_child() end
|
104
|
-
|
105
|
-
private
|
106
|
-
def private_child() end
|
107
|
-
end
|
108
|
-
|
109
|
-
class Grandchild < Child
|
110
|
-
undef_method :super_included_method
|
111
|
-
end
|
112
|
-
|
113
|
-
class Child2 < Parent
|
114
|
-
attr_reader :foo
|
115
|
-
end
|
116
|
-
|
117
|
-
# Be careful touching the Counts* classes as there used for testing
|
118
|
-
# private_instance_methods, public_instance_methods, etc. So adding, removing
|
119
|
-
# a method will break those tests.
|
120
|
-
module CountsMixin
|
121
|
-
def public_3; end
|
122
|
-
public :public_3
|
123
|
-
|
124
|
-
def private_3; end
|
125
|
-
private :private_3
|
126
|
-
|
127
|
-
def protected_3; end
|
128
|
-
protected :protected_3
|
129
|
-
end
|
130
|
-
|
131
|
-
class CountsParent
|
132
|
-
include CountsMixin
|
133
|
-
|
134
|
-
def public_2; end
|
135
|
-
|
136
|
-
private
|
137
|
-
def private_2; end
|
138
|
-
|
139
|
-
protected
|
140
|
-
def protected_2; end
|
141
|
-
end
|
142
|
-
|
143
|
-
class CountsChild < CountsParent
|
144
|
-
def public_1; end
|
145
|
-
|
146
|
-
private
|
147
|
-
def private_1; end
|
148
|
-
|
149
|
-
protected
|
150
|
-
def protected_1; end
|
151
|
-
end
|
152
|
-
|
153
|
-
module AddConstant
|
154
|
-
end
|
155
|
-
|
156
|
-
module A
|
157
|
-
CONSTANT_A = :a
|
158
|
-
OVERRIDE = :a
|
159
|
-
def ma(); :a; end
|
160
|
-
def self.cma(); :a; end
|
161
|
-
end
|
162
|
-
|
163
|
-
module B
|
164
|
-
CONSTANT_B = :b
|
165
|
-
OVERRIDE = :b
|
166
|
-
include A
|
167
|
-
def mb(); :b; end
|
168
|
-
def self.cmb(); :b; end
|
169
|
-
end
|
170
|
-
|
171
|
-
class C
|
172
|
-
OVERRIDE = :c
|
173
|
-
include B
|
174
|
-
end
|
175
|
-
|
176
|
-
module Z
|
177
|
-
MODULE_SPEC_TOPLEVEL_CONSTANT = 1
|
178
|
-
end
|
179
|
-
|
180
|
-
module Alias
|
181
|
-
def report() :report end
|
182
|
-
alias publish report
|
183
|
-
end
|
184
|
-
|
185
|
-
class Allonym
|
186
|
-
include ModuleSpecs::Alias
|
187
|
-
end
|
188
|
-
|
189
|
-
class Aliasing
|
190
|
-
def self.make_alias(*a)
|
191
|
-
alias_method(*a)
|
192
|
-
end
|
193
|
-
|
194
|
-
def public_one; 1; end
|
195
|
-
|
196
|
-
def public_two(n); n * 2; end
|
197
|
-
|
198
|
-
private
|
199
|
-
def private_one; 1; end
|
200
|
-
|
201
|
-
protected
|
202
|
-
def protected_one; 1; end
|
203
|
-
end
|
204
|
-
|
205
|
-
module AliasingSuper
|
206
|
-
|
207
|
-
module Parent
|
208
|
-
def super_call(arg)
|
209
|
-
arg
|
210
|
-
end
|
211
|
-
end
|
212
|
-
|
213
|
-
module Child
|
214
|
-
include Parent
|
215
|
-
def super_call(arg)
|
216
|
-
super(arg)
|
217
|
-
end
|
218
|
-
end
|
219
|
-
|
220
|
-
class Target
|
221
|
-
include Child
|
222
|
-
alias_method :alias_super_call, :super_call
|
223
|
-
alias_method :super_call, :alias_super_call
|
224
|
-
end
|
225
|
-
end
|
226
|
-
|
227
|
-
|
228
|
-
module ReopeningModule
|
229
|
-
def foo; true; end
|
230
|
-
# module_function :foo
|
231
|
-
private :foo
|
232
|
-
end
|
233
|
-
|
234
|
-
# Yes, we want to re-open the module
|
235
|
-
module ReopeningModule
|
236
|
-
alias :foo2 :foo
|
237
|
-
# module_function :foo2
|
238
|
-
end
|
239
|
-
|
240
|
-
module Nesting
|
241
|
-
@tests = {}
|
242
|
-
def self.[](name); @tests[name]; end
|
243
|
-
def self.[]=(name, val); @tests[name] = val; end
|
244
|
-
def self.meta; class << self; self; end; end
|
245
|
-
|
246
|
-
# Nesting[:basic] = Module.nesting
|
247
|
-
|
248
|
-
module ::ModuleSpecs
|
249
|
-
# Nesting[:open_first_level] = Module.nesting
|
250
|
-
end
|
251
|
-
|
252
|
-
class << self
|
253
|
-
# Nesting[:open_meta] = Module.nesting
|
254
|
-
end
|
255
|
-
|
256
|
-
def self.called_from_module_method
|
257
|
-
# Module.nesting
|
258
|
-
end
|
259
|
-
|
260
|
-
class NestedClass
|
261
|
-
# Nesting[:nest_class] = Module.nesting
|
262
|
-
|
263
|
-
def self.called_from_class_method
|
264
|
-
# Module.nesting
|
265
|
-
end
|
266
|
-
|
267
|
-
def called_from_inst_method
|
268
|
-
# Module.nesting
|
269
|
-
end
|
270
|
-
end
|
271
|
-
|
272
|
-
end
|
273
|
-
|
274
|
-
# Nesting[:first_level] = Module.nesting
|
275
|
-
|
276
|
-
module InstanceMethMod
|
277
|
-
def bar(); :bar; end
|
278
|
-
end
|
279
|
-
|
280
|
-
class InstanceMeth
|
281
|
-
include InstanceMethMod
|
282
|
-
def foo(); :foo; end
|
283
|
-
end
|
284
|
-
|
285
|
-
class InstanceMethChild < InstanceMeth
|
286
|
-
end
|
287
|
-
|
288
|
-
module ClassVars
|
289
|
-
class A
|
290
|
-
@@a_cvar = :a_cvar
|
291
|
-
end
|
292
|
-
|
293
|
-
module M
|
294
|
-
@@m_cvar = :m_cvar
|
295
|
-
end
|
296
|
-
|
297
|
-
class B < A
|
298
|
-
include M
|
299
|
-
|
300
|
-
@@b_cvar = :b_cvar
|
301
|
-
end
|
302
|
-
end
|
303
|
-
|
304
|
-
class CVars
|
305
|
-
@@cls = :class
|
306
|
-
|
307
|
-
class << self
|
308
|
-
def cls
|
309
|
-
@@cls
|
310
|
-
end
|
311
|
-
@@meta = :meta
|
312
|
-
end
|
313
|
-
|
314
|
-
def self.meta
|
315
|
-
@@meta
|
316
|
-
end
|
317
|
-
|
318
|
-
def meta
|
319
|
-
@@meta
|
320
|
-
end
|
321
|
-
end
|
322
|
-
|
323
|
-
module MVars
|
324
|
-
@@mvar = :mvar
|
325
|
-
end
|
326
|
-
|
327
|
-
class SubModule < Module
|
328
|
-
attr_reader :special
|
329
|
-
def initialize
|
330
|
-
@special = 10
|
331
|
-
end
|
332
|
-
end
|
333
|
-
|
334
|
-
module MA; end
|
335
|
-
module MB
|
336
|
-
include MA
|
337
|
-
end
|
338
|
-
module MC; end
|
339
|
-
|
340
|
-
class MultipleIncludes
|
341
|
-
include MB
|
342
|
-
end
|
343
|
-
|
344
|
-
# empty modules
|
345
|
-
module M1; end
|
346
|
-
module M2; end
|
347
|
-
|
348
|
-
module Autoload
|
349
|
-
def self.use_ex1
|
350
|
-
begin
|
351
|
-
begin
|
352
|
-
raise "test exception"
|
353
|
-
rescue ModuleSpecs::Autoload::EX1
|
354
|
-
end
|
355
|
-
rescue RuntimeError
|
356
|
-
return :good
|
357
|
-
end
|
358
|
-
end
|
359
|
-
end
|
360
|
-
|
361
|
-
# This class isn't inherited from or included in anywhere. It exists to test
|
362
|
-
# 1.9's constant scoping rules
|
363
|
-
class Detached
|
364
|
-
DETATCHED_CONSTANT = :d
|
365
|
-
end
|
366
|
-
|
367
|
-
class ParentPrivateMethodRedef
|
368
|
-
private
|
369
|
-
def private_method_redefined
|
370
|
-
:before_redefinition
|
371
|
-
end
|
372
|
-
end
|
373
|
-
|
374
|
-
class ChildPrivateMethodMadePublic < ParentPrivateMethodRedef
|
375
|
-
public :private_method_redefined
|
376
|
-
end
|
377
|
-
|
378
|
-
class ParentPrivateMethodRedef
|
379
|
-
def private_method_redefined
|
380
|
-
:after_redefinition
|
381
|
-
end
|
382
|
-
end
|
383
|
-
|
384
|
-
module CyclicAppendA
|
385
|
-
end
|
386
|
-
|
387
|
-
module CyclicAppendB
|
388
|
-
include CyclicAppendA
|
389
|
-
end
|
390
|
-
|
391
|
-
module ExtendObject
|
392
|
-
C = :test
|
393
|
-
def test_method
|
394
|
-
"hello test"
|
395
|
-
end
|
396
|
-
end
|
397
|
-
|
398
|
-
module ExtendObjectPrivate
|
399
|
-
class << self
|
400
|
-
def extend_object(obj)
|
401
|
-
ScratchPad.record :extended
|
402
|
-
end
|
403
|
-
private :extend_object
|
404
|
-
end
|
405
|
-
end
|
406
|
-
end
|
407
|
-
|
408
|
-
class Object
|
409
|
-
def module_specs_public_method_on_object; end
|
410
|
-
|
411
|
-
def module_specs_private_method_on_object; end
|
412
|
-
private :module_specs_private_method_on_object
|
413
|
-
|
414
|
-
def module_specs_protected_method_on_object; end
|
415
|
-
protected :module_specs_private_method_on_object
|
416
|
-
|
417
|
-
def module_specs_private_method_on_object_for_kernel_public; end
|
418
|
-
private :module_specs_private_method_on_object_for_kernel_public
|
419
|
-
|
420
|
-
def module_specs_public_method_on_object_for_kernel_protected; end
|
421
|
-
def module_specs_public_method_on_object_for_kernel_private; end
|
422
|
-
end
|
423
|
-
|
424
|
-
module Kernel
|
425
|
-
def module_specs_public_method_on_kernel; end
|
426
|
-
|
427
|
-
alias_method :module_specs_alias_on_kernel, :module_specs_public_method_on_object
|
428
|
-
|
429
|
-
public :module_specs_private_method_on_object_for_kernel_public
|
430
|
-
protected :module_specs_public_method_on_object_for_kernel_protected
|
431
|
-
private :module_specs_public_method_on_object_for_kernel_private
|
432
|
-
end
|
433
|
-
|
434
|
-
class Class
|
435
|
-
def test_method_overlapping_module_method
|
436
|
-
:class
|
437
|
-
end
|
438
|
-
end
|
439
|
-
|
440
|
-
class Module
|
441
|
-
def test_method_overlapping_module_method
|
442
|
-
:module
|
443
|
-
end
|
444
|
-
end
|