therubyracer 0.4.7-x86-darwin-9
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of therubyracer might be problematic. Click here for more details.
- data/Doxyfile +1514 -0
- data/History.txt +39 -0
- data/Manifest.txt +1191 -0
- data/README.rdoc +157 -0
- data/Rakefile +49 -0
- data/docs/data_conversion.txt +18 -0
- data/ext/v8/callbacks.cpp +160 -0
- data/ext/v8/callbacks.h +14 -0
- data/ext/v8/convert_ruby.cpp +8 -0
- data/ext/v8/convert_ruby.h +99 -0
- data/ext/v8/convert_string.cpp +10 -0
- data/ext/v8/convert_string.h +73 -0
- data/ext/v8/convert_v8.cpp +9 -0
- data/ext/v8/convert_v8.h +121 -0
- data/ext/v8/converters.cpp +83 -0
- data/ext/v8/converters.h +23 -0
- data/ext/v8/extconf.rb +44 -0
- data/ext/v8/upstream/2.0.6/.sconsign.dblite +0 -0
- data/ext/v8/upstream/2.0.6/AUTHORS +23 -0
- data/ext/v8/upstream/2.0.6/ChangeLog +1479 -0
- data/ext/v8/upstream/2.0.6/LICENSE +55 -0
- data/ext/v8/upstream/2.0.6/SConstruct +1028 -0
- data/ext/v8/upstream/2.0.6/benchmarks/README.txt +63 -0
- data/ext/v8/upstream/2.0.6/benchmarks/base.js +264 -0
- data/ext/v8/upstream/2.0.6/benchmarks/crypto.js +1698 -0
- data/ext/v8/upstream/2.0.6/benchmarks/deltablue.js +880 -0
- data/ext/v8/upstream/2.0.6/benchmarks/earley-boyer.js +4684 -0
- data/ext/v8/upstream/2.0.6/benchmarks/raytrace.js +935 -0
- data/ext/v8/upstream/2.0.6/benchmarks/regexp.js +1614 -0
- data/ext/v8/upstream/2.0.6/benchmarks/revisions.html +86 -0
- data/ext/v8/upstream/2.0.6/benchmarks/richards.js +539 -0
- data/ext/v8/upstream/2.0.6/benchmarks/run.html +141 -0
- data/ext/v8/upstream/2.0.6/benchmarks/run.js +61 -0
- data/ext/v8/upstream/2.0.6/benchmarks/splay.js +378 -0
- data/ext/v8/upstream/2.0.6/benchmarks/style.css +77 -0
- data/ext/v8/upstream/2.0.6/benchmarks/v8-logo.png +0 -0
- data/ext/v8/upstream/2.0.6/include/v8-debug.h +275 -0
- data/ext/v8/upstream/2.0.6/include/v8.h +3236 -0
- data/ext/v8/upstream/2.0.6/samples/SConscript +38 -0
- data/ext/v8/upstream/2.0.6/samples/count-hosts.js +42 -0
- data/ext/v8/upstream/2.0.6/samples/process.cc +622 -0
- data/ext/v8/upstream/2.0.6/samples/shell.cc +303 -0
- data/ext/v8/upstream/2.0.6/src/SConscript +283 -0
- data/ext/v8/upstream/2.0.6/src/accessors.cc +695 -0
- data/ext/v8/upstream/2.0.6/src/accessors.h +114 -0
- data/ext/v8/upstream/2.0.6/src/allocation.cc +198 -0
- data/ext/v8/upstream/2.0.6/src/allocation.h +169 -0
- data/ext/v8/upstream/2.0.6/src/api.cc +3831 -0
- data/ext/v8/upstream/2.0.6/src/api.h +479 -0
- data/ext/v8/upstream/2.0.6/src/apinatives.js +110 -0
- data/ext/v8/upstream/2.0.6/src/apiutils.h +69 -0
- data/ext/v8/upstream/2.0.6/src/arguments.h +97 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm-inl.h +277 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.cc +1821 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-arm.h +1027 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2-inl.h +267 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.cc +1821 -0
- data/ext/v8/upstream/2.0.6/src/arm/assembler-thumb2.h +1027 -0
- data/ext/v8/upstream/2.0.6/src/arm/builtins-arm.cc +1271 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm-inl.h +74 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.cc +6682 -0
- data/ext/v8/upstream/2.0.6/src/arm/codegen-arm.h +535 -0
- data/ext/v8/upstream/2.0.6/src/arm/constants-arm.cc +112 -0
- data/ext/v8/upstream/2.0.6/src/arm/constants-arm.h +347 -0
- data/ext/v8/upstream/2.0.6/src/arm/cpu-arm.cc +132 -0
- data/ext/v8/upstream/2.0.6/src/arm/debug-arm.cc +213 -0
- data/ext/v8/upstream/2.0.6/src/arm/disasm-arm.cc +1166 -0
- data/ext/v8/upstream/2.0.6/src/arm/fast-codegen-arm.cc +1698 -0
- data/ext/v8/upstream/2.0.6/src/arm/frames-arm.cc +123 -0
- data/ext/v8/upstream/2.0.6/src/arm/frames-arm.h +162 -0
- data/ext/v8/upstream/2.0.6/src/arm/ic-arm.cc +849 -0
- data/ext/v8/upstream/2.0.6/src/arm/jump-target-arm.cc +238 -0
- data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.cc +1259 -0
- data/ext/v8/upstream/2.0.6/src/arm/macro-assembler-arm.h +423 -0
- data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.cc +1266 -0
- data/ext/v8/upstream/2.0.6/src/arm/regexp-macro-assembler-arm.h +282 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm-inl.h +103 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.cc +59 -0
- data/ext/v8/upstream/2.0.6/src/arm/register-allocator-arm.h +43 -0
- data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.cc +2264 -0
- data/ext/v8/upstream/2.0.6/src/arm/simulator-arm.h +306 -0
- data/ext/v8/upstream/2.0.6/src/arm/stub-cache-arm.cc +1516 -0
- data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.cc +412 -0
- data/ext/v8/upstream/2.0.6/src/arm/virtual-frame-arm.h +532 -0
- data/ext/v8/upstream/2.0.6/src/array.js +1154 -0
- data/ext/v8/upstream/2.0.6/src/assembler.cc +772 -0
- data/ext/v8/upstream/2.0.6/src/assembler.h +525 -0
- data/ext/v8/upstream/2.0.6/src/ast.cc +512 -0
- data/ext/v8/upstream/2.0.6/src/ast.h +1820 -0
- data/ext/v8/upstream/2.0.6/src/bootstrapper.cc +1680 -0
- data/ext/v8/upstream/2.0.6/src/bootstrapper.h +103 -0
- data/ext/v8/upstream/2.0.6/src/builtins.cc +851 -0
- data/ext/v8/upstream/2.0.6/src/builtins.h +245 -0
- data/ext/v8/upstream/2.0.6/src/bytecodes-irregexp.h +104 -0
- data/ext/v8/upstream/2.0.6/src/char-predicates-inl.h +86 -0
- data/ext/v8/upstream/2.0.6/src/char-predicates.h +65 -0
- data/ext/v8/upstream/2.0.6/src/checks.cc +100 -0
- data/ext/v8/upstream/2.0.6/src/checks.h +284 -0
- data/ext/v8/upstream/2.0.6/src/code-stubs.cc +164 -0
- data/ext/v8/upstream/2.0.6/src/code-stubs.h +164 -0
- data/ext/v8/upstream/2.0.6/src/code.h +68 -0
- data/ext/v8/upstream/2.0.6/src/codegen-inl.h +88 -0
- data/ext/v8/upstream/2.0.6/src/codegen.cc +504 -0
- data/ext/v8/upstream/2.0.6/src/codegen.h +522 -0
- data/ext/v8/upstream/2.0.6/src/compilation-cache.cc +490 -0
- data/ext/v8/upstream/2.0.6/src/compilation-cache.h +98 -0
- data/ext/v8/upstream/2.0.6/src/compiler.cc +1132 -0
- data/ext/v8/upstream/2.0.6/src/compiler.h +107 -0
- data/ext/v8/upstream/2.0.6/src/contexts.cc +256 -0
- data/ext/v8/upstream/2.0.6/src/contexts.h +345 -0
- data/ext/v8/upstream/2.0.6/src/conversions-inl.h +95 -0
- data/ext/v8/upstream/2.0.6/src/conversions.cc +709 -0
- data/ext/v8/upstream/2.0.6/src/conversions.h +118 -0
- data/ext/v8/upstream/2.0.6/src/counters.cc +78 -0
- data/ext/v8/upstream/2.0.6/src/counters.h +239 -0
- data/ext/v8/upstream/2.0.6/src/cpu.h +65 -0
- data/ext/v8/upstream/2.0.6/src/d8-debug.cc +345 -0
- data/ext/v8/upstream/2.0.6/src/d8-debug.h +155 -0
- data/ext/v8/upstream/2.0.6/src/d8-posix.cc +675 -0
- data/ext/v8/upstream/2.0.6/src/d8-readline.cc +128 -0
- data/ext/v8/upstream/2.0.6/src/d8-windows.cc +42 -0
- data/ext/v8/upstream/2.0.6/src/d8.cc +776 -0
- data/ext/v8/upstream/2.0.6/src/d8.h +225 -0
- data/ext/v8/upstream/2.0.6/src/d8.js +1625 -0
- data/ext/v8/upstream/2.0.6/src/date-delay.js +1138 -0
- data/ext/v8/upstream/2.0.6/src/dateparser-inl.h +114 -0
- data/ext/v8/upstream/2.0.6/src/dateparser.cc +186 -0
- data/ext/v8/upstream/2.0.6/src/dateparser.h +240 -0
- data/ext/v8/upstream/2.0.6/src/debug-agent.cc +425 -0
- data/ext/v8/upstream/2.0.6/src/debug-agent.h +129 -0
- data/ext/v8/upstream/2.0.6/src/debug-delay.js +2073 -0
- data/ext/v8/upstream/2.0.6/src/debug.cc +2751 -0
- data/ext/v8/upstream/2.0.6/src/debug.h +866 -0
- data/ext/v8/upstream/2.0.6/src/disasm.h +77 -0
- data/ext/v8/upstream/2.0.6/src/disassembler.cc +318 -0
- data/ext/v8/upstream/2.0.6/src/disassembler.h +56 -0
- data/ext/v8/upstream/2.0.6/src/dtoa-config.c +91 -0
- data/ext/v8/upstream/2.0.6/src/execution.cc +701 -0
- data/ext/v8/upstream/2.0.6/src/execution.h +312 -0
- data/ext/v8/upstream/2.0.6/src/factory.cc +957 -0
- data/ext/v8/upstream/2.0.6/src/factory.h +393 -0
- data/ext/v8/upstream/2.0.6/src/fast-codegen.cc +725 -0
- data/ext/v8/upstream/2.0.6/src/fast-codegen.h +371 -0
- data/ext/v8/upstream/2.0.6/src/flag-definitions.h +426 -0
- data/ext/v8/upstream/2.0.6/src/flags.cc +555 -0
- data/ext/v8/upstream/2.0.6/src/flags.h +81 -0
- data/ext/v8/upstream/2.0.6/src/frame-element.cc +45 -0
- data/ext/v8/upstream/2.0.6/src/frame-element.h +235 -0
- data/ext/v8/upstream/2.0.6/src/frames-inl.h +215 -0
- data/ext/v8/upstream/2.0.6/src/frames.cc +749 -0
- data/ext/v8/upstream/2.0.6/src/frames.h +659 -0
- data/ext/v8/upstream/2.0.6/src/func-name-inferrer.cc +76 -0
- data/ext/v8/upstream/2.0.6/src/func-name-inferrer.h +135 -0
- data/ext/v8/upstream/2.0.6/src/global-handles.cc +516 -0
- data/ext/v8/upstream/2.0.6/src/global-handles.h +180 -0
- data/ext/v8/upstream/2.0.6/src/globals.h +608 -0
- data/ext/v8/upstream/2.0.6/src/handles-inl.h +76 -0
- data/ext/v8/upstream/2.0.6/src/handles.cc +811 -0
- data/ext/v8/upstream/2.0.6/src/handles.h +367 -0
- data/ext/v8/upstream/2.0.6/src/hashmap.cc +226 -0
- data/ext/v8/upstream/2.0.6/src/hashmap.h +120 -0
- data/ext/v8/upstream/2.0.6/src/heap-inl.h +407 -0
- data/ext/v8/upstream/2.0.6/src/heap-profiler.cc +695 -0
- data/ext/v8/upstream/2.0.6/src/heap-profiler.h +277 -0
- data/ext/v8/upstream/2.0.6/src/heap.cc +4204 -0
- data/ext/v8/upstream/2.0.6/src/heap.h +1704 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32-inl.h +325 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.cc +2375 -0
- data/ext/v8/upstream/2.0.6/src/ia32/assembler-ia32.h +914 -0
- data/ext/v8/upstream/2.0.6/src/ia32/builtins-ia32.cc +1222 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32-inl.h +46 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.cc +9770 -0
- data/ext/v8/upstream/2.0.6/src/ia32/codegen-ia32.h +834 -0
- data/ext/v8/upstream/2.0.6/src/ia32/cpu-ia32.cc +79 -0
- data/ext/v8/upstream/2.0.6/src/ia32/debug-ia32.cc +208 -0
- data/ext/v8/upstream/2.0.6/src/ia32/disasm-ia32.cc +1357 -0
- data/ext/v8/upstream/2.0.6/src/ia32/fast-codegen-ia32.cc +1813 -0
- data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.cc +111 -0
- data/ext/v8/upstream/2.0.6/src/ia32/frames-ia32.h +135 -0
- data/ext/v8/upstream/2.0.6/src/ia32/ic-ia32.cc +1490 -0
- data/ext/v8/upstream/2.0.6/src/ia32/jump-target-ia32.cc +432 -0
- data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.cc +1517 -0
- data/ext/v8/upstream/2.0.6/src/ia32/macro-assembler-ia32.h +528 -0
- data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.cc +1219 -0
- data/ext/v8/upstream/2.0.6/src/ia32/regexp-macro-assembler-ia32.h +230 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32-inl.h +82 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.cc +99 -0
- data/ext/v8/upstream/2.0.6/src/ia32/register-allocator-ia32.h +43 -0
- data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.cc +30 -0
- data/ext/v8/upstream/2.0.6/src/ia32/simulator-ia32.h +62 -0
- data/ext/v8/upstream/2.0.6/src/ia32/stub-cache-ia32.cc +1961 -0
- data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.cc +1105 -0
- data/ext/v8/upstream/2.0.6/src/ia32/virtual-frame-ia32.h +580 -0
- data/ext/v8/upstream/2.0.6/src/ic-inl.h +93 -0
- data/ext/v8/upstream/2.0.6/src/ic.cc +1426 -0
- data/ext/v8/upstream/2.0.6/src/ic.h +443 -0
- data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.cc +646 -0
- data/ext/v8/upstream/2.0.6/src/interpreter-irregexp.h +48 -0
- data/ext/v8/upstream/2.0.6/src/json-delay.js +254 -0
- data/ext/v8/upstream/2.0.6/src/jsregexp.cc +5234 -0
- data/ext/v8/upstream/2.0.6/src/jsregexp.h +1439 -0
- data/ext/v8/upstream/2.0.6/src/jump-target-inl.h +49 -0
- data/ext/v8/upstream/2.0.6/src/jump-target.cc +383 -0
- data/ext/v8/upstream/2.0.6/src/jump-target.h +280 -0
- data/ext/v8/upstream/2.0.6/src/list-inl.h +166 -0
- data/ext/v8/upstream/2.0.6/src/list.h +158 -0
- data/ext/v8/upstream/2.0.6/src/log-inl.h +126 -0
- data/ext/v8/upstream/2.0.6/src/log-utils.cc +503 -0
- data/ext/v8/upstream/2.0.6/src/log-utils.h +292 -0
- data/ext/v8/upstream/2.0.6/src/log.cc +1457 -0
- data/ext/v8/upstream/2.0.6/src/log.h +371 -0
- data/ext/v8/upstream/2.0.6/src/macro-assembler.h +93 -0
- data/ext/v8/upstream/2.0.6/src/macros.py +137 -0
- data/ext/v8/upstream/2.0.6/src/mark-compact.cc +2007 -0
- data/ext/v8/upstream/2.0.6/src/mark-compact.h +442 -0
- data/ext/v8/upstream/2.0.6/src/math.js +263 -0
- data/ext/v8/upstream/2.0.6/src/memory.h +74 -0
- data/ext/v8/upstream/2.0.6/src/messages.cc +177 -0
- data/ext/v8/upstream/2.0.6/src/messages.h +112 -0
- data/ext/v8/upstream/2.0.6/src/messages.js +937 -0
- data/ext/v8/upstream/2.0.6/src/mirror-delay.js +2332 -0
- data/ext/v8/upstream/2.0.6/src/mksnapshot.cc +169 -0
- data/ext/v8/upstream/2.0.6/src/natives.h +63 -0
- data/ext/v8/upstream/2.0.6/src/objects-debug.cc +1317 -0
- data/ext/v8/upstream/2.0.6/src/objects-inl.h +3044 -0
- data/ext/v8/upstream/2.0.6/src/objects.cc +8306 -0
- data/ext/v8/upstream/2.0.6/src/objects.h +4960 -0
- data/ext/v8/upstream/2.0.6/src/oprofile-agent.cc +116 -0
- data/ext/v8/upstream/2.0.6/src/oprofile-agent.h +69 -0
- data/ext/v8/upstream/2.0.6/src/parser.cc +4810 -0
- data/ext/v8/upstream/2.0.6/src/parser.h +195 -0
- data/ext/v8/upstream/2.0.6/src/platform-freebsd.cc +645 -0
- data/ext/v8/upstream/2.0.6/src/platform-linux.cc +808 -0
- data/ext/v8/upstream/2.0.6/src/platform-macos.cc +643 -0
- data/ext/v8/upstream/2.0.6/src/platform-nullos.cc +454 -0
- data/ext/v8/upstream/2.0.6/src/platform-openbsd.cc +597 -0
- data/ext/v8/upstream/2.0.6/src/platform-posix.cc +380 -0
- data/ext/v8/upstream/2.0.6/src/platform-win32.cc +1908 -0
- data/ext/v8/upstream/2.0.6/src/platform.h +556 -0
- data/ext/v8/upstream/2.0.6/src/prettyprinter.cc +1511 -0
- data/ext/v8/upstream/2.0.6/src/prettyprinter.h +219 -0
- data/ext/v8/upstream/2.0.6/src/property.cc +96 -0
- data/ext/v8/upstream/2.0.6/src/property.h +327 -0
- data/ext/v8/upstream/2.0.6/src/regexp-delay.js +406 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp-inl.h +78 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.cc +464 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-irregexp.h +141 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.cc +356 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler-tracer.h +103 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.cc +240 -0
- data/ext/v8/upstream/2.0.6/src/regexp-macro-assembler.h +220 -0
- data/ext/v8/upstream/2.0.6/src/regexp-stack.cc +103 -0
- data/ext/v8/upstream/2.0.6/src/regexp-stack.h +123 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator-inl.h +74 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator.cc +100 -0
- data/ext/v8/upstream/2.0.6/src/register-allocator.h +295 -0
- data/ext/v8/upstream/2.0.6/src/rewriter.cc +855 -0
- data/ext/v8/upstream/2.0.6/src/rewriter.h +54 -0
- data/ext/v8/upstream/2.0.6/src/runtime.cc +8163 -0
- data/ext/v8/upstream/2.0.6/src/runtime.h +432 -0
- data/ext/v8/upstream/2.0.6/src/runtime.js +626 -0
- data/ext/v8/upstream/2.0.6/src/scanner.cc +1098 -0
- data/ext/v8/upstream/2.0.6/src/scanner.h +425 -0
- data/ext/v8/upstream/2.0.6/src/scopeinfo.cc +649 -0
- data/ext/v8/upstream/2.0.6/src/scopeinfo.h +236 -0
- data/ext/v8/upstream/2.0.6/src/scopes.cc +963 -0
- data/ext/v8/upstream/2.0.6/src/scopes.h +401 -0
- data/ext/v8/upstream/2.0.6/src/serialize.cc +1260 -0
- data/ext/v8/upstream/2.0.6/src/serialize.h +404 -0
- data/ext/v8/upstream/2.0.6/src/shell.h +55 -0
- data/ext/v8/upstream/2.0.6/src/simulator.h +41 -0
- data/ext/v8/upstream/2.0.6/src/smart-pointer.h +109 -0
- data/ext/v8/upstream/2.0.6/src/snapshot-common.cc +97 -0
- data/ext/v8/upstream/2.0.6/src/snapshot-empty.cc +40 -0
- data/ext/v8/upstream/2.0.6/src/snapshot.h +59 -0
- data/ext/v8/upstream/2.0.6/src/spaces-inl.h +372 -0
- data/ext/v8/upstream/2.0.6/src/spaces.cc +2864 -0
- data/ext/v8/upstream/2.0.6/src/spaces.h +2072 -0
- data/ext/v8/upstream/2.0.6/src/string-stream.cc +584 -0
- data/ext/v8/upstream/2.0.6/src/string-stream.h +189 -0
- data/ext/v8/upstream/2.0.6/src/string.js +901 -0
- data/ext/v8/upstream/2.0.6/src/stub-cache.cc +1108 -0
- data/ext/v8/upstream/2.0.6/src/stub-cache.h +578 -0
- data/ext/v8/upstream/2.0.6/src/third_party/dtoa/COPYING +15 -0
- data/ext/v8/upstream/2.0.6/src/third_party/dtoa/dtoa.c +3330 -0
- data/ext/v8/upstream/2.0.6/src/third_party/valgrind/valgrind.h +3925 -0
- data/ext/v8/upstream/2.0.6/src/token.cc +56 -0
- data/ext/v8/upstream/2.0.6/src/token.h +270 -0
- data/ext/v8/upstream/2.0.6/src/top.cc +991 -0
- data/ext/v8/upstream/2.0.6/src/top.h +459 -0
- data/ext/v8/upstream/2.0.6/src/unicode-inl.h +238 -0
- data/ext/v8/upstream/2.0.6/src/unicode.cc +749 -0
- data/ext/v8/upstream/2.0.6/src/unicode.h +279 -0
- data/ext/v8/upstream/2.0.6/src/uri.js +415 -0
- data/ext/v8/upstream/2.0.6/src/usage-analyzer.cc +426 -0
- data/ext/v8/upstream/2.0.6/src/usage-analyzer.h +40 -0
- data/ext/v8/upstream/2.0.6/src/utils.cc +322 -0
- data/ext/v8/upstream/2.0.6/src/utils.h +592 -0
- data/ext/v8/upstream/2.0.6/src/v8-counters.cc +55 -0
- data/ext/v8/upstream/2.0.6/src/v8-counters.h +198 -0
- data/ext/v8/upstream/2.0.6/src/v8.cc +193 -0
- data/ext/v8/upstream/2.0.6/src/v8.h +119 -0
- data/ext/v8/upstream/2.0.6/src/v8natives.js +846 -0
- data/ext/v8/upstream/2.0.6/src/v8threads.cc +450 -0
- data/ext/v8/upstream/2.0.6/src/v8threads.h +144 -0
- data/ext/v8/upstream/2.0.6/src/variables.cc +163 -0
- data/ext/v8/upstream/2.0.6/src/variables.h +235 -0
- data/ext/v8/upstream/2.0.6/src/version.cc +88 -0
- data/ext/v8/upstream/2.0.6/src/version.h +64 -0
- data/ext/v8/upstream/2.0.6/src/virtual-frame.cc +381 -0
- data/ext/v8/upstream/2.0.6/src/virtual-frame.h +44 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64-inl.h +352 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.cc +2539 -0
- data/ext/v8/upstream/2.0.6/src/x64/assembler-x64.h +1399 -0
- data/ext/v8/upstream/2.0.6/src/x64/builtins-x64.cc +1255 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64-inl.h +46 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.cc +8223 -0
- data/ext/v8/upstream/2.0.6/src/x64/codegen-x64.h +785 -0
- data/ext/v8/upstream/2.0.6/src/x64/cpu-x64.cc +79 -0
- data/ext/v8/upstream/2.0.6/src/x64/debug-x64.cc +202 -0
- data/ext/v8/upstream/2.0.6/src/x64/disasm-x64.cc +1596 -0
- data/ext/v8/upstream/2.0.6/src/x64/fast-codegen-x64.cc +1820 -0
- data/ext/v8/upstream/2.0.6/src/x64/frames-x64.cc +109 -0
- data/ext/v8/upstream/2.0.6/src/x64/frames-x64.h +121 -0
- data/ext/v8/upstream/2.0.6/src/x64/ic-x64.cc +1392 -0
- data/ext/v8/upstream/2.0.6/src/x64/jump-target-x64.cc +432 -0
- data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.cc +2409 -0
- data/ext/v8/upstream/2.0.6/src/x64/macro-assembler-x64.h +765 -0
- data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.cc +1337 -0
- data/ext/v8/upstream/2.0.6/src/x64/regexp-macro-assembler-x64.h +295 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64-inl.h +86 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.cc +84 -0
- data/ext/v8/upstream/2.0.6/src/x64/register-allocator-x64.h +43 -0
- data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.cc +27 -0
- data/ext/v8/upstream/2.0.6/src/x64/simulator-x64.h +63 -0
- data/ext/v8/upstream/2.0.6/src/x64/stub-cache-x64.cc +1884 -0
- data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.cc +1089 -0
- data/ext/v8/upstream/2.0.6/src/x64/virtual-frame-x64.h +560 -0
- data/ext/v8/upstream/2.0.6/src/zone-inl.h +297 -0
- data/ext/v8/upstream/2.0.6/src/zone.cc +193 -0
- data/ext/v8/upstream/2.0.6/src/zone.h +305 -0
- data/ext/v8/upstream/2.0.6/test/cctest/SConscript +95 -0
- data/ext/v8/upstream/2.0.6/test/cctest/cctest.cc +126 -0
- data/ext/v8/upstream/2.0.6/test/cctest/cctest.h +211 -0
- data/ext/v8/upstream/2.0.6/test/cctest/cctest.status +54 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-accessors.cc +450 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-alloc.cc +215 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-api.cc +8699 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-arm.cc +227 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-ia32.cc +395 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-assembler-x64.cc +292 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-ast.cc +97 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-compiler.cc +318 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-conversions.cc +130 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-debug.cc +5788 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-decls.cc +593 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-disasm-arm.cc +281 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-disasm-ia32.cc +418 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-flags.cc +234 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-func-name-inference.cc +267 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-hashmap.cc +176 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-heap-profiler.cc +396 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-heap.cc +796 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-list.cc +101 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-lock.cc +63 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-log-stack-tracer.cc +372 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-log-utils.cc +310 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-log.cc +1081 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-macro-assembler-x64.cc +2104 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-mark-compact.cc +341 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-parsing.cc +129 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-platform-linux.cc +80 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-platform-macos.cc +10 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-platform-nullos.cc +80 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-platform-win32.cc +26 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-regexp.cc +1815 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-serialize.cc +438 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-sockets.cc +162 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-spaces.cc +248 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-strings.cc +432 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-thread-termination.cc +290 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-threads.cc +52 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-utils.cc +186 -0
- data/ext/v8/upstream/2.0.6/test/cctest/test-version.cc +89 -0
- data/ext/v8/upstream/2.0.6/test/cctest/testcfg.py +108 -0
- data/ext/v8/upstream/2.0.6/test/es5conform/README +14 -0
- data/ext/v8/upstream/2.0.6/test/es5conform/es5conform.status +226 -0
- data/ext/v8/upstream/2.0.6/test/es5conform/harness-adapt.js +74 -0
- data/ext/v8/upstream/2.0.6/test/es5conform/testcfg.py +108 -0
- data/ext/v8/upstream/2.0.6/test/message/message.status +31 -0
- data/ext/v8/upstream/2.0.6/test/message/overwritten-builtins.js +31 -0
- data/ext/v8/upstream/2.0.6/test/message/overwritten-builtins.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/regress/regress-73.js +33 -0
- data/ext/v8/upstream/2.0.6/test/message/regress/regress-73.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/regress/regress-75.js +32 -0
- data/ext/v8/upstream/2.0.6/test/message/regress/regress-75.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/simple-throw.js +28 -0
- data/ext/v8/upstream/2.0.6/test/message/simple-throw.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/testcfg.py +135 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-no-message.js +51 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-no-message.out +26 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-return-in-finally.js +39 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-return-in-finally.out +28 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch-and-finally.js +34 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch-and-finally.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch.js +34 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-catch.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-finally.js +34 -0
- data/ext/v8/upstream/2.0.6/test/message/try-catch-finally-throw-in-finally.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-return-in-finally.js +37 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-return-in-finally.out +28 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-finally.js +32 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-finally.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try-and-finally.js +32 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try-and-finally.out +30 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try.js +32 -0
- data/ext/v8/upstream/2.0.6/test/message/try-finally-throw-in-try.out +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/api-call-after-bypassed-exception.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/apply.js +196 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-apply.js +134 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-call-apply.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-enum.js +52 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-indirect.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-lazy.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-opt.js +130 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments-read-and-assignment.js +164 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/arguments.js +97 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-concat.js +120 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-constructor.js +119 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-functions-prototype.js +159 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-indexing.js +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-iteration.js +228 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-join.js +45 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-length-number-conversion.js +53 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-length.js +111 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-reduce.js +514 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-sort.js +362 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/array-splice.js +314 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/ascii-regexp-subject.js +49 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/big-array-literal.js +111 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/big-object-literal.js +114 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/binary-operation-overwrite.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bit-not.js +75 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bitwise-operations-undefined.js +49 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/body-not-visible.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-1344252.js +79 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-222.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-223.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-900066.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/bugs/bug-941049.js +100 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/call-non-function-call.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/call-non-function.js +63 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/call.js +87 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/char-escape.js +53 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/class-of-builtins.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/closure.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/codegen-coverage.js +91 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compare-character.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compare-nan.js +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/countoperation.js +111 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/function-call.js +52 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/globals.js +65 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/jsnatives.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/literals-assignment.js +104 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/literals.js +52 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/loops.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/objectliterals.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/property-simple.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/short-circuit.js +102 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/compiler/thisfunction.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/const-declaration.js +172 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/const-eval-init.js +111 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/const-redecl.js +220 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/const.js +70 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/constant-folding.js +232 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/context-variable-assignments.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/cyclic-array-to-string.js +65 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/cyrillic.js +199 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/d8-os.js +180 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/date-parse.js +268 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/date.js +149 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-backtrace-text.js +122 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-backtrace.js +272 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-breakpoints.js +120 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-changebreakpoint.js +108 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-clearbreakpoint.js +101 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-clearbreakpointgroup.js +117 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-compile-event.js +126 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-conditional-breakpoints.js +171 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-constructed-by.js +60 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-constructor.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-continue.js +114 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-enable-disable-breakpoints.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-arguments.js +93 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-bool-constructor.js +80 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-locals.js +132 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-recursive.js +167 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate-with.js +77 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-evaluate.js +118 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-event-listener.js +73 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-handle.js +252 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-ignore-breakpoints.js +89 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-mirror-cache.js +85 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-multiple-breakpoints.js +105 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-referenced-by.js +112 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-references.js +118 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-scopes.js +761 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-script-breakpoints.js +112 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-script.js +92 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-scripts-request.js +108 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-setbreakpoint.js +165 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-sourceinfo.js +352 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-sourceslice.js +74 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-step-stub-callfunction.js +87 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-step.js +82 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-accessor.js +248 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-builtin.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-call-function-stub.js +115 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-constructor.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepin-function-call.js +149 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepnext-do-while.js +79 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepout-recursive-function.js +106 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-stepout-to-builtin.js +84 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-suspend.js +96 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/debug-version.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/declare-locally.js +43 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/deep-recursion.js +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delay-syntax-error.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delete-global-properties.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delete-in-eval.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delete-in-with.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delete-vars-from-eval.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/delete.js +163 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/div-mod.js +157 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/do-not-strip-fc.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/dont-enum-array-holes.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/dont-reinit-global-var.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/double-equals.js +114 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/dtoa.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/enumeration-order.js +109 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/error-constructors.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/escape.js +118 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/eval-enclosing-function-name.js +76 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/eval-typeof-non-existing.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/eval.js +157 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/execScript-case-insensitive.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/extra-arguments.js +54 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/extra-commas.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/for-in-null-or-undefined.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/for-in-special-cases.js +64 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/for-in.js +86 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/fun-as-prototype.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/fun-name.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-arguments-null.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-caller.js +48 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-names.js +133 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-property.js +29 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-prototype.js +98 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function-source.js +49 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/function.js +83 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/fuzz-accessors.js +85 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/fuzz-natives.js +159 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/get-own-property-descriptor.js +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/get-prototype-of.js +68 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/getter-in-prototype.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/getter-in-value-prototype.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-const-var-conflicts.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-deleted-property-ic.js +45 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-deleted-property-keyed.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-ic.js +48 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-eval-in-with.js +59 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-eval.js +85 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-load-from-nested-eval.js +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-vars-eval.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/global-vars-with.js +43 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/greedy.js +60 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/has-own-property.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/html-comments.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/html-string-funcs.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/if-in-undefined.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/in.js +159 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/indexed-accessors.js +120 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/instanceof.js +93 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/integer-to-string.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/invalid-lhs.js +65 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/invalid-source-element.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/json.js +207 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/keyed-ic.js +236 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/keyed-storage-extend.js +55 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/large-object-allocation.js +300 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/large-object-literal.js +56 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/lazy-load.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/leakcheck.js +53 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/length.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/local-load-from-eval.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/math-min-max.js +105 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/megamorphic-callbacks.js +70 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-array.js +138 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-boolean.js +59 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-date.js +77 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-error.js +94 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-function.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-null.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-number.js +77 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-object.js +227 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-regexp.js +110 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-script.js +100 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-string.js +89 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-undefined.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mirror-unresolved-function.js +81 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mjsunit.js +203 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mjsunit.status +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/mul-exhaustive.js +4511 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/multiple-return.js +62 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/negate-zero.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/negate.js +59 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/new.js +56 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/newline-in-string.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/no-branch-elimination.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/no-octal-constants-above-256.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/no-semicolon.js +45 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/non-ascii-replace.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/nul-characters.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/number-limits.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/number-string-index-call.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/number-tostring-small.js +395 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/number-tostring.js +338 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/obj-construct.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/object-create.js +250 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/object-literal-gc.js +66 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/object-literal.js +105 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/override-read-only-property.js +64 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/parse-int-float.js +85 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/property-load-across-eval.js +85 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/property-object-key.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/proto.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/prototype.js +93 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/receiver-in-with-calls.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-UC16.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-call-as-function.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-capture.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-captures.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-indexof.js +77 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-lookahead.js +166 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-loop-capture.js +29 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-multiline-stack-trace.js +116 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-multiline.js +112 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-standalones.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-static.js +167 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp-string-methods.js +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regexp.js +390 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1030466.js +45 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1036894.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1039610.js +29 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1050043.js +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1062422.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1066899.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1081309.js +110 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1102760.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1110164.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1112051.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1114040.js +58 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1134697.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-114.js +43 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-116.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1170187.js +80 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1173979.js +48 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1175390.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1177518.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1177809.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1178598.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1182832.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1187524.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1199401.js +75 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1199637.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1200351.js +2032 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1201933.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1203459.js +29 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1207276.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1213516.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1213575.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1215653.js +365 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-124.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1254366.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1327557.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1341167.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1346700.js +29 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-137.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1439135.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-149.js +28 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1493017.js +52 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-155924.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-171.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-176.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-186.js +72 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-187.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-189.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-191.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-1919169.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-192.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-193.js +44 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-20070207.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-201.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-219.js +176 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-220.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-221.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-2249423.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-225.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-227.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-231.js +92 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-233.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-244.js +67 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-246.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-253.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-254.js +58 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-259.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-260.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-263.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-265.js +64 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-267.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-269.js +49 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-279.js +62 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-284.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-286.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-294.js +43 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-312.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-317.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-318.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-326.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-334.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-341.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-345.js +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-349.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-35.js +33 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-351.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-386.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-392.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-394.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-396.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-397.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-399.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-406.js +69 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-416.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-475.js +28 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-483.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-485.js +64 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-486.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-490.js +48 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-491.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-492.js +52 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-496.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-502.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-503.js +63 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-515.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-524.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-526.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-540.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-545.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-57.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-580.js +55 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-588599.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-6-9-regexp.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-662254.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-666721.js +53 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-667061.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-670147.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-674753.js +87 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-676025.js +31 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-678525.js +59 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-682649.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-69.js +43 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-734862.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-737588.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-74.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-780423.js +39 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-799761.js +92 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-806473.js +60 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-842017.js +60 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-86.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-87.js +58 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-874178.js +32 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-875031.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-877615.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-892742.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-900055.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-900966.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-91.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-925537.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-937896.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-990205.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-992733.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-996542.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-998565.js +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-crbug-18639.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/regress/regress-r3391.js +77 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/scanner.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/short-circuit-boolean.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/simple-constructor.js +140 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/sin-cos.js +45 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/smi-negative-zero.js +100 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/smi-ops.js +671 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/sparse-array-reverse.js +131 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/sparse-array.js +41 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/stack-traces.js +204 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/str-to-num.js +158 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/stress-array-push.js +34 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/strict-equals.js +90 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-add.js +195 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-case.js +28 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-charat.js +53 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-charcodeat.js +192 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-compare-alignment.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-flatten.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-index.js +154 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-indexof-1.js +99 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-indexof-2.js +68 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-lastindexof.js +88 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-localecompare.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-match.js +149 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-replace-gc.js +57 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-replace.js +182 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-search.js +30 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/string-split.js +126 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/substr.js +65 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/switch.js +289 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/testcfg.py +137 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/array-isarray.js +48 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/array-splice-webkit.js +62 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/object-keys.js +68 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/regexp-pcre.js +6603 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/third_party/string-trim.js +107 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/this-in-callbacks.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/this.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/throw-and-catch-function.js +50 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/throw-exception-for-null-access.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/to-precision.js +82 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/to_number_order.js +129 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tobool.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/toint32.js +129 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/codemap.js +180 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/consarray.js +60 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/csvparser.js +79 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/logreader.js +98 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/profile.js +348 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/profile_view.js +95 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/splaytree.js +166 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.default +55 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.gc-state +21 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.ignore-unknown +51 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor-test.separate-ic +61 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/tools/tickprocessor.js +409 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/top-level-assignments.js +107 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/touint32.js +72 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/transcendentals.js +49 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/try-catch-extension-object.js +58 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/try-catch-scopes.js +42 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/try-finally-nested.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/try.js +394 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/typeof.js +40 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/undeletable-functions.js +181 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-case-overoptimization.js +35 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-string-to-number.js +46 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/unicode-test.js +9169 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/unusual-constructor.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/uri.js +78 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/value-callic-prototype-change.js +94 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/var.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/with-function-expression.js +36 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/with-leave.js +61 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/with-parameter-access.js +47 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/with-prototype.js +44 -0
- data/ext/v8/upstream/2.0.6/test/mjsunit/with-value.js +38 -0
- data/ext/v8/upstream/2.0.6/test/mozilla/mozilla-shell-emulation.js +37 -0
- data/ext/v8/upstream/2.0.6/test/mozilla/mozilla.status +815 -0
- data/ext/v8/upstream/2.0.6/test/mozilla/testcfg.py +138 -0
- data/ext/v8/upstream/2.0.6/test/sputnik/README +6 -0
- data/ext/v8/upstream/2.0.6/test/sputnik/sputnik.status +318 -0
- data/ext/v8/upstream/2.0.6/test/sputnik/testcfg.py +112 -0
- data/ext/v8/upstream/2.0.6/tools/codemap.js +258 -0
- data/ext/v8/upstream/2.0.6/tools/consarray.js +93 -0
- data/ext/v8/upstream/2.0.6/tools/csvparser.js +98 -0
- data/ext/v8/upstream/2.0.6/tools/gyp/v8.gyp +620 -0
- data/ext/v8/upstream/2.0.6/tools/js2c.py +376 -0
- data/ext/v8/upstream/2.0.6/tools/js2c.pyc +0 -0
- data/ext/v8/upstream/2.0.6/tools/jsmin.py +280 -0
- data/ext/v8/upstream/2.0.6/tools/jsmin.pyc +0 -0
- data/ext/v8/upstream/2.0.6/tools/linux-tick-processor +24 -0
- data/ext/v8/upstream/2.0.6/tools/linux-tick-processor.py +78 -0
- data/ext/v8/upstream/2.0.6/tools/logreader.js +320 -0
- data/ext/v8/upstream/2.0.6/tools/mac-nm +18 -0
- data/ext/v8/upstream/2.0.6/tools/mac-tick-processor +6 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/annotate +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/common +19 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/dump +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/report +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/reset +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/run +14 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/shutdown +7 -0
- data/ext/v8/upstream/2.0.6/tools/oprofile/start +7 -0
- data/ext/v8/upstream/2.0.6/tools/presubmit.py +299 -0
- data/ext/v8/upstream/2.0.6/tools/process-heap-prof.py +120 -0
- data/ext/v8/upstream/2.0.6/tools/profile.js +621 -0
- data/ext/v8/upstream/2.0.6/tools/profile_view.js +224 -0
- data/ext/v8/upstream/2.0.6/tools/run-valgrind.py +77 -0
- data/ext/v8/upstream/2.0.6/tools/splaytree.js +322 -0
- data/ext/v8/upstream/2.0.6/tools/splaytree.py +226 -0
- data/ext/v8/upstream/2.0.6/tools/stats-viewer.py +456 -0
- data/ext/v8/upstream/2.0.6/tools/test.py +1370 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor-driver.js +53 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor.js +731 -0
- data/ext/v8/upstream/2.0.6/tools/tickprocessor.py +535 -0
- data/ext/v8/upstream/2.0.6/tools/utils.py +82 -0
- data/ext/v8/upstream/2.0.6/tools/utils.pyc +0 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/README.txt +71 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/arm.vsprops +14 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/common.vsprops +35 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8.vcproj +199 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_arm.vcproj +199 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8_x64.vcproj +201 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/d8js2c.cmd +6 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/debug.vsprops +17 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/ia32.vsprops +13 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/js2c.cmd +6 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/release.vsprops +24 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.sln +101 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.sln +74 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_arm.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base.vcproj +971 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_arm.vcproj +983 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_base_x64.vcproj +959 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest.vcproj +255 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_arm.vcproj +243 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_cctest_x64.vcproj +257 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_mksnapshot_x64.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_arm.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_process_sample_x64.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_arm.vcproj +151 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_shell_sample_x64.vcproj +153 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot.vcproj +142 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc.vcproj +92 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_cc_x64.vcproj +92 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_snapshot_x64.vcproj +142 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.sln +101 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/v8_x64.vcproj +223 -0
- data/ext/v8/upstream/2.0.6/tools/visual_studio/x64.vsprops +13 -0
- data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.bat +5 -0
- data/ext/v8/upstream/2.0.6/tools/windows-tick-processor.py +137 -0
- data/ext/v8/upstream/scons/CHANGES.txt +5183 -0
- data/ext/v8/upstream/scons/LICENSE.txt +20 -0
- data/ext/v8/upstream/scons/MANIFEST +202 -0
- data/ext/v8/upstream/scons/PKG-INFO +13 -0
- data/ext/v8/upstream/scons/README.txt +273 -0
- data/ext/v8/upstream/scons/RELEASE.txt +1040 -0
- data/ext/v8/upstream/scons/engine/SCons/Action.py +1256 -0
- data/ext/v8/upstream/scons/engine/SCons/Builder.py +868 -0
- data/ext/v8/upstream/scons/engine/SCons/CacheDir.py +217 -0
- data/ext/v8/upstream/scons/engine/SCons/Conftest.py +794 -0
- data/ext/v8/upstream/scons/engine/SCons/Debug.py +237 -0
- data/ext/v8/upstream/scons/engine/SCons/Defaults.py +485 -0
- data/ext/v8/upstream/scons/engine/SCons/Environment.py +2327 -0
- data/ext/v8/upstream/scons/engine/SCons/Errors.py +207 -0
- data/ext/v8/upstream/scons/engine/SCons/Executor.py +636 -0
- data/ext/v8/upstream/scons/engine/SCons/Job.py +435 -0
- data/ext/v8/upstream/scons/engine/SCons/Memoize.py +292 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/Alias.py +153 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/FS.py +3220 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/Python.py +128 -0
- data/ext/v8/upstream/scons/engine/SCons/Node/__init__.py +1341 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/BoolOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/EnumOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/ListOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/PackageOption.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/PathOption.py +76 -0
- data/ext/v8/upstream/scons/engine/SCons/Options/__init__.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/PathList.py +232 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/__init__.py +236 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/aix.py +70 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/cygwin.py +55 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/darwin.py +46 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/hpux.py +46 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/irix.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/os2.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/posix.py +264 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/sunos.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Platform/win32.py +386 -0
- data/ext/v8/upstream/scons/engine/SCons/SConf.py +1038 -0
- data/ext/v8/upstream/scons/engine/SCons/SConsign.py +381 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/C.py +132 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/D.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Dir.py +111 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Fortran.py +320 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/IDL.py +48 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/LaTeX.py +378 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/Prog.py +103 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/RC.py +55 -0
- data/ext/v8/upstream/scons/engine/SCons/Scanner/__init__.py +415 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/Interactive.py +386 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/Main.py +1360 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/SConsOptions.py +944 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/SConscript.py +642 -0
- data/ext/v8/upstream/scons/engine/SCons/Script/__init__.py +414 -0
- data/ext/v8/upstream/scons/engine/SCons/Sig.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Subst.py +911 -0
- data/ext/v8/upstream/scons/engine/SCons/Taskmaster.py +1030 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/386asm.py +61 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/BitKeeper.py +65 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/CVS.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/FortranCommon.py +247 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/JavaCommon.py +324 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/__init__.py +56 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/arch.py +61 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/common.py +210 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/netframework.py +84 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/sdk.py +321 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vc.py +367 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/MSCommon/vs.py +497 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/Perforce.py +104 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/PharLapCommon.py +138 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/RCS.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/SCCS.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/Subversion.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/__init__.py +675 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixc++.py +82 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixcc.py +74 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixf77.py +80 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/aixlink.py +76 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/applelink.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ar.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/as.py +78 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/bcc32.py +82 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/c++.py +99 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/cc.py +114 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/cvf.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/default.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dmd.py +224 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvi.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvipdf.py +125 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/dvips.py +94 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f77.py +62 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f90.py +62 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/f95.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/filesystem.py +98 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/fortran.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/g++.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/g77.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gas.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gcc.py +80 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gfortran.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gnulink.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/gs.py +81 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hpc++.py +85 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hpcc.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/hplink.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/icc.py +59 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/icl.py +52 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ifl.py +72 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ifort.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ilink.py +59 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ilink32.py +60 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/install.py +229 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/intelc.py +490 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/ipkg.py +71 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/jar.py +110 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/javac.py +234 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/javah.py +138 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/latex.py +79 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/lex.py +99 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/link.py +121 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/linkloc.py +112 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/m4.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/masm.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/midl.py +90 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mingw.py +159 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mslib.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mslink.py +266 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mssdk.py +50 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/msvc.py +269 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/msvs.py +1439 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mwcc.py +208 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/mwld.py +107 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/nasm.py +72 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/__init__.py +314 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/ipk.py +185 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/msi.py +526 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/rpm.py +367 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_tarbz2.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_targz.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/src_zip.py +43 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/tarbz2.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/targz.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/packaging/zip.py +44 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdf.py +78 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdflatex.py +83 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/pdftex.py +108 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/qt.py +336 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rmic.py +121 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rpcgen.py +70 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/rpm.py +132 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgiar.py +68 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgic++.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgicc.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sgilink.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunar.py +67 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunc++.py +142 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/suncc.py +58 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf77.py +63 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf90.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunf95.py +64 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/sunlink.py +77 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/swig.py +186 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tar.py +73 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tex.py +805 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/textfile.py +175 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/tlib.py +53 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/wix.py +100 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/yacc.py +131 -0
- data/ext/v8/upstream/scons/engine/SCons/Tool/zip.py +100 -0
- data/ext/v8/upstream/scons/engine/SCons/Util.py +1645 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/BoolVariable.py +91 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/EnumVariable.py +107 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/ListVariable.py +139 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/PackageVariable.py +109 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/PathVariable.py +147 -0
- data/ext/v8/upstream/scons/engine/SCons/Variables/__init__.py +317 -0
- data/ext/v8/upstream/scons/engine/SCons/Warnings.py +228 -0
- data/ext/v8/upstream/scons/engine/SCons/__init__.py +49 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/__init__.py +302 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_UserString.py +98 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_hashlib.py +91 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_itertools.py +124 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_optparse.py +1725 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets.py +583 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_sets15.py +176 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_shlex.py +325 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_subprocess.py +1296 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/_scons_textwrap.py +382 -0
- data/ext/v8/upstream/scons/engine/SCons/compat/builtins.py +187 -0
- data/ext/v8/upstream/scons/engine/SCons/cpp.py +598 -0
- data/ext/v8/upstream/scons/engine/SCons/dblite.py +248 -0
- data/ext/v8/upstream/scons/engine/SCons/exitfuncs.py +77 -0
- data/ext/v8/upstream/scons/os_spawnv_fix.diff +83 -0
- data/ext/v8/upstream/scons/scons-time.1 +1017 -0
- data/ext/v8/upstream/scons/scons.1 +15179 -0
- data/ext/v8/upstream/scons/sconsign.1 +208 -0
- data/ext/v8/upstream/scons/script/scons +184 -0
- data/ext/v8/upstream/scons/script/scons-time +1529 -0
- data/ext/v8/upstream/scons/script/scons.bat +31 -0
- data/ext/v8/upstream/scons/script/sconsign +508 -0
- data/ext/v8/upstream/scons/setup.cfg +6 -0
- data/ext/v8/upstream/scons/setup.py +427 -0
- data/ext/v8/v8.cpp +81 -0
- data/ext/v8/v8_cxt.cpp +92 -0
- data/ext/v8/v8_cxt.h +20 -0
- data/ext/v8/v8_func.cpp +10 -0
- data/ext/v8/v8_func.h +11 -0
- data/ext/v8/v8_msg.cpp +17 -0
- data/ext/v8/v8_msg.h +10 -0
- data/ext/v8/v8_obj.cpp +52 -0
- data/ext/v8/v8_obj.h +13 -0
- data/ext/v8/v8_ref.cpp +26 -0
- data/ext/v8/v8_ref.h +31 -0
- data/ext/v8/v8_script.cpp +20 -0
- data/ext/v8/v8_script.h +8 -0
- data/ext/v8/v8_standalone.cpp +69 -0
- data/ext/v8/v8_standalone.h +31 -0
- data/ext/v8/v8_str.cpp +17 -0
- data/ext/v8/v8_str.h +9 -0
- data/ext/v8/v8_template.cpp +53 -0
- data/ext/v8/v8_template.h +13 -0
- data/lib/v8.rb +10 -0
- data/lib/v8/context.rb +87 -0
- data/lib/v8/object.rb +38 -0
- data/lib/v8/to.rb +33 -0
- data/lib/v8/v8.bundle +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/spec/ext/cxt_spec.rb +25 -0
- data/spec/ext/obj_spec.rb +13 -0
- data/spec/redjs/README.txt +8 -0
- data/spec/redjs/jsapi_spec.rb +394 -0
- data/spec/redjs/tap.rb +8 -0
- data/spec/redjs_helper.rb +3 -0
- data/spec/spec.opts +1 -0
- data/spec/spec_helper.rb +14 -0
- data/spec/v8/to_spec.rb +15 -0
- data/tasks/rspec.rake +21 -0
- data/therubyracer.gemspec +34 -0
- metadata +1268 -0
@@ -0,0 +1,98 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included
|
13
|
+
# in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
16
|
+
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
17
|
+
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#
|
23
|
+
|
24
|
+
__revision__ = "src/engine/SCons/compat/_scons_UserString.py 4629 2010/01/17 22:23:21 scons"
|
25
|
+
|
26
|
+
__doc__ = """
|
27
|
+
A user-defined wrapper around string objects
|
28
|
+
|
29
|
+
This class is "borrowed" from the Python 2.2 UserString and modified
|
30
|
+
slightly for use with SCons. It is *NOT* guaranteed to be fully compliant
|
31
|
+
with the standard UserString class from all later versions of Python.
|
32
|
+
In particular, it does not necessarily contain all of the methods found
|
33
|
+
in later versions.
|
34
|
+
"""
|
35
|
+
|
36
|
+
import types
|
37
|
+
|
38
|
+
StringType = types.StringType
|
39
|
+
|
40
|
+
if hasattr(types, 'UnicodeType'):
|
41
|
+
UnicodeType = types.UnicodeType
|
42
|
+
def is_String(obj):
|
43
|
+
return type(obj) in (StringType, UnicodeType)
|
44
|
+
else:
|
45
|
+
def is_String(obj):
|
46
|
+
return type(obj) is StringType
|
47
|
+
|
48
|
+
class UserString:
|
49
|
+
def __init__(self, seq):
|
50
|
+
if is_String(seq):
|
51
|
+
self.data = seq
|
52
|
+
elif isinstance(seq, UserString):
|
53
|
+
self.data = seq.data[:]
|
54
|
+
else:
|
55
|
+
self.data = str(seq)
|
56
|
+
def __str__(self): return str(self.data)
|
57
|
+
def __repr__(self): return repr(self.data)
|
58
|
+
def __int__(self): return int(self.data)
|
59
|
+
def __long__(self): return long(self.data)
|
60
|
+
def __float__(self): return float(self.data)
|
61
|
+
def __complex__(self): return complex(self.data)
|
62
|
+
def __hash__(self): return hash(self.data)
|
63
|
+
|
64
|
+
def __cmp__(self, string):
|
65
|
+
if isinstance(string, UserString):
|
66
|
+
return cmp(self.data, string.data)
|
67
|
+
else:
|
68
|
+
return cmp(self.data, string)
|
69
|
+
def __contains__(self, char):
|
70
|
+
return char in self.data
|
71
|
+
|
72
|
+
def __len__(self): return len(self.data)
|
73
|
+
def __getitem__(self, index): return self.__class__(self.data[index])
|
74
|
+
def __getslice__(self, start, end):
|
75
|
+
start = max(start, 0); end = max(end, 0)
|
76
|
+
return self.__class__(self.data[start:end])
|
77
|
+
|
78
|
+
def __add__(self, other):
|
79
|
+
if isinstance(other, UserString):
|
80
|
+
return self.__class__(self.data + other.data)
|
81
|
+
elif is_String(other):
|
82
|
+
return self.__class__(self.data + other)
|
83
|
+
else:
|
84
|
+
return self.__class__(self.data + str(other))
|
85
|
+
def __radd__(self, other):
|
86
|
+
if is_String(other):
|
87
|
+
return self.__class__(other + self.data)
|
88
|
+
else:
|
89
|
+
return self.__class__(str(other) + self.data)
|
90
|
+
def __mul__(self, n):
|
91
|
+
return self.__class__(self.data*n)
|
92
|
+
__rmul__ = __mul__
|
93
|
+
|
94
|
+
# Local Variables:
|
95
|
+
# tab-width:4
|
96
|
+
# indent-tabs-mode:nil
|
97
|
+
# End:
|
98
|
+
# vim: set expandtab tabstop=4 shiftwidth=4:
|
@@ -0,0 +1,91 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included
|
13
|
+
# in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
16
|
+
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
17
|
+
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#
|
23
|
+
|
24
|
+
__doc__ = """
|
25
|
+
hashlib backwards-compatibility module for older (pre-2.5) Python versions
|
26
|
+
|
27
|
+
This does not not NOT (repeat, *NOT*) provide complete hashlib
|
28
|
+
functionality. It only wraps the portions of MD5 functionality used
|
29
|
+
by SCons, in an interface that looks like hashlib (or enough for our
|
30
|
+
purposes, anyway). In fact, this module will raise an ImportError if
|
31
|
+
the underlying md5 module isn't available.
|
32
|
+
"""
|
33
|
+
|
34
|
+
__revision__ = "src/engine/SCons/compat/_scons_hashlib.py 4629 2010/01/17 22:23:21 scons"
|
35
|
+
|
36
|
+
import md5
|
37
|
+
import string
|
38
|
+
|
39
|
+
class md5obj:
|
40
|
+
|
41
|
+
md5_module = md5
|
42
|
+
|
43
|
+
def __init__(self, name, string=''):
|
44
|
+
if not name in ('MD5', 'md5'):
|
45
|
+
raise ValueError, "unsupported hash type"
|
46
|
+
self.name = 'md5'
|
47
|
+
self.m = self.md5_module.md5()
|
48
|
+
|
49
|
+
def __repr__(self):
|
50
|
+
return '<%s HASH object @ %#x>' % (self.name, id(self))
|
51
|
+
|
52
|
+
def copy(self):
|
53
|
+
import copy
|
54
|
+
result = copy.copy(self)
|
55
|
+
result.m = self.m.copy()
|
56
|
+
return result
|
57
|
+
|
58
|
+
def digest(self):
|
59
|
+
return self.m.digest()
|
60
|
+
|
61
|
+
def update(self, arg):
|
62
|
+
return self.m.update(arg)
|
63
|
+
|
64
|
+
if hasattr(md5.md5(), 'hexdigest'):
|
65
|
+
|
66
|
+
def hexdigest(self):
|
67
|
+
return self.m.hexdigest()
|
68
|
+
|
69
|
+
else:
|
70
|
+
|
71
|
+
# Objects created by the underlying md5 module have no native
|
72
|
+
# hexdigest() method (*cough* 1.5.2 *cough*), so provide an
|
73
|
+
# equivalent lifted from elsewhere.
|
74
|
+
def hexdigest(self):
|
75
|
+
h = string.hexdigits
|
76
|
+
r = ''
|
77
|
+
for c in self.digest():
|
78
|
+
i = ord(c)
|
79
|
+
r = r + h[(i >> 4) & 0xF] + h[i & 0xF]
|
80
|
+
return r
|
81
|
+
|
82
|
+
new = md5obj
|
83
|
+
|
84
|
+
def md5(string=''):
|
85
|
+
return md5obj('md5', string)
|
86
|
+
|
87
|
+
# Local Variables:
|
88
|
+
# tab-width:4
|
89
|
+
# indent-tabs-mode:nil
|
90
|
+
# End:
|
91
|
+
# vim: set expandtab tabstop=4 shiftwidth=4:
|
@@ -0,0 +1,124 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 The SCons Foundation
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
5
|
+
# a copy of this software and associated documentation files (the
|
6
|
+
# "Software"), to deal in the Software without restriction, including
|
7
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
8
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
9
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
10
|
+
# the following conditions:
|
11
|
+
#
|
12
|
+
# The above copyright notice and this permission notice shall be included
|
13
|
+
# in all copies or substantial portions of the Software.
|
14
|
+
#
|
15
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
|
16
|
+
# KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
|
17
|
+
# WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
19
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
20
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
21
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
#
|
23
|
+
|
24
|
+
__revision__ = "src/engine/SCons/compat/_scons_itertools.py 4629 2010/01/17 22:23:21 scons"
|
25
|
+
|
26
|
+
__doc__ = """
|
27
|
+
Implementations of itertools functions for Python versions that don't
|
28
|
+
have iterators.
|
29
|
+
|
30
|
+
These implement the functions by creating the entire list, not returning
|
31
|
+
it element-by-element as the real itertools functions do. This means
|
32
|
+
that early Python versions won't get the performance benefit of using
|
33
|
+
the itertools, but we can still use them so the later Python versions
|
34
|
+
do get the advantages of using iterators.
|
35
|
+
|
36
|
+
Because we return the entire list, we intentionally do not implement the
|
37
|
+
itertools functions that "return" infinitely-long lists: the count(),
|
38
|
+
cycle() and repeat() functions. Other functions below have remained
|
39
|
+
unimplemented simply because they aren't being used (yet) and it wasn't
|
40
|
+
obvious how to do it. Or, conversely, we only implemented those functions
|
41
|
+
that *were* easy to implement (mostly because the Python documentation
|
42
|
+
contained examples of equivalent code).
|
43
|
+
|
44
|
+
Note that these do not have independent unit tests, so it's possible
|
45
|
+
that there are bugs.
|
46
|
+
"""
|
47
|
+
|
48
|
+
def chain(*iterables):
|
49
|
+
result = []
|
50
|
+
for x in iterables:
|
51
|
+
result.extend(list(x))
|
52
|
+
return result
|
53
|
+
|
54
|
+
def count(n=0):
|
55
|
+
# returns infinite length, should not be supported
|
56
|
+
raise NotImplementedError
|
57
|
+
|
58
|
+
def cycle(iterable):
|
59
|
+
# returns infinite length, should not be supported
|
60
|
+
raise NotImplementedError
|
61
|
+
|
62
|
+
def dropwhile(predicate, iterable):
|
63
|
+
result = []
|
64
|
+
for x in iterable:
|
65
|
+
if not predicate(x):
|
66
|
+
result.append(x)
|
67
|
+
break
|
68
|
+
result.extend(iterable)
|
69
|
+
return result
|
70
|
+
|
71
|
+
def groupby(iterable, *args):
|
72
|
+
raise NotImplementedError
|
73
|
+
|
74
|
+
def ifilter(predicate, iterable):
|
75
|
+
result = []
|
76
|
+
if predicate is None:
|
77
|
+
predicate = bool
|
78
|
+
for x in iterable:
|
79
|
+
if predicate(x):
|
80
|
+
result.append(x)
|
81
|
+
return result
|
82
|
+
|
83
|
+
def ifilterfalse(predicate, iterable):
|
84
|
+
result = []
|
85
|
+
if predicate is None:
|
86
|
+
predicate = bool
|
87
|
+
for x in iterable:
|
88
|
+
if not predicate(x):
|
89
|
+
result.append(x)
|
90
|
+
return result
|
91
|
+
|
92
|
+
def imap(function, *iterables):
|
93
|
+
return apply(map, (function,) + tuple(iterables))
|
94
|
+
|
95
|
+
def islice(*args, **kw):
|
96
|
+
raise NotImplementedError
|
97
|
+
|
98
|
+
def izip(*iterables):
|
99
|
+
return apply(zip, iterables)
|
100
|
+
|
101
|
+
def repeat(*args, **kw):
|
102
|
+
# returns infinite length, should not be supported
|
103
|
+
raise NotImplementedError
|
104
|
+
|
105
|
+
def starmap(*args, **kw):
|
106
|
+
raise NotImplementedError
|
107
|
+
|
108
|
+
def takewhile(predicate, iterable):
|
109
|
+
result = []
|
110
|
+
for x in iterable:
|
111
|
+
if predicate(x):
|
112
|
+
result.append(x)
|
113
|
+
else:
|
114
|
+
break
|
115
|
+
return result
|
116
|
+
|
117
|
+
def tee(*args, **kw):
|
118
|
+
raise NotImplementedError
|
119
|
+
|
120
|
+
# Local Variables:
|
121
|
+
# tab-width:4
|
122
|
+
# indent-tabs-mode:nil
|
123
|
+
# End:
|
124
|
+
# vim: set expandtab tabstop=4 shiftwidth=4:
|
@@ -0,0 +1,1725 @@
|
|
1
|
+
"""optparse - a powerful, extensible, and easy-to-use option parser.
|
2
|
+
|
3
|
+
By Greg Ward <gward@python.net>
|
4
|
+
|
5
|
+
Originally distributed as Optik; see http://optik.sourceforge.net/ .
|
6
|
+
|
7
|
+
If you have problems with this module, please do not file bugs,
|
8
|
+
patches, or feature requests with Python; instead, use Optik's
|
9
|
+
SourceForge project page:
|
10
|
+
http://sourceforge.net/projects/optik
|
11
|
+
|
12
|
+
For support, use the optik-users@lists.sourceforge.net mailing list
|
13
|
+
(http://lists.sourceforge.net/lists/listinfo/optik-users).
|
14
|
+
"""
|
15
|
+
|
16
|
+
# Python developers: please do not make changes to this file, since
|
17
|
+
# it is automatically generated from the Optik source code.
|
18
|
+
|
19
|
+
__version__ = "1.5.3"
|
20
|
+
|
21
|
+
__all__ = ['Option',
|
22
|
+
'SUPPRESS_HELP',
|
23
|
+
'SUPPRESS_USAGE',
|
24
|
+
'Values',
|
25
|
+
'OptionContainer',
|
26
|
+
'OptionGroup',
|
27
|
+
'OptionParser',
|
28
|
+
'HelpFormatter',
|
29
|
+
'IndentedHelpFormatter',
|
30
|
+
'TitledHelpFormatter',
|
31
|
+
'OptParseError',
|
32
|
+
'OptionError',
|
33
|
+
'OptionConflictError',
|
34
|
+
'OptionValueError',
|
35
|
+
'BadOptionError']
|
36
|
+
|
37
|
+
__copyright__ = """
|
38
|
+
Copyright (c) 2001-2006 Gregory P. Ward. All rights reserved.
|
39
|
+
Copyright (c) 2002-2006 Python Software Foundation. All rights reserved.
|
40
|
+
|
41
|
+
Redistribution and use in source and binary forms, with or without
|
42
|
+
modification, are permitted provided that the following conditions are
|
43
|
+
met:
|
44
|
+
|
45
|
+
* Redistributions of source code must retain the above copyright
|
46
|
+
notice, this list of conditions and the following disclaimer.
|
47
|
+
|
48
|
+
* Redistributions in binary form must reproduce the above copyright
|
49
|
+
notice, this list of conditions and the following disclaimer in the
|
50
|
+
documentation and/or other materials provided with the distribution.
|
51
|
+
|
52
|
+
* Neither the name of the author nor the names of its
|
53
|
+
contributors may be used to endorse or promote products derived from
|
54
|
+
this software without specific prior written permission.
|
55
|
+
|
56
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
57
|
+
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
58
|
+
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
59
|
+
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR
|
60
|
+
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
61
|
+
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
62
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
63
|
+
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
64
|
+
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
65
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
66
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
67
|
+
"""
|
68
|
+
|
69
|
+
import string
|
70
|
+
import sys, os
|
71
|
+
import types
|
72
|
+
import textwrap
|
73
|
+
|
74
|
+
def _repr(self):
|
75
|
+
return "<%s at 0x%x: %s>" % (self.__class__.__name__, id(self), self)
|
76
|
+
|
77
|
+
|
78
|
+
try:
|
79
|
+
sys.getdefaultencoding
|
80
|
+
except AttributeError:
|
81
|
+
def fake_getdefaultencoding():
|
82
|
+
return None
|
83
|
+
sys.getdefaultencoding = fake_getdefaultencoding
|
84
|
+
|
85
|
+
try:
|
86
|
+
''.encode
|
87
|
+
except AttributeError:
|
88
|
+
def encode_wrapper(s, encoding, replacement):
|
89
|
+
return s
|
90
|
+
else:
|
91
|
+
def encode_wrapper(s, encoding, replacement):
|
92
|
+
return s.encode(encoding, replacement)
|
93
|
+
|
94
|
+
|
95
|
+
# This file was generated from:
|
96
|
+
# Id: option_parser.py 527 2006-07-23 15:21:30Z greg
|
97
|
+
# Id: option.py 522 2006-06-11 16:22:03Z gward
|
98
|
+
# Id: help.py 527 2006-07-23 15:21:30Z greg
|
99
|
+
# Id: errors.py 509 2006-04-20 00:58:24Z gward
|
100
|
+
|
101
|
+
try:
|
102
|
+
from gettext import gettext
|
103
|
+
except ImportError:
|
104
|
+
def gettext(message):
|
105
|
+
return message
|
106
|
+
_ = gettext
|
107
|
+
|
108
|
+
|
109
|
+
class OptParseError (Exception):
|
110
|
+
def __init__(self, msg):
|
111
|
+
self.msg = msg
|
112
|
+
|
113
|
+
def __str__(self):
|
114
|
+
return self.msg
|
115
|
+
|
116
|
+
|
117
|
+
class OptionError (OptParseError):
|
118
|
+
"""
|
119
|
+
Raised if an Option instance is created with invalid or
|
120
|
+
inconsistent arguments.
|
121
|
+
"""
|
122
|
+
|
123
|
+
def __init__(self, msg, option):
|
124
|
+
self.msg = msg
|
125
|
+
self.option_id = str(option)
|
126
|
+
|
127
|
+
def __str__(self):
|
128
|
+
if self.option_id:
|
129
|
+
return "option %s: %s" % (self.option_id, self.msg)
|
130
|
+
else:
|
131
|
+
return self.msg
|
132
|
+
|
133
|
+
class OptionConflictError (OptionError):
|
134
|
+
"""
|
135
|
+
Raised if conflicting options are added to an OptionParser.
|
136
|
+
"""
|
137
|
+
|
138
|
+
class OptionValueError (OptParseError):
|
139
|
+
"""
|
140
|
+
Raised if an invalid option value is encountered on the command
|
141
|
+
line.
|
142
|
+
"""
|
143
|
+
|
144
|
+
class BadOptionError (OptParseError):
|
145
|
+
"""
|
146
|
+
Raised if an invalid option is seen on the command line.
|
147
|
+
"""
|
148
|
+
def __init__(self, opt_str):
|
149
|
+
self.opt_str = opt_str
|
150
|
+
|
151
|
+
def __str__(self):
|
152
|
+
return _("no such option: %s") % self.opt_str
|
153
|
+
|
154
|
+
class AmbiguousOptionError (BadOptionError):
|
155
|
+
"""
|
156
|
+
Raised if an ambiguous option is seen on the command line.
|
157
|
+
"""
|
158
|
+
def __init__(self, opt_str, possibilities):
|
159
|
+
BadOptionError.__init__(self, opt_str)
|
160
|
+
self.possibilities = possibilities
|
161
|
+
|
162
|
+
def __str__(self):
|
163
|
+
return (_("ambiguous option: %s (%s?)")
|
164
|
+
% (self.opt_str, string.join(self.possibilities, ", ")))
|
165
|
+
|
166
|
+
|
167
|
+
class HelpFormatter:
|
168
|
+
|
169
|
+
"""
|
170
|
+
Abstract base class for formatting option help. OptionParser
|
171
|
+
instances should use one of the HelpFormatter subclasses for
|
172
|
+
formatting help; by default IndentedHelpFormatter is used.
|
173
|
+
|
174
|
+
Instance attributes:
|
175
|
+
parser : OptionParser
|
176
|
+
the controlling OptionParser instance
|
177
|
+
indent_increment : int
|
178
|
+
the number of columns to indent per nesting level
|
179
|
+
max_help_position : int
|
180
|
+
the maximum starting column for option help text
|
181
|
+
help_position : int
|
182
|
+
the calculated starting column for option help text;
|
183
|
+
initially the same as the maximum
|
184
|
+
width : int
|
185
|
+
total number of columns for output (pass None to constructor for
|
186
|
+
this value to be taken from the $COLUMNS environment variable)
|
187
|
+
level : int
|
188
|
+
current indentation level
|
189
|
+
current_indent : int
|
190
|
+
current indentation level (in columns)
|
191
|
+
help_width : int
|
192
|
+
number of columns available for option help text (calculated)
|
193
|
+
default_tag : str
|
194
|
+
text to replace with each option's default value, "%default"
|
195
|
+
by default. Set to false value to disable default value expansion.
|
196
|
+
option_strings : { Option : str }
|
197
|
+
maps Option instances to the snippet of help text explaining
|
198
|
+
the syntax of that option, e.g. "-h, --help" or
|
199
|
+
"-fFILE, --file=FILE"
|
200
|
+
_short_opt_fmt : str
|
201
|
+
format string controlling how short options with values are
|
202
|
+
printed in help text. Must be either "%s%s" ("-fFILE") or
|
203
|
+
"%s %s" ("-f FILE"), because those are the two syntaxes that
|
204
|
+
Optik supports.
|
205
|
+
_long_opt_fmt : str
|
206
|
+
similar but for long options; must be either "%s %s" ("--file FILE")
|
207
|
+
or "%s=%s" ("--file=FILE").
|
208
|
+
"""
|
209
|
+
|
210
|
+
NO_DEFAULT_VALUE = "none"
|
211
|
+
|
212
|
+
def __init__(self,
|
213
|
+
indent_increment,
|
214
|
+
max_help_position,
|
215
|
+
width,
|
216
|
+
short_first):
|
217
|
+
self.parser = None
|
218
|
+
self.indent_increment = indent_increment
|
219
|
+
self.help_position = self.max_help_position = max_help_position
|
220
|
+
if width is None:
|
221
|
+
try:
|
222
|
+
width = int(os.environ['COLUMNS'])
|
223
|
+
except (KeyError, ValueError):
|
224
|
+
width = 80
|
225
|
+
width = width - 2
|
226
|
+
self.width = width
|
227
|
+
self.current_indent = 0
|
228
|
+
self.level = 0
|
229
|
+
self.help_width = None # computed later
|
230
|
+
self.short_first = short_first
|
231
|
+
self.default_tag = "%default"
|
232
|
+
self.option_strings = {}
|
233
|
+
self._short_opt_fmt = "%s %s"
|
234
|
+
self._long_opt_fmt = "%s=%s"
|
235
|
+
|
236
|
+
def set_parser(self, parser):
|
237
|
+
self.parser = parser
|
238
|
+
|
239
|
+
def set_short_opt_delimiter(self, delim):
|
240
|
+
if delim not in ("", " "):
|
241
|
+
raise ValueError(
|
242
|
+
"invalid metavar delimiter for short options: %r" % delim)
|
243
|
+
self._short_opt_fmt = "%s" + delim + "%s"
|
244
|
+
|
245
|
+
def set_long_opt_delimiter(self, delim):
|
246
|
+
if delim not in ("=", " "):
|
247
|
+
raise ValueError(
|
248
|
+
"invalid metavar delimiter for long options: %r" % delim)
|
249
|
+
self._long_opt_fmt = "%s" + delim + "%s"
|
250
|
+
|
251
|
+
def indent(self):
|
252
|
+
self.current_indent = self.current_indent + self.indent_increment
|
253
|
+
self.level = self.level + 1
|
254
|
+
|
255
|
+
def dedent(self):
|
256
|
+
self.current_indent = self.current_indent - self.indent_increment
|
257
|
+
assert self.current_indent >= 0, "Indent decreased below 0."
|
258
|
+
self.level = self.level - 1
|
259
|
+
|
260
|
+
def format_usage(self, usage):
|
261
|
+
raise NotImplementedError, "subclasses must implement"
|
262
|
+
|
263
|
+
def format_heading(self, heading):
|
264
|
+
raise NotImplementedError, "subclasses must implement"
|
265
|
+
|
266
|
+
def _format_text(self, text):
|
267
|
+
"""
|
268
|
+
Format a paragraph of free-form text for inclusion in the
|
269
|
+
help output at the current indentation level.
|
270
|
+
"""
|
271
|
+
text_width = self.width - self.current_indent
|
272
|
+
indent = " "*self.current_indent
|
273
|
+
return textwrap.fill(text,
|
274
|
+
text_width,
|
275
|
+
initial_indent=indent,
|
276
|
+
subsequent_indent=indent)
|
277
|
+
|
278
|
+
def format_description(self, description):
|
279
|
+
if description:
|
280
|
+
return self._format_text(description) + "\n"
|
281
|
+
else:
|
282
|
+
return ""
|
283
|
+
|
284
|
+
def format_epilog(self, epilog):
|
285
|
+
if epilog:
|
286
|
+
return "\n" + self._format_text(epilog) + "\n"
|
287
|
+
else:
|
288
|
+
return ""
|
289
|
+
|
290
|
+
|
291
|
+
def expand_default(self, option):
|
292
|
+
if self.parser is None or not self.default_tag:
|
293
|
+
return option.help
|
294
|
+
|
295
|
+
default_value = self.parser.defaults.get(option.dest)
|
296
|
+
if default_value is NO_DEFAULT or default_value is None:
|
297
|
+
default_value = self.NO_DEFAULT_VALUE
|
298
|
+
|
299
|
+
return string.replace(option.help, self.default_tag, str(default_value))
|
300
|
+
|
301
|
+
def format_option(self, option):
|
302
|
+
# The help for each option consists of two parts:
|
303
|
+
# * the opt strings and metavars
|
304
|
+
# eg. ("-x", or "-fFILENAME, --file=FILENAME")
|
305
|
+
# * the user-supplied help string
|
306
|
+
# eg. ("turn on expert mode", "read data from FILENAME")
|
307
|
+
#
|
308
|
+
# If possible, we write both of these on the same line:
|
309
|
+
# -x turn on expert mode
|
310
|
+
#
|
311
|
+
# But if the opt string list is too long, we put the help
|
312
|
+
# string on a second line, indented to the same column it would
|
313
|
+
# start in if it fit on the first line.
|
314
|
+
# -fFILENAME, --file=FILENAME
|
315
|
+
# read data from FILENAME
|
316
|
+
result = []
|
317
|
+
opts = self.option_strings[option]
|
318
|
+
opt_width = self.help_position - self.current_indent - 2
|
319
|
+
if len(opts) > opt_width:
|
320
|
+
opts = "%*s%s\n" % (self.current_indent, "", opts)
|
321
|
+
indent_first = self.help_position
|
322
|
+
else: # start help on same line as opts
|
323
|
+
opts = "%*s%-*s " % (self.current_indent, "", opt_width, opts)
|
324
|
+
indent_first = 0
|
325
|
+
result.append(opts)
|
326
|
+
if option.help:
|
327
|
+
help_text = self.expand_default(option)
|
328
|
+
help_lines = textwrap.wrap(help_text, self.help_width)
|
329
|
+
result.append("%*s%s\n" % (indent_first, "", help_lines[0]))
|
330
|
+
for line in help_lines[1:]:
|
331
|
+
result.append("%*s%s\n" % (self.help_position, "", line))
|
332
|
+
elif opts[-1] != "\n":
|
333
|
+
result.append("\n")
|
334
|
+
return string.join(result, "")
|
335
|
+
|
336
|
+
def store_option_strings(self, parser):
|
337
|
+
self.indent()
|
338
|
+
max_len = 0
|
339
|
+
for opt in parser.option_list:
|
340
|
+
strings = self.format_option_strings(opt)
|
341
|
+
self.option_strings[opt] = strings
|
342
|
+
max_len = max(max_len, len(strings) + self.current_indent)
|
343
|
+
self.indent()
|
344
|
+
for group in parser.option_groups:
|
345
|
+
for opt in group.option_list:
|
346
|
+
strings = self.format_option_strings(opt)
|
347
|
+
self.option_strings[opt] = strings
|
348
|
+
max_len = max(max_len, len(strings) + self.current_indent)
|
349
|
+
self.dedent()
|
350
|
+
self.dedent()
|
351
|
+
self.help_position = min(max_len + 2, self.max_help_position)
|
352
|
+
self.help_width = self.width - self.help_position
|
353
|
+
|
354
|
+
def format_option_strings(self, option):
|
355
|
+
"""Return a comma-separated list of option strings & metavariables."""
|
356
|
+
if option.takes_value():
|
357
|
+
metavar = option.metavar or string.upper(option.dest)
|
358
|
+
short_opts = []
|
359
|
+
for sopt in option._short_opts:
|
360
|
+
short_opts.append(self._short_opt_fmt % (sopt, metavar))
|
361
|
+
long_opts = []
|
362
|
+
for lopt in option._long_opts:
|
363
|
+
long_opts.append(self._long_opt_fmt % (lopt, metavar))
|
364
|
+
else:
|
365
|
+
short_opts = option._short_opts
|
366
|
+
long_opts = option._long_opts
|
367
|
+
|
368
|
+
if self.short_first:
|
369
|
+
opts = short_opts + long_opts
|
370
|
+
else:
|
371
|
+
opts = long_opts + short_opts
|
372
|
+
|
373
|
+
return string.join(opts, ", ")
|
374
|
+
|
375
|
+
class IndentedHelpFormatter (HelpFormatter):
|
376
|
+
"""Format help with indented section bodies.
|
377
|
+
"""
|
378
|
+
|
379
|
+
def __init__(self,
|
380
|
+
indent_increment=2,
|
381
|
+
max_help_position=24,
|
382
|
+
width=None,
|
383
|
+
short_first=1):
|
384
|
+
HelpFormatter.__init__(
|
385
|
+
self, indent_increment, max_help_position, width, short_first)
|
386
|
+
|
387
|
+
def format_usage(self, usage):
|
388
|
+
return _("Usage: %s\n") % usage
|
389
|
+
|
390
|
+
def format_heading(self, heading):
|
391
|
+
return "%*s%s:\n" % (self.current_indent, "", heading)
|
392
|
+
|
393
|
+
|
394
|
+
class TitledHelpFormatter (HelpFormatter):
|
395
|
+
"""Format help with underlined section headers.
|
396
|
+
"""
|
397
|
+
|
398
|
+
def __init__(self,
|
399
|
+
indent_increment=0,
|
400
|
+
max_help_position=24,
|
401
|
+
width=None,
|
402
|
+
short_first=0):
|
403
|
+
HelpFormatter.__init__ (
|
404
|
+
self, indent_increment, max_help_position, width, short_first)
|
405
|
+
|
406
|
+
def format_usage(self, usage):
|
407
|
+
return "%s %s\n" % (self.format_heading(_("Usage")), usage)
|
408
|
+
|
409
|
+
def format_heading(self, heading):
|
410
|
+
return "%s\n%s\n" % (heading, "=-"[self.level] * len(heading))
|
411
|
+
|
412
|
+
|
413
|
+
def _parse_num(val, type):
|
414
|
+
if string.lower(val[:2]) == "0x": # hexadecimal
|
415
|
+
radix = 16
|
416
|
+
elif string.lower(val[:2]) == "0b": # binary
|
417
|
+
radix = 2
|
418
|
+
val = val[2:] or "0" # have to remove "0b" prefix
|
419
|
+
elif val[:1] == "0": # octal
|
420
|
+
radix = 8
|
421
|
+
else: # decimal
|
422
|
+
radix = 10
|
423
|
+
|
424
|
+
return type(val, radix)
|
425
|
+
|
426
|
+
def _parse_int(val):
|
427
|
+
return _parse_num(val, int)
|
428
|
+
|
429
|
+
def _parse_long(val):
|
430
|
+
return _parse_num(val, long)
|
431
|
+
|
432
|
+
try:
|
433
|
+
int('0', 10)
|
434
|
+
except TypeError:
|
435
|
+
# Python 1.5.2 doesn't allow a radix value to be passed to int().
|
436
|
+
_parse_int = int
|
437
|
+
|
438
|
+
try:
|
439
|
+
long('0', 10)
|
440
|
+
except TypeError:
|
441
|
+
# Python 1.5.2 doesn't allow a radix value to be passed to long().
|
442
|
+
_parse_long = long
|
443
|
+
|
444
|
+
_builtin_cvt = { "int" : (_parse_int, _("integer")),
|
445
|
+
"long" : (_parse_long, _("long integer")),
|
446
|
+
"float" : (float, _("floating-point")),
|
447
|
+
"complex" : (complex, _("complex")) }
|
448
|
+
|
449
|
+
def check_builtin(option, opt, value):
|
450
|
+
(cvt, what) = _builtin_cvt[option.type]
|
451
|
+
try:
|
452
|
+
return cvt(value)
|
453
|
+
except ValueError:
|
454
|
+
raise OptionValueError(
|
455
|
+
_("option %s: invalid %s value: %r") % (opt, what, value))
|
456
|
+
|
457
|
+
def check_choice(option, opt, value):
|
458
|
+
if value in option.choices:
|
459
|
+
return value
|
460
|
+
else:
|
461
|
+
choices = string.join(map(repr, option.choices), ", ")
|
462
|
+
raise OptionValueError(
|
463
|
+
_("option %s: invalid choice: %r (choose from %s)")
|
464
|
+
% (opt, value, choices))
|
465
|
+
|
466
|
+
# Not supplying a default is different from a default of None,
|
467
|
+
# so we need an explicit "not supplied" value.
|
468
|
+
NO_DEFAULT = ("NO", "DEFAULT")
|
469
|
+
|
470
|
+
|
471
|
+
class Option:
|
472
|
+
"""
|
473
|
+
Instance attributes:
|
474
|
+
_short_opts : [string]
|
475
|
+
_long_opts : [string]
|
476
|
+
|
477
|
+
action : string
|
478
|
+
type : string
|
479
|
+
dest : string
|
480
|
+
default : any
|
481
|
+
nargs : int
|
482
|
+
const : any
|
483
|
+
choices : [string]
|
484
|
+
callback : function
|
485
|
+
callback_args : (any*)
|
486
|
+
callback_kwargs : { string : any }
|
487
|
+
help : string
|
488
|
+
metavar : string
|
489
|
+
"""
|
490
|
+
|
491
|
+
# The list of instance attributes that may be set through
|
492
|
+
# keyword args to the constructor.
|
493
|
+
ATTRS = ['action',
|
494
|
+
'type',
|
495
|
+
'dest',
|
496
|
+
'default',
|
497
|
+
'nargs',
|
498
|
+
'const',
|
499
|
+
'choices',
|
500
|
+
'callback',
|
501
|
+
'callback_args',
|
502
|
+
'callback_kwargs',
|
503
|
+
'help',
|
504
|
+
'metavar']
|
505
|
+
|
506
|
+
# The set of actions allowed by option parsers. Explicitly listed
|
507
|
+
# here so the constructor can validate its arguments.
|
508
|
+
ACTIONS = ("store",
|
509
|
+
"store_const",
|
510
|
+
"store_true",
|
511
|
+
"store_false",
|
512
|
+
"append",
|
513
|
+
"append_const",
|
514
|
+
"count",
|
515
|
+
"callback",
|
516
|
+
"help",
|
517
|
+
"version")
|
518
|
+
|
519
|
+
# The set of actions that involve storing a value somewhere;
|
520
|
+
# also listed just for constructor argument validation. (If
|
521
|
+
# the action is one of these, there must be a destination.)
|
522
|
+
STORE_ACTIONS = ("store",
|
523
|
+
"store_const",
|
524
|
+
"store_true",
|
525
|
+
"store_false",
|
526
|
+
"append",
|
527
|
+
"append_const",
|
528
|
+
"count")
|
529
|
+
|
530
|
+
# The set of actions for which it makes sense to supply a value
|
531
|
+
# type, ie. which may consume an argument from the command line.
|
532
|
+
TYPED_ACTIONS = ("store",
|
533
|
+
"append",
|
534
|
+
"callback")
|
535
|
+
|
536
|
+
# The set of actions which *require* a value type, ie. that
|
537
|
+
# always consume an argument from the command line.
|
538
|
+
ALWAYS_TYPED_ACTIONS = ("store",
|
539
|
+
"append")
|
540
|
+
|
541
|
+
# The set of actions which take a 'const' attribute.
|
542
|
+
CONST_ACTIONS = ("store_const",
|
543
|
+
"append_const")
|
544
|
+
|
545
|
+
# The set of known types for option parsers. Again, listed here for
|
546
|
+
# constructor argument validation.
|
547
|
+
TYPES = ("string", "int", "long", "float", "complex", "choice")
|
548
|
+
|
549
|
+
# Dictionary of argument checking functions, which convert and
|
550
|
+
# validate option arguments according to the option type.
|
551
|
+
#
|
552
|
+
# Signature of checking functions is:
|
553
|
+
# check(option : Option, opt : string, value : string) -> any
|
554
|
+
# where
|
555
|
+
# option is the Option instance calling the checker
|
556
|
+
# opt is the actual option seen on the command-line
|
557
|
+
# (eg. "-a", "--file")
|
558
|
+
# value is the option argument seen on the command-line
|
559
|
+
#
|
560
|
+
# The return value should be in the appropriate Python type
|
561
|
+
# for option.type -- eg. an integer if option.type == "int".
|
562
|
+
#
|
563
|
+
# If no checker is defined for a type, arguments will be
|
564
|
+
# unchecked and remain strings.
|
565
|
+
TYPE_CHECKER = { "int" : check_builtin,
|
566
|
+
"long" : check_builtin,
|
567
|
+
"float" : check_builtin,
|
568
|
+
"complex": check_builtin,
|
569
|
+
"choice" : check_choice,
|
570
|
+
}
|
571
|
+
|
572
|
+
|
573
|
+
# CHECK_METHODS is a list of unbound method objects; they are called
|
574
|
+
# by the constructor, in order, after all attributes are
|
575
|
+
# initialized. The list is created and filled in later, after all
|
576
|
+
# the methods are actually defined. (I just put it here because I
|
577
|
+
# like to define and document all class attributes in the same
|
578
|
+
# place.) Subclasses that add another _check_*() method should
|
579
|
+
# define their own CHECK_METHODS list that adds their check method
|
580
|
+
# to those from this class.
|
581
|
+
CHECK_METHODS = None
|
582
|
+
|
583
|
+
|
584
|
+
# -- Constructor/initialization methods ----------------------------
|
585
|
+
|
586
|
+
def __init__(self, *opts, **attrs):
|
587
|
+
# Set _short_opts, _long_opts attrs from 'opts' tuple.
|
588
|
+
# Have to be set now, in case no option strings are supplied.
|
589
|
+
self._short_opts = []
|
590
|
+
self._long_opts = []
|
591
|
+
opts = self._check_opt_strings(opts)
|
592
|
+
self._set_opt_strings(opts)
|
593
|
+
|
594
|
+
# Set all other attrs (action, type, etc.) from 'attrs' dict
|
595
|
+
self._set_attrs(attrs)
|
596
|
+
|
597
|
+
# Check all the attributes we just set. There are lots of
|
598
|
+
# complicated interdependencies, but luckily they can be farmed
|
599
|
+
# out to the _check_*() methods listed in CHECK_METHODS -- which
|
600
|
+
# could be handy for subclasses! The one thing these all share
|
601
|
+
# is that they raise OptionError if they discover a problem.
|
602
|
+
for checker in self.CHECK_METHODS:
|
603
|
+
checker(self)
|
604
|
+
|
605
|
+
def _check_opt_strings(self, opts):
|
606
|
+
# Filter out None because early versions of Optik had exactly
|
607
|
+
# one short option and one long option, either of which
|
608
|
+
# could be None.
|
609
|
+
opts = filter(None, opts)
|
610
|
+
if not opts:
|
611
|
+
raise TypeError("at least one option string must be supplied")
|
612
|
+
return opts
|
613
|
+
|
614
|
+
def _set_opt_strings(self, opts):
|
615
|
+
for opt in opts:
|
616
|
+
if len(opt) < 2:
|
617
|
+
raise OptionError(
|
618
|
+
"invalid option string %r: "
|
619
|
+
"must be at least two characters long" % opt, self)
|
620
|
+
elif len(opt) == 2:
|
621
|
+
if not (opt[0] == "-" and opt[1] != "-"):
|
622
|
+
raise OptionError(
|
623
|
+
"invalid short option string %r: "
|
624
|
+
"must be of the form -x, (x any non-dash char)" % opt,
|
625
|
+
self)
|
626
|
+
self._short_opts.append(opt)
|
627
|
+
else:
|
628
|
+
if not (opt[0:2] == "--" and opt[2] != "-"):
|
629
|
+
raise OptionError(
|
630
|
+
"invalid long option string %r: "
|
631
|
+
"must start with --, followed by non-dash" % opt,
|
632
|
+
self)
|
633
|
+
self._long_opts.append(opt)
|
634
|
+
|
635
|
+
def _set_attrs(self, attrs):
|
636
|
+
for attr in self.ATTRS:
|
637
|
+
if attrs.has_key(attr):
|
638
|
+
setattr(self, attr, attrs[attr])
|
639
|
+
del attrs[attr]
|
640
|
+
else:
|
641
|
+
if attr == 'default':
|
642
|
+
setattr(self, attr, NO_DEFAULT)
|
643
|
+
else:
|
644
|
+
setattr(self, attr, None)
|
645
|
+
if attrs:
|
646
|
+
attrs = attrs.keys()
|
647
|
+
attrs.sort()
|
648
|
+
raise OptionError(
|
649
|
+
"invalid keyword arguments: %s" % string.join(attrs, ", "),
|
650
|
+
self)
|
651
|
+
|
652
|
+
|
653
|
+
# -- Constructor validation methods --------------------------------
|
654
|
+
|
655
|
+
def _check_action(self):
|
656
|
+
if self.action is None:
|
657
|
+
self.action = "store"
|
658
|
+
elif self.action not in self.ACTIONS:
|
659
|
+
raise OptionError("invalid action: %r" % self.action, self)
|
660
|
+
|
661
|
+
def _check_type(self):
|
662
|
+
if self.type is None:
|
663
|
+
if self.action in self.ALWAYS_TYPED_ACTIONS:
|
664
|
+
if self.choices is not None:
|
665
|
+
# The "choices" attribute implies "choice" type.
|
666
|
+
self.type = "choice"
|
667
|
+
else:
|
668
|
+
# No type given? "string" is the most sensible default.
|
669
|
+
self.type = "string"
|
670
|
+
else:
|
671
|
+
# Allow type objects or builtin type conversion functions
|
672
|
+
# (int, str, etc.) as an alternative to their names. (The
|
673
|
+
# complicated check of __builtin__ is only necessary for
|
674
|
+
# Python 2.1 and earlier, and is short-circuited by the
|
675
|
+
# first check on modern Pythons.)
|
676
|
+
import __builtin__
|
677
|
+
if ( type(self.type) is types.TypeType or
|
678
|
+
(hasattr(self.type, "__name__") and
|
679
|
+
getattr(__builtin__, self.type.__name__, None) is self.type) ):
|
680
|
+
self.type = self.type.__name__
|
681
|
+
|
682
|
+
if self.type == "str":
|
683
|
+
self.type = "string"
|
684
|
+
|
685
|
+
if self.type not in self.TYPES:
|
686
|
+
raise OptionError("invalid option type: %r" % self.type, self)
|
687
|
+
if self.action not in self.TYPED_ACTIONS:
|
688
|
+
raise OptionError(
|
689
|
+
"must not supply a type for action %r" % self.action, self)
|
690
|
+
|
691
|
+
def _check_choice(self):
|
692
|
+
if self.type == "choice":
|
693
|
+
if self.choices is None:
|
694
|
+
raise OptionError(
|
695
|
+
"must supply a list of choices for type 'choice'", self)
|
696
|
+
elif type(self.choices) not in (types.TupleType, types.ListType):
|
697
|
+
raise OptionError(
|
698
|
+
"choices must be a list of strings ('%s' supplied)"
|
699
|
+
% string.split(str(type(self.choices)), "'")[1], self)
|
700
|
+
elif self.choices is not None:
|
701
|
+
raise OptionError(
|
702
|
+
"must not supply choices for type %r" % self.type, self)
|
703
|
+
|
704
|
+
def _check_dest(self):
|
705
|
+
# No destination given, and we need one for this action. The
|
706
|
+
# self.type check is for callbacks that take a value.
|
707
|
+
takes_value = (self.action in self.STORE_ACTIONS or
|
708
|
+
self.type is not None)
|
709
|
+
if self.dest is None and takes_value:
|
710
|
+
|
711
|
+
# Glean a destination from the first long option string,
|
712
|
+
# or from the first short option string if no long options.
|
713
|
+
if self._long_opts:
|
714
|
+
# eg. "--foo-bar" -> "foo_bar"
|
715
|
+
self.dest = string.replace(self._long_opts[0][2:], '-', '_')
|
716
|
+
else:
|
717
|
+
self.dest = self._short_opts[0][1]
|
718
|
+
|
719
|
+
def _check_const(self):
|
720
|
+
if self.action not in self.CONST_ACTIONS and self.const is not None:
|
721
|
+
raise OptionError(
|
722
|
+
"'const' must not be supplied for action %r" % self.action,
|
723
|
+
self)
|
724
|
+
|
725
|
+
def _check_nargs(self):
|
726
|
+
if self.action in self.TYPED_ACTIONS:
|
727
|
+
if self.nargs is None:
|
728
|
+
self.nargs = 1
|
729
|
+
elif self.nargs is not None:
|
730
|
+
raise OptionError(
|
731
|
+
"'nargs' must not be supplied for action %r" % self.action,
|
732
|
+
self)
|
733
|
+
|
734
|
+
def _check_callback(self):
|
735
|
+
if self.action == "callback":
|
736
|
+
if not callable(self.callback):
|
737
|
+
raise OptionError(
|
738
|
+
"callback not callable: %r" % self.callback, self)
|
739
|
+
if (self.callback_args is not None and
|
740
|
+
type(self.callback_args) is not types.TupleType):
|
741
|
+
raise OptionError(
|
742
|
+
"callback_args, if supplied, must be a tuple: not %r"
|
743
|
+
% self.callback_args, self)
|
744
|
+
if (self.callback_kwargs is not None and
|
745
|
+
type(self.callback_kwargs) is not types.DictType):
|
746
|
+
raise OptionError(
|
747
|
+
"callback_kwargs, if supplied, must be a dict: not %r"
|
748
|
+
% self.callback_kwargs, self)
|
749
|
+
else:
|
750
|
+
if self.callback is not None:
|
751
|
+
raise OptionError(
|
752
|
+
"callback supplied (%r) for non-callback option"
|
753
|
+
% self.callback, self)
|
754
|
+
if self.callback_args is not None:
|
755
|
+
raise OptionError(
|
756
|
+
"callback_args supplied for non-callback option", self)
|
757
|
+
if self.callback_kwargs is not None:
|
758
|
+
raise OptionError(
|
759
|
+
"callback_kwargs supplied for non-callback option", self)
|
760
|
+
|
761
|
+
|
762
|
+
CHECK_METHODS = [_check_action,
|
763
|
+
_check_type,
|
764
|
+
_check_choice,
|
765
|
+
_check_dest,
|
766
|
+
_check_const,
|
767
|
+
_check_nargs,
|
768
|
+
_check_callback]
|
769
|
+
|
770
|
+
|
771
|
+
# -- Miscellaneous methods -----------------------------------------
|
772
|
+
|
773
|
+
def __str__(self):
|
774
|
+
return string.join(self._short_opts + self._long_opts, "/")
|
775
|
+
|
776
|
+
__repr__ = _repr
|
777
|
+
|
778
|
+
def takes_value(self):
|
779
|
+
return self.type is not None
|
780
|
+
|
781
|
+
def get_opt_string(self):
|
782
|
+
if self._long_opts:
|
783
|
+
return self._long_opts[0]
|
784
|
+
else:
|
785
|
+
return self._short_opts[0]
|
786
|
+
|
787
|
+
|
788
|
+
# -- Processing methods --------------------------------------------
|
789
|
+
|
790
|
+
def check_value(self, opt, value):
|
791
|
+
checker = self.TYPE_CHECKER.get(self.type)
|
792
|
+
if checker is None:
|
793
|
+
return value
|
794
|
+
else:
|
795
|
+
return checker(self, opt, value)
|
796
|
+
|
797
|
+
def convert_value(self, opt, value):
|
798
|
+
if value is not None:
|
799
|
+
if self.nargs == 1:
|
800
|
+
return self.check_value(opt, value)
|
801
|
+
else:
|
802
|
+
return tuple(map(lambda v, o=opt, s=self: s.check_value(o, v), value))
|
803
|
+
|
804
|
+
def process(self, opt, value, values, parser):
|
805
|
+
|
806
|
+
# First, convert the value(s) to the right type. Howl if any
|
807
|
+
# value(s) are bogus.
|
808
|
+
value = self.convert_value(opt, value)
|
809
|
+
|
810
|
+
# And then take whatever action is expected of us.
|
811
|
+
# This is a separate method to make life easier for
|
812
|
+
# subclasses to add new actions.
|
813
|
+
return self.take_action(
|
814
|
+
self.action, self.dest, opt, value, values, parser)
|
815
|
+
|
816
|
+
def take_action(self, action, dest, opt, value, values, parser):
|
817
|
+
if action == "store":
|
818
|
+
setattr(values, dest, value)
|
819
|
+
elif action == "store_const":
|
820
|
+
setattr(values, dest, self.const)
|
821
|
+
elif action == "store_true":
|
822
|
+
setattr(values, dest, True)
|
823
|
+
elif action == "store_false":
|
824
|
+
setattr(values, dest, False)
|
825
|
+
elif action == "append":
|
826
|
+
values.ensure_value(dest, []).append(value)
|
827
|
+
elif action == "append_const":
|
828
|
+
values.ensure_value(dest, []).append(self.const)
|
829
|
+
elif action == "count":
|
830
|
+
setattr(values, dest, values.ensure_value(dest, 0) + 1)
|
831
|
+
elif action == "callback":
|
832
|
+
args = self.callback_args or ()
|
833
|
+
kwargs = self.callback_kwargs or {}
|
834
|
+
apply(self.callback, (self, opt, value, parser,) + args, kwargs)
|
835
|
+
elif action == "help":
|
836
|
+
parser.print_help()
|
837
|
+
parser.exit()
|
838
|
+
elif action == "version":
|
839
|
+
parser.print_version()
|
840
|
+
parser.exit()
|
841
|
+
else:
|
842
|
+
raise RuntimeError, "unknown action %r" % self.action
|
843
|
+
|
844
|
+
return 1
|
845
|
+
|
846
|
+
# class Option
|
847
|
+
|
848
|
+
|
849
|
+
SUPPRESS_HELP = "SUPPRESS"+"HELP"
|
850
|
+
SUPPRESS_USAGE = "SUPPRESS"+"USAGE"
|
851
|
+
|
852
|
+
# For compatibility with Python 2.2
|
853
|
+
try:
|
854
|
+
True, False
|
855
|
+
except NameError:
|
856
|
+
(True, False) = (1, 0)
|
857
|
+
|
858
|
+
try:
|
859
|
+
types.UnicodeType
|
860
|
+
except AttributeError:
|
861
|
+
def isbasestring(x):
|
862
|
+
return isinstance(x, types.StringType)
|
863
|
+
else:
|
864
|
+
def isbasestring(x):
|
865
|
+
return isinstance(x, types.StringType) or isinstance(x, types.UnicodeType)
|
866
|
+
|
867
|
+
class Values:
|
868
|
+
|
869
|
+
def __init__(self, defaults=None):
|
870
|
+
if defaults:
|
871
|
+
for (attr, val) in defaults.items():
|
872
|
+
setattr(self, attr, val)
|
873
|
+
|
874
|
+
def __str__(self):
|
875
|
+
return str(self.__dict__)
|
876
|
+
|
877
|
+
__repr__ = _repr
|
878
|
+
|
879
|
+
def __cmp__(self, other):
|
880
|
+
if isinstance(other, Values):
|
881
|
+
return cmp(self.__dict__, other.__dict__)
|
882
|
+
elif isinstance(other, types.DictType):
|
883
|
+
return cmp(self.__dict__, other)
|
884
|
+
else:
|
885
|
+
return -1
|
886
|
+
|
887
|
+
def _update_careful(self, dict):
|
888
|
+
"""
|
889
|
+
Update the option values from an arbitrary dictionary, but only
|
890
|
+
use keys from dict that already have a corresponding attribute
|
891
|
+
in self. Any keys in dict without a corresponding attribute
|
892
|
+
are silently ignored.
|
893
|
+
"""
|
894
|
+
for attr in dir(self):
|
895
|
+
if dict.has_key(attr):
|
896
|
+
dval = dict[attr]
|
897
|
+
if dval is not None:
|
898
|
+
setattr(self, attr, dval)
|
899
|
+
|
900
|
+
def _update_loose(self, dict):
|
901
|
+
"""
|
902
|
+
Update the option values from an arbitrary dictionary,
|
903
|
+
using all keys from the dictionary regardless of whether
|
904
|
+
they have a corresponding attribute in self or not.
|
905
|
+
"""
|
906
|
+
self.__dict__.update(dict)
|
907
|
+
|
908
|
+
def _update(self, dict, mode):
|
909
|
+
if mode == "careful":
|
910
|
+
self._update_careful(dict)
|
911
|
+
elif mode == "loose":
|
912
|
+
self._update_loose(dict)
|
913
|
+
else:
|
914
|
+
raise ValueError, "invalid update mode: %r" % mode
|
915
|
+
|
916
|
+
def read_module(self, modname, mode="careful"):
|
917
|
+
__import__(modname)
|
918
|
+
mod = sys.modules[modname]
|
919
|
+
self._update(vars(mod), mode)
|
920
|
+
|
921
|
+
def read_file(self, filename, mode="careful"):
|
922
|
+
vars = {}
|
923
|
+
exec open(filename, 'rU').read() in vars
|
924
|
+
self._update(vars, mode)
|
925
|
+
|
926
|
+
def ensure_value(self, attr, value):
|
927
|
+
if not hasattr(self, attr) or getattr(self, attr) is None:
|
928
|
+
setattr(self, attr, value)
|
929
|
+
return getattr(self, attr)
|
930
|
+
|
931
|
+
|
932
|
+
class OptionContainer:
|
933
|
+
|
934
|
+
"""
|
935
|
+
Abstract base class.
|
936
|
+
|
937
|
+
Class attributes:
|
938
|
+
standard_option_list : [Option]
|
939
|
+
list of standard options that will be accepted by all instances
|
940
|
+
of this parser class (intended to be overridden by subclasses).
|
941
|
+
|
942
|
+
Instance attributes:
|
943
|
+
option_list : [Option]
|
944
|
+
the list of Option objects contained by this OptionContainer
|
945
|
+
_short_opt : { string : Option }
|
946
|
+
dictionary mapping short option strings, eg. "-f" or "-X",
|
947
|
+
to the Option instances that implement them. If an Option
|
948
|
+
has multiple short option strings, it will appears in this
|
949
|
+
dictionary multiple times. [1]
|
950
|
+
_long_opt : { string : Option }
|
951
|
+
dictionary mapping long option strings, eg. "--file" or
|
952
|
+
"--exclude", to the Option instances that implement them.
|
953
|
+
Again, a given Option can occur multiple times in this
|
954
|
+
dictionary. [1]
|
955
|
+
defaults : { string : any }
|
956
|
+
dictionary mapping option destination names to default
|
957
|
+
values for each destination [1]
|
958
|
+
|
959
|
+
[1] These mappings are common to (shared by) all components of the
|
960
|
+
controlling OptionParser, where they are initially created.
|
961
|
+
|
962
|
+
"""
|
963
|
+
|
964
|
+
def __init__(self, option_class, conflict_handler, description):
|
965
|
+
# Initialize the option list and related data structures.
|
966
|
+
# This method must be provided by subclasses, and it must
|
967
|
+
# initialize at least the following instance attributes:
|
968
|
+
# option_list, _short_opt, _long_opt, defaults.
|
969
|
+
self._create_option_list()
|
970
|
+
|
971
|
+
self.option_class = option_class
|
972
|
+
self.set_conflict_handler(conflict_handler)
|
973
|
+
self.set_description(description)
|
974
|
+
|
975
|
+
def _create_option_mappings(self):
|
976
|
+
# For use by OptionParser constructor -- create the master
|
977
|
+
# option mappings used by this OptionParser and all
|
978
|
+
# OptionGroups that it owns.
|
979
|
+
self._short_opt = {} # single letter -> Option instance
|
980
|
+
self._long_opt = {} # long option -> Option instance
|
981
|
+
self.defaults = {} # maps option dest -> default value
|
982
|
+
|
983
|
+
|
984
|
+
def _share_option_mappings(self, parser):
|
985
|
+
# For use by OptionGroup constructor -- use shared option
|
986
|
+
# mappings from the OptionParser that owns this OptionGroup.
|
987
|
+
self._short_opt = parser._short_opt
|
988
|
+
self._long_opt = parser._long_opt
|
989
|
+
self.defaults = parser.defaults
|
990
|
+
|
991
|
+
def set_conflict_handler(self, handler):
|
992
|
+
if handler not in ("error", "resolve"):
|
993
|
+
raise ValueError, "invalid conflict_resolution value %r" % handler
|
994
|
+
self.conflict_handler = handler
|
995
|
+
|
996
|
+
def set_description(self, description):
|
997
|
+
self.description = description
|
998
|
+
|
999
|
+
def get_description(self):
|
1000
|
+
return self.description
|
1001
|
+
|
1002
|
+
|
1003
|
+
def destroy(self):
|
1004
|
+
"""see OptionParser.destroy()."""
|
1005
|
+
del self._short_opt
|
1006
|
+
del self._long_opt
|
1007
|
+
del self.defaults
|
1008
|
+
|
1009
|
+
|
1010
|
+
# -- Option-adding methods -----------------------------------------
|
1011
|
+
|
1012
|
+
def _check_conflict(self, option):
|
1013
|
+
conflict_opts = []
|
1014
|
+
for opt in option._short_opts:
|
1015
|
+
if self._short_opt.has_key(opt):
|
1016
|
+
conflict_opts.append((opt, self._short_opt[opt]))
|
1017
|
+
for opt in option._long_opts:
|
1018
|
+
if self._long_opt.has_key(opt):
|
1019
|
+
conflict_opts.append((opt, self._long_opt[opt]))
|
1020
|
+
|
1021
|
+
if conflict_opts:
|
1022
|
+
handler = self.conflict_handler
|
1023
|
+
if handler == "error":
|
1024
|
+
raise OptionConflictError(
|
1025
|
+
"conflicting option string(s): %s"
|
1026
|
+
% string.join(map(lambda co: co[0], conflict_opts), ", "),
|
1027
|
+
option)
|
1028
|
+
elif handler == "resolve":
|
1029
|
+
for (opt, c_option) in conflict_opts:
|
1030
|
+
if opt[:2] == "--":
|
1031
|
+
c_option._long_opts.remove(opt)
|
1032
|
+
del self._long_opt[opt]
|
1033
|
+
else:
|
1034
|
+
c_option._short_opts.remove(opt)
|
1035
|
+
del self._short_opt[opt]
|
1036
|
+
if not (c_option._short_opts or c_option._long_opts):
|
1037
|
+
c_option.container.option_list.remove(c_option)
|
1038
|
+
|
1039
|
+
def add_option(self, *args, **kwargs):
|
1040
|
+
"""add_option(Option)
|
1041
|
+
add_option(opt_str, ..., kwarg=val, ...)
|
1042
|
+
"""
|
1043
|
+
if type(args[0]) is types.StringType:
|
1044
|
+
option = apply(self.option_class, args, kwargs)
|
1045
|
+
elif len(args) == 1 and not kwargs:
|
1046
|
+
option = args[0]
|
1047
|
+
if not isinstance(option, Option):
|
1048
|
+
raise TypeError, "not an Option instance: %r" % option
|
1049
|
+
else:
|
1050
|
+
raise TypeError, "invalid arguments"
|
1051
|
+
|
1052
|
+
self._check_conflict(option)
|
1053
|
+
|
1054
|
+
self.option_list.append(option)
|
1055
|
+
option.container = self
|
1056
|
+
for opt in option._short_opts:
|
1057
|
+
self._short_opt[opt] = option
|
1058
|
+
for opt in option._long_opts:
|
1059
|
+
self._long_opt[opt] = option
|
1060
|
+
|
1061
|
+
if option.dest is not None: # option has a dest, we need a default
|
1062
|
+
if option.default is not NO_DEFAULT:
|
1063
|
+
self.defaults[option.dest] = option.default
|
1064
|
+
elif not self.defaults.has_key(option.dest):
|
1065
|
+
self.defaults[option.dest] = None
|
1066
|
+
|
1067
|
+
return option
|
1068
|
+
|
1069
|
+
def add_options(self, option_list):
|
1070
|
+
for option in option_list:
|
1071
|
+
self.add_option(option)
|
1072
|
+
|
1073
|
+
# -- Option query/removal methods ----------------------------------
|
1074
|
+
|
1075
|
+
def get_option(self, opt_str):
|
1076
|
+
return (self._short_opt.get(opt_str) or
|
1077
|
+
self._long_opt.get(opt_str))
|
1078
|
+
|
1079
|
+
def has_option(self, opt_str):
|
1080
|
+
return (self._short_opt.has_key(opt_str) or
|
1081
|
+
self._long_opt.has_key(opt_str))
|
1082
|
+
|
1083
|
+
def remove_option(self, opt_str):
|
1084
|
+
option = self._short_opt.get(opt_str)
|
1085
|
+
if option is None:
|
1086
|
+
option = self._long_opt.get(opt_str)
|
1087
|
+
if option is None:
|
1088
|
+
raise ValueError("no such option %r" % opt_str)
|
1089
|
+
|
1090
|
+
for opt in option._short_opts:
|
1091
|
+
del self._short_opt[opt]
|
1092
|
+
for opt in option._long_opts:
|
1093
|
+
del self._long_opt[opt]
|
1094
|
+
option.container.option_list.remove(option)
|
1095
|
+
|
1096
|
+
|
1097
|
+
# -- Help-formatting methods ---------------------------------------
|
1098
|
+
|
1099
|
+
def format_option_help(self, formatter):
|
1100
|
+
if not self.option_list:
|
1101
|
+
return ""
|
1102
|
+
result = []
|
1103
|
+
for option in self.option_list:
|
1104
|
+
if not option.help is SUPPRESS_HELP:
|
1105
|
+
result.append(formatter.format_option(option))
|
1106
|
+
return string.join(result, "")
|
1107
|
+
|
1108
|
+
def format_description(self, formatter):
|
1109
|
+
return formatter.format_description(self.get_description())
|
1110
|
+
|
1111
|
+
def format_help(self, formatter):
|
1112
|
+
result = []
|
1113
|
+
if self.description:
|
1114
|
+
result.append(self.format_description(formatter))
|
1115
|
+
if self.option_list:
|
1116
|
+
result.append(self.format_option_help(formatter))
|
1117
|
+
return string.join(result, "\n")
|
1118
|
+
|
1119
|
+
|
1120
|
+
class OptionGroup (OptionContainer):
|
1121
|
+
|
1122
|
+
def __init__(self, parser, title, description=None):
|
1123
|
+
self.parser = parser
|
1124
|
+
OptionContainer.__init__(
|
1125
|
+
self, parser.option_class, parser.conflict_handler, description)
|
1126
|
+
self.title = title
|
1127
|
+
|
1128
|
+
def _create_option_list(self):
|
1129
|
+
self.option_list = []
|
1130
|
+
self._share_option_mappings(self.parser)
|
1131
|
+
|
1132
|
+
def set_title(self, title):
|
1133
|
+
self.title = title
|
1134
|
+
|
1135
|
+
def destroy(self):
|
1136
|
+
"""see OptionParser.destroy()."""
|
1137
|
+
OptionContainer.destroy(self)
|
1138
|
+
del self.option_list
|
1139
|
+
|
1140
|
+
# -- Help-formatting methods ---------------------------------------
|
1141
|
+
|
1142
|
+
def format_help(self, formatter):
|
1143
|
+
result = formatter.format_heading(self.title)
|
1144
|
+
formatter.indent()
|
1145
|
+
result = result + OptionContainer.format_help(self, formatter)
|
1146
|
+
formatter.dedent()
|
1147
|
+
return result
|
1148
|
+
|
1149
|
+
|
1150
|
+
class OptionParser (OptionContainer):
|
1151
|
+
|
1152
|
+
"""
|
1153
|
+
Class attributes:
|
1154
|
+
standard_option_list : [Option]
|
1155
|
+
list of standard options that will be accepted by all instances
|
1156
|
+
of this parser class (intended to be overridden by subclasses).
|
1157
|
+
|
1158
|
+
Instance attributes:
|
1159
|
+
usage : string
|
1160
|
+
a usage string for your program. Before it is displayed
|
1161
|
+
to the user, "%prog" will be expanded to the name of
|
1162
|
+
your program (self.prog or os.path.basename(sys.argv[0])).
|
1163
|
+
prog : string
|
1164
|
+
the name of the current program (to override
|
1165
|
+
os.path.basename(sys.argv[0])).
|
1166
|
+
epilog : string
|
1167
|
+
paragraph of help text to print after option help
|
1168
|
+
|
1169
|
+
option_groups : [OptionGroup]
|
1170
|
+
list of option groups in this parser (option groups are
|
1171
|
+
irrelevant for parsing the command-line, but very useful
|
1172
|
+
for generating help)
|
1173
|
+
|
1174
|
+
allow_interspersed_args : bool = true
|
1175
|
+
if true, positional arguments may be interspersed with options.
|
1176
|
+
Assuming -a and -b each take a single argument, the command-line
|
1177
|
+
-ablah foo bar -bboo baz
|
1178
|
+
will be interpreted the same as
|
1179
|
+
-ablah -bboo -- foo bar baz
|
1180
|
+
If this flag were false, that command line would be interpreted as
|
1181
|
+
-ablah -- foo bar -bboo baz
|
1182
|
+
-- ie. we stop processing options as soon as we see the first
|
1183
|
+
non-option argument. (This is the tradition followed by
|
1184
|
+
Python's getopt module, Perl's Getopt::Std, and other argument-
|
1185
|
+
parsing libraries, but it is generally annoying to users.)
|
1186
|
+
|
1187
|
+
process_default_values : bool = true
|
1188
|
+
if true, option default values are processed similarly to option
|
1189
|
+
values from the command line: that is, they are passed to the
|
1190
|
+
type-checking function for the option's type (as long as the
|
1191
|
+
default value is a string). (This really only matters if you
|
1192
|
+
have defined custom types; see SF bug #955889.) Set it to false
|
1193
|
+
to restore the behaviour of Optik 1.4.1 and earlier.
|
1194
|
+
|
1195
|
+
rargs : [string]
|
1196
|
+
the argument list currently being parsed. Only set when
|
1197
|
+
parse_args() is active, and continually trimmed down as
|
1198
|
+
we consume arguments. Mainly there for the benefit of
|
1199
|
+
callback options.
|
1200
|
+
largs : [string]
|
1201
|
+
the list of leftover arguments that we have skipped while
|
1202
|
+
parsing options. If allow_interspersed_args is false, this
|
1203
|
+
list is always empty.
|
1204
|
+
values : Values
|
1205
|
+
the set of option values currently being accumulated. Only
|
1206
|
+
set when parse_args() is active. Also mainly for callbacks.
|
1207
|
+
|
1208
|
+
Because of the 'rargs', 'largs', and 'values' attributes,
|
1209
|
+
OptionParser is not thread-safe. If, for some perverse reason, you
|
1210
|
+
need to parse command-line arguments simultaneously in different
|
1211
|
+
threads, use different OptionParser instances.
|
1212
|
+
|
1213
|
+
"""
|
1214
|
+
|
1215
|
+
standard_option_list = []
|
1216
|
+
|
1217
|
+
def __init__(self,
|
1218
|
+
usage=None,
|
1219
|
+
option_list=None,
|
1220
|
+
option_class=Option,
|
1221
|
+
version=None,
|
1222
|
+
conflict_handler="error",
|
1223
|
+
description=None,
|
1224
|
+
formatter=None,
|
1225
|
+
add_help_option=True,
|
1226
|
+
prog=None,
|
1227
|
+
epilog=None):
|
1228
|
+
OptionContainer.__init__(
|
1229
|
+
self, option_class, conflict_handler, description)
|
1230
|
+
self.set_usage(usage)
|
1231
|
+
self.prog = prog
|
1232
|
+
self.version = version
|
1233
|
+
self.allow_interspersed_args = True
|
1234
|
+
self.process_default_values = True
|
1235
|
+
if formatter is None:
|
1236
|
+
formatter = IndentedHelpFormatter()
|
1237
|
+
self.formatter = formatter
|
1238
|
+
self.formatter.set_parser(self)
|
1239
|
+
self.epilog = epilog
|
1240
|
+
|
1241
|
+
# Populate the option list; initial sources are the
|
1242
|
+
# standard_option_list class attribute, the 'option_list'
|
1243
|
+
# argument, and (if applicable) the _add_version_option() and
|
1244
|
+
# _add_help_option() methods.
|
1245
|
+
self._populate_option_list(option_list,
|
1246
|
+
add_help=add_help_option)
|
1247
|
+
|
1248
|
+
self._init_parsing_state()
|
1249
|
+
|
1250
|
+
|
1251
|
+
def destroy(self):
|
1252
|
+
"""
|
1253
|
+
Declare that you are done with this OptionParser. This cleans up
|
1254
|
+
reference cycles so the OptionParser (and all objects referenced by
|
1255
|
+
it) can be garbage-collected promptly. After calling destroy(), the
|
1256
|
+
OptionParser is unusable.
|
1257
|
+
"""
|
1258
|
+
OptionContainer.destroy(self)
|
1259
|
+
for group in self.option_groups:
|
1260
|
+
group.destroy()
|
1261
|
+
del self.option_list
|
1262
|
+
del self.option_groups
|
1263
|
+
del self.formatter
|
1264
|
+
|
1265
|
+
|
1266
|
+
# -- Private methods -----------------------------------------------
|
1267
|
+
# (used by our or OptionContainer's constructor)
|
1268
|
+
|
1269
|
+
def _create_option_list(self):
|
1270
|
+
self.option_list = []
|
1271
|
+
self.option_groups = []
|
1272
|
+
self._create_option_mappings()
|
1273
|
+
|
1274
|
+
def _add_help_option(self):
|
1275
|
+
self.add_option("-h", "--help",
|
1276
|
+
action="help",
|
1277
|
+
help=_("show this help message and exit"))
|
1278
|
+
|
1279
|
+
def _add_version_option(self):
|
1280
|
+
self.add_option("--version",
|
1281
|
+
action="version",
|
1282
|
+
help=_("show program's version number and exit"))
|
1283
|
+
|
1284
|
+
def _populate_option_list(self, option_list, add_help=True):
|
1285
|
+
if self.standard_option_list:
|
1286
|
+
self.add_options(self.standard_option_list)
|
1287
|
+
if option_list:
|
1288
|
+
self.add_options(option_list)
|
1289
|
+
if self.version:
|
1290
|
+
self._add_version_option()
|
1291
|
+
if add_help:
|
1292
|
+
self._add_help_option()
|
1293
|
+
|
1294
|
+
def _init_parsing_state(self):
|
1295
|
+
# These are set in parse_args() for the convenience of callbacks.
|
1296
|
+
self.rargs = None
|
1297
|
+
self.largs = None
|
1298
|
+
self.values = None
|
1299
|
+
|
1300
|
+
|
1301
|
+
# -- Simple modifier methods ---------------------------------------
|
1302
|
+
|
1303
|
+
def set_usage(self, usage):
|
1304
|
+
if usage is None:
|
1305
|
+
self.usage = _("%prog [options]")
|
1306
|
+
elif usage is SUPPRESS_USAGE:
|
1307
|
+
self.usage = None
|
1308
|
+
# For backwards compatibility with Optik 1.3 and earlier.
|
1309
|
+
elif string.lower(usage)[:7] == "usage: ":
|
1310
|
+
self.usage = usage[7:]
|
1311
|
+
else:
|
1312
|
+
self.usage = usage
|
1313
|
+
|
1314
|
+
def enable_interspersed_args(self):
|
1315
|
+
self.allow_interspersed_args = True
|
1316
|
+
|
1317
|
+
def disable_interspersed_args(self):
|
1318
|
+
self.allow_interspersed_args = False
|
1319
|
+
|
1320
|
+
def set_process_default_values(self, process):
|
1321
|
+
self.process_default_values = process
|
1322
|
+
|
1323
|
+
def set_default(self, dest, value):
|
1324
|
+
self.defaults[dest] = value
|
1325
|
+
|
1326
|
+
def set_defaults(self, **kwargs):
|
1327
|
+
self.defaults.update(kwargs)
|
1328
|
+
|
1329
|
+
def _get_all_options(self):
|
1330
|
+
options = self.option_list[:]
|
1331
|
+
for group in self.option_groups:
|
1332
|
+
options.extend(group.option_list)
|
1333
|
+
return options
|
1334
|
+
|
1335
|
+
def get_default_values(self):
|
1336
|
+
if not self.process_default_values:
|
1337
|
+
# Old, pre-Optik 1.5 behaviour.
|
1338
|
+
return Values(self.defaults)
|
1339
|
+
|
1340
|
+
defaults = self.defaults.copy()
|
1341
|
+
for option in self._get_all_options():
|
1342
|
+
default = defaults.get(option.dest)
|
1343
|
+
if isbasestring(default):
|
1344
|
+
opt_str = option.get_opt_string()
|
1345
|
+
defaults[option.dest] = option.check_value(opt_str, default)
|
1346
|
+
|
1347
|
+
return Values(defaults)
|
1348
|
+
|
1349
|
+
|
1350
|
+
# -- OptionGroup methods -------------------------------------------
|
1351
|
+
|
1352
|
+
def add_option_group(self, *args, **kwargs):
|
1353
|
+
# XXX lots of overlap with OptionContainer.add_option()
|
1354
|
+
if type(args[0]) is types.StringType:
|
1355
|
+
group = apply(OptionGroup, (self,) + args, kwargs)
|
1356
|
+
elif len(args) == 1 and not kwargs:
|
1357
|
+
group = args[0]
|
1358
|
+
if not isinstance(group, OptionGroup):
|
1359
|
+
raise TypeError, "not an OptionGroup instance: %r" % group
|
1360
|
+
if group.parser is not self:
|
1361
|
+
raise ValueError, "invalid OptionGroup (wrong parser)"
|
1362
|
+
else:
|
1363
|
+
raise TypeError, "invalid arguments"
|
1364
|
+
|
1365
|
+
self.option_groups.append(group)
|
1366
|
+
return group
|
1367
|
+
|
1368
|
+
def get_option_group(self, opt_str):
|
1369
|
+
option = (self._short_opt.get(opt_str) or
|
1370
|
+
self._long_opt.get(opt_str))
|
1371
|
+
if option and option.container is not self:
|
1372
|
+
return option.container
|
1373
|
+
return None
|
1374
|
+
|
1375
|
+
|
1376
|
+
# -- Option-parsing methods ----------------------------------------
|
1377
|
+
|
1378
|
+
def _get_args(self, args):
|
1379
|
+
if args is None:
|
1380
|
+
return sys.argv[1:]
|
1381
|
+
else:
|
1382
|
+
return args[:] # don't modify caller's list
|
1383
|
+
|
1384
|
+
def parse_args(self, args=None, values=None):
|
1385
|
+
"""
|
1386
|
+
parse_args(args : [string] = sys.argv[1:],
|
1387
|
+
values : Values = None)
|
1388
|
+
-> (values : Values, args : [string])
|
1389
|
+
|
1390
|
+
Parse the command-line options found in 'args' (default:
|
1391
|
+
sys.argv[1:]). Any errors result in a call to 'error()', which
|
1392
|
+
by default prints the usage message to stderr and calls
|
1393
|
+
sys.exit() with an error message. On success returns a pair
|
1394
|
+
(values, args) where 'values' is an Values instance (with all
|
1395
|
+
your option values) and 'args' is the list of arguments left
|
1396
|
+
over after parsing options.
|
1397
|
+
"""
|
1398
|
+
rargs = self._get_args(args)
|
1399
|
+
if values is None:
|
1400
|
+
values = self.get_default_values()
|
1401
|
+
|
1402
|
+
# Store the halves of the argument list as attributes for the
|
1403
|
+
# convenience of callbacks:
|
1404
|
+
# rargs
|
1405
|
+
# the rest of the command-line (the "r" stands for
|
1406
|
+
# "remaining" or "right-hand")
|
1407
|
+
# largs
|
1408
|
+
# the leftover arguments -- ie. what's left after removing
|
1409
|
+
# options and their arguments (the "l" stands for "leftover"
|
1410
|
+
# or "left-hand")
|
1411
|
+
self.rargs = rargs
|
1412
|
+
self.largs = largs = []
|
1413
|
+
self.values = values
|
1414
|
+
|
1415
|
+
try:
|
1416
|
+
stop = self._process_args(largs, rargs, values)
|
1417
|
+
except (BadOptionError, OptionValueError), err:
|
1418
|
+
self.error(str(err))
|
1419
|
+
|
1420
|
+
args = largs + rargs
|
1421
|
+
return self.check_values(values, args)
|
1422
|
+
|
1423
|
+
def check_values(self, values, args):
|
1424
|
+
"""
|
1425
|
+
check_values(values : Values, args : [string])
|
1426
|
+
-> (values : Values, args : [string])
|
1427
|
+
|
1428
|
+
Check that the supplied option values and leftover arguments are
|
1429
|
+
valid. Returns the option values and leftover arguments
|
1430
|
+
(possibly adjusted, possibly completely new -- whatever you
|
1431
|
+
like). Default implementation just returns the passed-in
|
1432
|
+
values; subclasses may override as desired.
|
1433
|
+
"""
|
1434
|
+
return (values, args)
|
1435
|
+
|
1436
|
+
def _process_args(self, largs, rargs, values):
|
1437
|
+
"""_process_args(largs : [string],
|
1438
|
+
rargs : [string],
|
1439
|
+
values : Values)
|
1440
|
+
|
1441
|
+
Process command-line arguments and populate 'values', consuming
|
1442
|
+
options and arguments from 'rargs'. If 'allow_interspersed_args' is
|
1443
|
+
false, stop at the first non-option argument. If true, accumulate any
|
1444
|
+
interspersed non-option arguments in 'largs'.
|
1445
|
+
"""
|
1446
|
+
while rargs:
|
1447
|
+
arg = rargs[0]
|
1448
|
+
# We handle bare "--" explicitly, and bare "-" is handled by the
|
1449
|
+
# standard arg handler since the short arg case ensures that the
|
1450
|
+
# len of the opt string is greater than 1.
|
1451
|
+
if arg == "--":
|
1452
|
+
del rargs[0]
|
1453
|
+
return
|
1454
|
+
elif arg[0:2] == "--":
|
1455
|
+
# process a single long option (possibly with value(s))
|
1456
|
+
self._process_long_opt(rargs, values)
|
1457
|
+
elif arg[:1] == "-" and len(arg) > 1:
|
1458
|
+
# process a cluster of short options (possibly with
|
1459
|
+
# value(s) for the last one only)
|
1460
|
+
self._process_short_opts(rargs, values)
|
1461
|
+
elif self.allow_interspersed_args:
|
1462
|
+
largs.append(arg)
|
1463
|
+
del rargs[0]
|
1464
|
+
else:
|
1465
|
+
return # stop now, leave this arg in rargs
|
1466
|
+
|
1467
|
+
# Say this is the original argument list:
|
1468
|
+
# [arg0, arg1, ..., arg(i-1), arg(i), arg(i+1), ..., arg(N-1)]
|
1469
|
+
# ^
|
1470
|
+
# (we are about to process arg(i)).
|
1471
|
+
#
|
1472
|
+
# Then rargs is [arg(i), ..., arg(N-1)] and largs is a *subset* of
|
1473
|
+
# [arg0, ..., arg(i-1)] (any options and their arguments will have
|
1474
|
+
# been removed from largs).
|
1475
|
+
#
|
1476
|
+
# The while loop will usually consume 1 or more arguments per pass.
|
1477
|
+
# If it consumes 1 (eg. arg is an option that takes no arguments),
|
1478
|
+
# then after _process_arg() is done the situation is:
|
1479
|
+
#
|
1480
|
+
# largs = subset of [arg0, ..., arg(i)]
|
1481
|
+
# rargs = [arg(i+1), ..., arg(N-1)]
|
1482
|
+
#
|
1483
|
+
# If allow_interspersed_args is false, largs will always be
|
1484
|
+
# *empty* -- still a subset of [arg0, ..., arg(i-1)], but
|
1485
|
+
# not a very interesting subset!
|
1486
|
+
|
1487
|
+
def _match_long_opt(self, opt):
|
1488
|
+
"""_match_long_opt(opt : string) -> string
|
1489
|
+
|
1490
|
+
Determine which long option string 'opt' matches, ie. which one
|
1491
|
+
it is an unambiguous abbrevation for. Raises BadOptionError if
|
1492
|
+
'opt' doesn't unambiguously match any long option string.
|
1493
|
+
"""
|
1494
|
+
return _match_abbrev(opt, self._long_opt)
|
1495
|
+
|
1496
|
+
def _process_long_opt(self, rargs, values):
|
1497
|
+
arg = rargs.pop(0)
|
1498
|
+
|
1499
|
+
# Value explicitly attached to arg? Pretend it's the next
|
1500
|
+
# argument.
|
1501
|
+
if "=" in arg:
|
1502
|
+
(opt, next_arg) = string.split(arg, "=", 1)
|
1503
|
+
rargs.insert(0, next_arg)
|
1504
|
+
had_explicit_value = True
|
1505
|
+
else:
|
1506
|
+
opt = arg
|
1507
|
+
had_explicit_value = False
|
1508
|
+
|
1509
|
+
opt = self._match_long_opt(opt)
|
1510
|
+
option = self._long_opt[opt]
|
1511
|
+
if option.takes_value():
|
1512
|
+
nargs = option.nargs
|
1513
|
+
if len(rargs) < nargs:
|
1514
|
+
if nargs == 1:
|
1515
|
+
self.error(_("%s option requires an argument") % opt)
|
1516
|
+
else:
|
1517
|
+
self.error(_("%s option requires %d arguments")
|
1518
|
+
% (opt, nargs))
|
1519
|
+
elif nargs == 1:
|
1520
|
+
value = rargs.pop(0)
|
1521
|
+
else:
|
1522
|
+
value = tuple(rargs[0:nargs])
|
1523
|
+
del rargs[0:nargs]
|
1524
|
+
|
1525
|
+
elif had_explicit_value:
|
1526
|
+
self.error(_("%s option does not take a value") % opt)
|
1527
|
+
|
1528
|
+
else:
|
1529
|
+
value = None
|
1530
|
+
|
1531
|
+
option.process(opt, value, values, self)
|
1532
|
+
|
1533
|
+
def _process_short_opts(self, rargs, values):
|
1534
|
+
arg = rargs.pop(0)
|
1535
|
+
stop = False
|
1536
|
+
i = 1
|
1537
|
+
for ch in arg[1:]:
|
1538
|
+
opt = "-" + ch
|
1539
|
+
option = self._short_opt.get(opt)
|
1540
|
+
i = i + 1 # we have consumed a character
|
1541
|
+
|
1542
|
+
if not option:
|
1543
|
+
raise BadOptionError(opt)
|
1544
|
+
if option.takes_value():
|
1545
|
+
# Any characters left in arg? Pretend they're the
|
1546
|
+
# next arg, and stop consuming characters of arg.
|
1547
|
+
if i < len(arg):
|
1548
|
+
rargs.insert(0, arg[i:])
|
1549
|
+
stop = True
|
1550
|
+
|
1551
|
+
nargs = option.nargs
|
1552
|
+
if len(rargs) < nargs:
|
1553
|
+
if nargs == 1:
|
1554
|
+
self.error(_("%s option requires an argument") % opt)
|
1555
|
+
else:
|
1556
|
+
self.error(_("%s option requires %d arguments")
|
1557
|
+
% (opt, nargs))
|
1558
|
+
elif nargs == 1:
|
1559
|
+
value = rargs.pop(0)
|
1560
|
+
else:
|
1561
|
+
value = tuple(rargs[0:nargs])
|
1562
|
+
del rargs[0:nargs]
|
1563
|
+
|
1564
|
+
else: # option doesn't take a value
|
1565
|
+
value = None
|
1566
|
+
|
1567
|
+
option.process(opt, value, values, self)
|
1568
|
+
|
1569
|
+
if stop:
|
1570
|
+
break
|
1571
|
+
|
1572
|
+
|
1573
|
+
# -- Feedback methods ----------------------------------------------
|
1574
|
+
|
1575
|
+
def get_prog_name(self):
|
1576
|
+
if self.prog is None:
|
1577
|
+
return os.path.basename(sys.argv[0])
|
1578
|
+
else:
|
1579
|
+
return self.prog
|
1580
|
+
|
1581
|
+
def expand_prog_name(self, s):
|
1582
|
+
return string.replace(s, "%prog", self.get_prog_name())
|
1583
|
+
|
1584
|
+
def get_description(self):
|
1585
|
+
return self.expand_prog_name(self.description)
|
1586
|
+
|
1587
|
+
def exit(self, status=0, msg=None):
|
1588
|
+
if msg:
|
1589
|
+
sys.stderr.write(msg)
|
1590
|
+
sys.exit(status)
|
1591
|
+
|
1592
|
+
def error(self, msg):
|
1593
|
+
"""error(msg : string)
|
1594
|
+
|
1595
|
+
Print a usage message incorporating 'msg' to stderr and exit.
|
1596
|
+
If you override this in a subclass, it should not return -- it
|
1597
|
+
should either exit or raise an exception.
|
1598
|
+
"""
|
1599
|
+
self.print_usage(sys.stderr)
|
1600
|
+
self.exit(2, "%s: error: %s\n" % (self.get_prog_name(), msg))
|
1601
|
+
|
1602
|
+
def get_usage(self):
|
1603
|
+
if self.usage:
|
1604
|
+
return self.formatter.format_usage(
|
1605
|
+
self.expand_prog_name(self.usage))
|
1606
|
+
else:
|
1607
|
+
return ""
|
1608
|
+
|
1609
|
+
def print_usage(self, file=None):
|
1610
|
+
"""print_usage(file : file = stdout)
|
1611
|
+
|
1612
|
+
Print the usage message for the current program (self.usage) to
|
1613
|
+
'file' (default stdout). Any occurence of the string "%prog" in
|
1614
|
+
self.usage is replaced with the name of the current program
|
1615
|
+
(basename of sys.argv[0]). Does nothing if self.usage is empty
|
1616
|
+
or not defined.
|
1617
|
+
"""
|
1618
|
+
if self.usage:
|
1619
|
+
file.write(self.get_usage() + '\n')
|
1620
|
+
|
1621
|
+
def get_version(self):
|
1622
|
+
if self.version:
|
1623
|
+
return self.expand_prog_name(self.version)
|
1624
|
+
else:
|
1625
|
+
return ""
|
1626
|
+
|
1627
|
+
def print_version(self, file=None):
|
1628
|
+
"""print_version(file : file = stdout)
|
1629
|
+
|
1630
|
+
Print the version message for this program (self.version) to
|
1631
|
+
'file' (default stdout). As with print_usage(), any occurence
|
1632
|
+
of "%prog" in self.version is replaced by the current program's
|
1633
|
+
name. Does nothing if self.version is empty or undefined.
|
1634
|
+
"""
|
1635
|
+
if self.version:
|
1636
|
+
file.write(self.get_version() + '\n')
|
1637
|
+
|
1638
|
+
def format_option_help(self, formatter=None):
|
1639
|
+
if formatter is None:
|
1640
|
+
formatter = self.formatter
|
1641
|
+
formatter.store_option_strings(self)
|
1642
|
+
result = []
|
1643
|
+
result.append(formatter.format_heading(_("Options")))
|
1644
|
+
formatter.indent()
|
1645
|
+
if self.option_list:
|
1646
|
+
result.append(OptionContainer.format_option_help(self, formatter))
|
1647
|
+
result.append("\n")
|
1648
|
+
for group in self.option_groups:
|
1649
|
+
result.append(group.format_help(formatter))
|
1650
|
+
result.append("\n")
|
1651
|
+
formatter.dedent()
|
1652
|
+
# Drop the last "\n", or the header if no options or option groups:
|
1653
|
+
return string.join(result[:-1], "")
|
1654
|
+
|
1655
|
+
def format_epilog(self, formatter):
|
1656
|
+
return formatter.format_epilog(self.epilog)
|
1657
|
+
|
1658
|
+
def format_help(self, formatter=None):
|
1659
|
+
if formatter is None:
|
1660
|
+
formatter = self.formatter
|
1661
|
+
result = []
|
1662
|
+
if self.usage:
|
1663
|
+
result.append(self.get_usage() + "\n")
|
1664
|
+
if self.description:
|
1665
|
+
result.append(self.format_description(formatter) + "\n")
|
1666
|
+
result.append(self.format_option_help(formatter))
|
1667
|
+
result.append(self.format_epilog(formatter))
|
1668
|
+
return string.join(result, "")
|
1669
|
+
|
1670
|
+
# used by test suite
|
1671
|
+
def _get_encoding(self, file):
|
1672
|
+
encoding = getattr(file, "encoding", None)
|
1673
|
+
if not encoding:
|
1674
|
+
encoding = sys.getdefaultencoding()
|
1675
|
+
return encoding
|
1676
|
+
|
1677
|
+
def print_help(self, file=None):
|
1678
|
+
"""print_help(file : file = stdout)
|
1679
|
+
|
1680
|
+
Print an extended help message, listing all options and any
|
1681
|
+
help text provided with them, to 'file' (default stdout).
|
1682
|
+
"""
|
1683
|
+
if file is None:
|
1684
|
+
file = sys.stdout
|
1685
|
+
encoding = self._get_encoding(file)
|
1686
|
+
file.write(encode_wrapper(self.format_help(), encoding, "replace"))
|
1687
|
+
|
1688
|
+
# class OptionParser
|
1689
|
+
|
1690
|
+
|
1691
|
+
def _match_abbrev(s, wordmap):
|
1692
|
+
"""_match_abbrev(s : string, wordmap : {string : Option}) -> string
|
1693
|
+
|
1694
|
+
Return the string key in 'wordmap' for which 's' is an unambiguous
|
1695
|
+
abbreviation. If 's' is found to be ambiguous or doesn't match any of
|
1696
|
+
'words', raise BadOptionError.
|
1697
|
+
"""
|
1698
|
+
# Is there an exact match?
|
1699
|
+
if wordmap.has_key(s):
|
1700
|
+
return s
|
1701
|
+
else:
|
1702
|
+
# Isolate all words with s as a prefix.
|
1703
|
+
possibilities = filter(lambda w, s=s: w[:len(s)] == s, wordmap.keys())
|
1704
|
+
# No exact match, so there had better be just one possibility.
|
1705
|
+
if len(possibilities) == 1:
|
1706
|
+
return possibilities[0]
|
1707
|
+
elif not possibilities:
|
1708
|
+
raise BadOptionError(s)
|
1709
|
+
else:
|
1710
|
+
# More than one possible completion: ambiguous prefix.
|
1711
|
+
possibilities.sort()
|
1712
|
+
raise AmbiguousOptionError(s, possibilities)
|
1713
|
+
|
1714
|
+
|
1715
|
+
# Some day, there might be many Option classes. As of Optik 1.3, the
|
1716
|
+
# preferred way to instantiate Options is indirectly, via make_option(),
|
1717
|
+
# which will become a factory function when there are many Option
|
1718
|
+
# classes.
|
1719
|
+
make_option = Option
|
1720
|
+
|
1721
|
+
# Local Variables:
|
1722
|
+
# tab-width:4
|
1723
|
+
# indent-tabs-mode:nil
|
1724
|
+
# End:
|
1725
|
+
# vim: set expandtab tabstop=4 shiftwidth=4:
|