1
0
Fork 0
mirror of https://github.com/rubyjs/therubyracer synced 2023-03-27 23:21:42 -04:00
therubyracer/lib/v8/context.rb
2012-05-09 14:46:04 -05:00

12 lines
No EOL
172 B
Ruby

module V8
class Context
def initialize
@native = V8::C::Context::New()
end
def eval(source, filename = '<eval>', line = 1)
nil
end
end
end