Object
# 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