Sha256: 7a9639e9f7bc46a4b633bd77f23a5263b3af54fae2d98cc0630d73024d0ba723

Contents?: true

Size: 246 Bytes

Versions: 11

Compression:

Stored size: 246 Bytes

Contents

def bar(x)
end

def test_yield
  yield
end

def foo
  a = [1]
  test_yield do
    bar(a)
  end
  a
end

foo

__END__
# Classes
class Object
  private
  def bar: ([Integer] x) -> nil
  def test_yield: { -> nil } -> nil
  def foo: -> [Integer]
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
typeprof-0.20.0 smoke/array12.rb
typeprof-0.15.3 smoke/array12.rb
typeprof-0.15.2 smoke/array12.rb
typeprof-0.15.1 smoke/array12.rb
typeprof-0.15.0 smoke/array12.rb
typeprof-0.14.1 smoke/array12.rb
typeprof-0.14.0 smoke/array12.rb
typeprof-0.13.0 smoke/array12.rb
typeprof-0.12.0 smoke/array12.rb
typeprof-0.11.0 smoke/array12.rb
typeprof-0.10.0 smoke/array12.rb