1
0
Fork 0
mirror of https://github.com/rails/execjs synced 2023-03-27 23:21:20 -04:00

Mustang is totally busted

Hasn't been updated in years
This commit is contained in:
Joshua Peek 2014-12-22 23:35:49 -06:00
parent c67a72ae96
commit 39c6644744
2 changed files with 0 additions and 80 deletions

View file

@ -1,76 +0,0 @@
require "execjs/runtime"
module ExecJS
class MustangRuntime < Runtime
class Context < Runtime::Context
def initialize(runtime, source = "")
source = encode(source)
@v8_context = ::Mustang::Context.new
@v8_context.eval(source)
end
def exec(source, options = {})
source = encode(source)
if /\S/ =~ source
eval "(function(){#{source}})()", options
end
end
def eval(source, options = {})
source = encode(source)
if /\S/ =~ source
unbox @v8_context.eval("(#{source})")
end
end
def call(properties, *args)
unbox @v8_context.eval(properties).call(*args)
rescue NoMethodError => e
raise ProgramError, e.message
end
def unbox(value)
case value
when Mustang::V8::Array
value.map { |v| unbox(v) }
when Mustang::V8::Boolean
value.to_bool
when Mustang::V8::NullClass, Mustang::V8::UndefinedClass
nil
when Mustang::V8::Function
nil
when Mustang::V8::SyntaxError
raise RuntimeError, value.message
when Mustang::V8::Error
raise ProgramError, value.message
when Mustang::V8::Object
value.inject({}) { |h, (k, v)|
v = unbox(v)
h[k] = v if v
h
}
else
value.respond_to?(:delegate) ? value.delegate : value
end
end
end
def name
"Mustang (V8)"
end
def available?
require "mustang"
true
rescue LoadError
false
end
def deprecated?
true
end
end
end

View file

@ -2,7 +2,6 @@ require "execjs/module"
require "execjs/disabled_runtime"
require "execjs/external_runtime"
require "execjs/johnson_runtime"
require "execjs/mustang_runtime"
require "execjs/ruby_racer_runtime"
require "execjs/ruby_rhino_runtime"
@ -16,8 +15,6 @@ module ExecJS
Johnson = JohnsonRuntime.new
Mustang = MustangRuntime.new
Node = ExternalRuntime.new(
name: "Node.js (V8)",
command: ["nodejs", "node"],
@ -79,7 +76,6 @@ module ExecJS
RubyRacer,
RubyRhino,
Johnson,
Mustang,
JavaScriptCore,
Node,
SpiderMonkey,