Sha256: db7c9801f7ec01f71919f8e8ebbda8b820103ec5c1644c3106024d3f5bd98763

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

module Steep
  module AST
    module Types
      class Literal
        attr_reader :location
        attr_reader :value

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

        def ==(other)
          other.is_a?(Literal) &&
            other.value == value
        end

        def hash
          self.class.hash
        end

        alias eql? ==

        def subst(s)
          self
        end

        def to_s
          value.inspect
        end

        include Helper::NoFreeVariables

        include Helper::NoChild

        def level
          [0]
        end

        def with_location(new_location)
          _ = self.class.new(value: value, location: new_location)
        end

        def back_type
          klass = case value
                  when Integer
                    Builtin::Integer
                  when String
                    Builtin::String
                  when Symbol
                    Builtin::Symbol
                  when true
                    Builtin::TrueClass
                  when false
                    Builtin::FalseClass
                  else
                    raise "Unexpected literal type: #{value.inspect}"
                  end

          Name::Instance.new(name: klass.module_name, args: [], location: location)
        end
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
steep-1.3.0.pre.2 lib/steep/ast/types/literal.rb
steep-1.3.0.pre.1 lib/steep/ast/types/literal.rb
steep-1.2.1 lib/steep/ast/types/literal.rb
steep-1.2.0 lib/steep/ast/types/literal.rb
steep-1.2.0.pre.1 lib/steep/ast/types/literal.rb