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

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