Parent

Methods

Files

V8::C::Context

Public Instance Methods

enter() 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

[Validate]

Generated with the Darkfish Rdoc Generator 2.