mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
12 lines
No EOL
172 B
Ruby
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 |