Type
# File typeprof-0.12.0/lib/typeprof/type.rb, line 585
def consistent?(other)
case other
when Type::Proc
@block_body.consistent?(other.block_body)
else
self == other
end
end
# File typeprof-0.12.0/lib/typeprof/type.rb, line 606
def include_untyped?(scratch)
false # XXX: need to check the block signatures recursively
end
# File typeprof-0.12.0/lib/typeprof/type.rb, line 594
def method_dispatch_info
@base_type.method_dispatch_info
end