Created
July 31, 2012 21:43
-
-
Save jasonLaster/3220859 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
debugger.rb:21 | |
a | |
(rdb:1) s | |
debugger.rb:4 | |
b | |
(rdb:1) | |
debugger.rb:8 | |
c | |
(rdb:1) | |
debugger.rb:12 | |
d | |
(rdb:1) where | |
--> #0 Object.c at line debugger.rb:12 | |
#1 Object.b at line debugger.rb:8 | |
#2 Object.a at line debugger.rb:4 | |
#3 at line debugger.rb:21 | |
(rdb:1) up | |
#1 Object.b at line debugger.rb:8 | |
(rdb:1) finish | |
``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'debugger' | |
def a | |
b | |
end | |
def b() | |
c | |
end | |
def c() | |
d | |
end | |
def d() | |
"foo" | |
end | |
debugger | |
a |
Author
jasonLaster
commented
Jul 31, 2012
I call this the christmas tree of FOO
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment