Sha256: feb0e3e9c9e44b3defa4f583f0691003b6e7fd90e3b79d9244172447f50ebabb

Contents?: true

Size: 223 Bytes

Versions: 15

Compression:

Stored size: 223 Bytes

Contents

byebug

class SteppingExample
  def a
    z = 2
    b
  end

  def b
    v2 = 5 if 1 == 2 ; [1,2,3].map { |a| a.to_f }
    c
  end

  def c
    z = 4
    5
  end
end

ex = SteppingExample.new.a
2.times do
  ex += 1
end

ex

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
byebug-2.1.1 test/examples/stepping.rb
byebug-2.1.0 test/examples/stepping.rb
byebug-2.0.0 test/examples/stepping.rb
byebug-1.8.2 test/examples/stepping.rb
byebug-1.8.1 test/examples/stepping.rb
byebug-1.8.0 test/examples/stepping.rb
byebug-1.7.0 test/examples/stepping.rb
byebug-1.6.1 test/examples/stepping.rb
byebug-1.6.0 test/examples/stepping.rb
byebug-1.5.0 test/examples/stepping.rb
byebug-1.4.2 test/examples/stepping.rb
byebug-1.4.1 test/examples/stepping.rb
byebug-1.4.0 test/examples/stepping.rb
byebug-1.3.1 test/examples/stepping.rb
byebug-1.3.0 test/examples/stepping.rb