class Cucumber::JsSupport::JsWorld

def execute(js_function, args=[])

def execute(js_function, args=[])
  js_function.call(*args)
end

def initialize

def initialize
  @world = V8::Context.new
end

def method_missing(method_name, *args)

def method_missing(method_name, *args)
  @world.send(method_name, *args)
end