Sha256: f6e895092f1b04fccd297a1a46f7a7db6ae1539839220f7559a64962d3456f62
Contents?: true
Size: 1.98 KB
Versions: 1
Compression:
Stored size: 1.98 KB
Contents
module Steep module AST module Types class Union attr_reader :types attr_reader :location def initialize(types:, location: nil) @types = types @location = location end def self.build(types:, location: nil) return AST::Types::Bot.new if types.empty? return types.first if types.size == 1 types.flat_map do |type| if type.is_a?(Union) type.types else [type] end end.map do |type| case type when AST::Types::Any return AST::Types::Any.new(location: location) when AST::Types::Top return AST::Types::Top.new(location: location) when AST::Types::Bot nil else type end end.compact.uniq.yield_self do |tys| case tys.size when 0 AST::Types::Bot.new when 1 tys.first else new(types: tys.sort_by(&:hash), location: location) end end end def ==(other) other.is_a?(Union) && other.types == types end def hash self.class.hash ^ types.hash end alias eql? == def subst(s) self.class.build(location: location, types: types.map {|ty| ty.subst(s) }) end def to_s "(#{types.map(&:to_s).sort.join(" | ")})" end def free_variables @fvs ||= Set.new.tap do |set| types.each do |type| set.merge(type.free_variables) end end end include Helper::ChildrenLevel def level [0] + level_of_children(types) end def with_location(new_location) self.class.new(types: types, location: new_location) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
steep-0.27.0 | lib/steep/ast/types/union.rb |