Sha256: 6eee7dee04b82c712a2fa0e9be31eadcf8d82355f6cf29b0f9a440e00028c2d0

Contents?: true

Size: 1.36 KB

Versions: 31

Compression:

Stored size: 1.36 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

31 entries across 31 versions & 1 rubygems

Version Path
steep-1.8.0.dev.2 lib/steep/ast/types/literal.rb
steep-1.8.0.dev.1 lib/steep/ast/types/literal.rb
steep-1.7.1 lib/steep/ast/types/literal.rb
steep-1.7.0 lib/steep/ast/types/literal.rb
steep-1.7.0.dev.3 lib/steep/ast/types/literal.rb
steep-1.7.0.dev.2 lib/steep/ast/types/literal.rb
steep-1.7.0.dev.1 lib/steep/ast/types/literal.rb
steep-1.6.0 lib/steep/ast/types/literal.rb
steep-1.6.0.pre.4 lib/steep/ast/types/literal.rb
steep-1.6.0.pre.3 lib/steep/ast/types/literal.rb
steep-1.6.0.pre.2 lib/steep/ast/types/literal.rb
steep-1.6.0.pre.1 lib/steep/ast/types/literal.rb
steep-1.5.3 lib/steep/ast/types/literal.rb
steep-1.5.2 lib/steep/ast/types/literal.rb
steep-1.5.1 lib/steep/ast/types/literal.rb
steep-1.5.0 lib/steep/ast/types/literal.rb
steep-1.5.0.pre.6 lib/steep/ast/types/literal.rb
steep-1.5.0.pre.5 lib/steep/ast/types/literal.rb
steep-1.5.0.pre.4 lib/steep/ast/types/literal.rb
steep-1.5.0.pre.3 lib/steep/ast/types/literal.rb