Sha256: 54a484156da900eca612ce4e9a0c70aa18b4e24dc0441d2e63f260ea52decbcc

Contents?: true

Size: 1.8 KB

Versions: 31

Compression:

Stored size: 1.8 KB

Contents

module Steep
  module AST
    module Types
      class Intersection
        attr_reader :types
        attr_reader :location

        def initialize(types:, location: nil)
          @types = types
          @location = location
        end

        def self.build(types:, location: nil)
          types.flat_map do |type|
            if type.is_a?(Intersection)
              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::Bot
              return AST::Types::Bot.new(location: location)
            when AST::Types::Top
              nil
            else
              type
            end
          end.compact.uniq.yield_self do |tys|
            if tys.size == 1
              tys.first
            else
              new(types: tys.sort_by(&:hash), location: location)
            end
          end
        end

        def ==(other)
          other.is_a?(Intersection) &&
            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
          types.each.with_object(Set.new) do |type, set|
            set.merge(type.free_variables)
          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

31 entries across 31 versions & 1 rubygems

Version Path
steep-0.25.0 lib/steep/ast/types/intersection.rb
steep-0.24.0 lib/steep/ast/types/intersection.rb
steep-0.23.0 lib/steep/ast/types/intersection.rb
steep-0.22.0 lib/steep/ast/types/intersection.rb
steep-0.21.0 lib/steep/ast/types/intersection.rb
steep-0.20.0 lib/steep/ast/types/intersection.rb
steep-0.19.0 lib/steep/ast/types/intersection.rb
steep-0.18.0 lib/steep/ast/types/intersection.rb
steep-0.17.1 lib/steep/ast/types/intersection.rb
steep-0.17.0 lib/steep/ast/types/intersection.rb
steep-0.16.3 lib/steep/ast/types/intersection.rb
steep-0.16.2 lib/steep/ast/types/intersection.rb
steep-0.16.1 lib/steep/ast/types/intersection.rb
steep-0.16.0 lib/steep/ast/types/intersection.rb
steep-0.15.0 lib/steep/ast/types/intersection.rb
steep-0.14.0 lib/steep/ast/types/intersection.rb
steep-0.13.0 lib/steep/ast/types/intersection.rb
steep-0.12.0 lib/steep/ast/types/intersection.rb
steep-0.11.1 lib/steep/ast/types/intersection.rb
steep-0.11.0 lib/steep/ast/types/intersection.rb