Module: PryRescue::SourceLocation

Defined in:
lib/pry-rescue/source_location.rb

Constant Summary collapse

DEPRECATION_TIME =
Time.new(2021,4,1)
WithRuby2_5 =
->(b){ [b.eval("__FILE__"), b.eval("__LINE__")] }
WithRuby2_6 =
->(b){ b.source_location }