Sha256: c3d1a790c906dd6b8941803a8baf899d4c9e46a5bf0a357c02cff47ee71a401a

Contents?: true

Size: 836 Bytes

Versions: 11

Compression:

Stored size: 836 Bytes

Contents

def f1
  yield k: 1
end
def log1(n); end
f1 {|k:| log1(k) }

def f2
  yield k: 1
end
def log2(n); end
f2 {|k: :opt| log2(k) }

def f3
  yield k: 1
end
def log3(n); end
f3 {|k: "str"| log3(k) }

def f4
  yield k: 1
end
def log4(kwrest); end
f4 {|**kwrest| log4(kwrest) }

def f5
  yield k: 1
end
f5 {|| }

def f6
  yield
end
f6 {|k:| }

__END__
# Errors
smoke/block-kwarg.rb:26: [error] unknown keyword: k
smoke/block-kwarg.rb:31: [error] no argument for required keywords

# Classes
class Object
  private
  def f1: { -> nil } -> nil
  def log1: (Integer n) -> nil
  def f2: { -> nil } -> nil
  def log2: (:opt | Integer n) -> nil
  def f3: { -> nil } -> nil
  def log3: (Integer | String n) -> nil
  def f4: { -> nil } -> nil
  def log4: ({k: Integer} kwrest) -> nil
  def f5: { -> nil } -> untyped
  def f6: { -> nil } -> untyped
end

Version data entries

11 entries across 11 versions & 1 rubygems

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