Sha256: b36648f66acbd896865106fae99f02326496d3622aa4aa9cd39649e23f86b43a

Contents?: true

Size: 484 Bytes

Versions: 2

Compression:

Stored size: 484 Bytes

Contents

require 'pry-moves'
require './tracer.rb'


def fi(param)
  a = 2 + 1
  puts param
end

class A

  def initialize
    puts :xuilo
  end

  def aa
    bb
  end

  def bb
    #binding.pry
    k = A.new
    a = 1
    cc
  end

  def cc
    koko = :love
    binding.pry
    return if true
    puts :two
  end
  alias cc_al cc

end

puts :prepare

A.new.cc_al
A.new.cc_al
A.new.cc_al

a = A.new.aa.bb.cc

bb = 1

exit

pp = 123 if debucher?
binding.pry if debucher?

binding.pry

puts :ok

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pry-moves-0.1.6 playground/sand.rb
pry-moves-0.1.5 playground/sand.rb