JoshCheek / seeing_is_believing

Displays the results of every line of code in your file
1.31k stars 54 forks source link

Blows up when inspect recurses infinitely #37

Closed JoshCheek closed 10 years ago

JoshCheek commented 10 years ago
def self.inspect
  self
end
self

This is because inspect is invoked from within SiB code and backtrace does not go into user code, so it appears to the rescue statement that our code blew up here.