Sha256: 250d7e9b954df4f76edd2c51d93264dccce3475cf5381e7d0ca3cefb9ab103f6
Contents?: true
Size: 644 Bytes
Versions: 18
Compression:
Stored size: 644 Bytes
Contents
module Steep module AST module Types class Any attr_reader :location def initialize(location: nil) @location = location end def ==(other) other.is_a?(Any) end def hash self.class.hash end alias eql? == def subst(s) self end def to_s "untyped" end def free_variables Set.new end def level [1] end def with_location(new_location) self.class.new(location: new_location) end end end end end
Version data entries
18 entries across 18 versions & 1 rubygems