Sha256: 0f5fd3ebbb2550ea181e4590ef40a6b09e53e0a6680b04edea3281fc31c217d2

Contents?: true

Size: 260 Bytes

Versions: 11

Compression:

Stored size: 260 Bytes

Contents

def bar
  baz do
    yield
  end
end

def baz
  yield
end

def foo
  a = 42
  bar do
    a = "str"
  end
  a
end

foo

__END__
# Classes
class Object
  def bar : { -> String } -> String
  def baz : { -> String } -> String
  def foo : -> (Integer | String)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typeprof-0.7.0 smoke/block8.rb
typeprof-0.6.1 smoke/block8.rb
typeprof-0.6.0 smoke/block8.rb
typeprof-0.5.4 smoke/block8.rb
typeprof-0.5.3 smoke/block8.rb
typeprof-0.5.2 smoke/block8.rb
typeprof-0.5.1 smoke/block8.rb
typeprof-0.5.0 smoke/block8.rb
typeprof-0.4.2 smoke/block8.rb
typeprof-0.4.1 smoke/block8.rb
typeprof-0.4.0 smoke/block8.rb