class ExecJS::Runtime::Context
Public Class Methods
new(runtime, source = "")
click to toggle source
# File lib/execjs/runtime.rb, line 9 def initialize(runtime, source = "") end
Public Instance Methods
call(properties, *args)
click to toggle source
# File lib/execjs/runtime.rb, line 20 def call(properties, *args) raise NotImplementedError end
eval(source, options = {})
click to toggle source
# File lib/execjs/runtime.rb, line 16 def eval(source, options = {}) raise NotImplementedError end
exec(source, options = {})
click to toggle source
# File lib/execjs/runtime.rb, line 12 def exec(source, options = {}) raise NotImplementedError end