class ExecJS::Runtime::Context

def exec(source, options = {})

context.exec("1") # => nil (nothing was returned)
context.exec("return 1") # => 1

returned value.
Evaluates the +source+ in the context of a function body and returns the
def exec(source, options = {})
  raise NotImplementedError
end