mirror of
https://github.com/rubyjs/therubyracer
synced 2023-03-27 23:21:42 -04:00
13 lines
No EOL
223 B
Ruby
13 lines
No EOL
223 B
Ruby
|
|
module V8
|
|
module Jasmine
|
|
class Context < V8::Context
|
|
def initialize(*args)
|
|
super(*args) do
|
|
self.extend V8::Jasmine
|
|
yield(self) if block_given?
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |