class V8::C::Context

Public Instance Methods

enter() { |self| ... } click to toggle source
# File lib/v8/context.rb, line 95
def enter
  if block_given?
    if IsEntered()
      yield(self)
    else
      Enter()
      begin
        yield(self)
      ensure
        Exit()
      end
    end
  end
end