Sha256: 2ed29661b3659fea6fe210293b96659df8e6ca2f3d73f25bff25abfd59d81016
Contents?: true
Size: 803 Bytes
Versions: 23
Compression:
Stored size: 803 Bytes
Contents
gcd.rb:4 def gcd(a, b) # # ******************************************************** # # This tests mostly invalid breakpoints. # # We have some valid ones too. # # ******************************************************** # set debuggertesting on Currently testing the debugger is on. # set callstyle last Frame call-display style is last. # set autoeval off autoeval is off. # # There aren't 100 lines in gcd.rb. # break 100 *** There are only 18 lines in file "gcd.rb". # break gcd.rb:100 *** There are only 18 lines in file "gcd.rb". # # Line one isn't a valid stopping point. # # It is a comment. # break gcd.rb:1 *** Line 1 is not a stopping point in file "gcd.rb". # # This line is okay # break gcd.rb:4 Breakpoint 1 file gcd.rb, line 4 # # No class Foo. # break Foo.bar *** Unknown class Foo. # q
Version data entries
23 entries across 23 versions & 4 rubygems