![show/hide quicksearch [+]](../images/find.png)
 
               # File power_assert-1.2.0/lib/power_assert/context.rb, line 211
def initialize(binding)
  target_frame, *base = PowerAssert.app_caller_locations
  super(base.length)
  path = target_frame.path
  lineno = target_frame.lineno
  if File.exist?(path)
    line = File.open(path) {|fp| fp.each_line.drop(lineno - 1).first }
    @parser = Parser.new(line, path, lineno, binding)
  else
    @parser = Parser::DUMMY
  end
end
             
             
               # File power_assert-1.2.0/lib/power_assert/context.rb, line 229
def disable
  @trace_return.disable
end