Sha256: 79379fd7c43227f6d2165033799913fbdad0973949cd34cc792e3cb79d721a17

Contents?: true

Size: 623 Bytes

Versions: 13

Compression:

Stored size: 623 Bytes

Contents

module Steep
  module AST
    module Types
      class Bot
        attr_reader :location

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

        def ==(other)
          other.is_a?(Bot)
        end

        def hash
          self.class.hash
        end

        alias eql? ==

        def subst(s)
          self
        end

        def to_s
          "bot"
        end

        include Helper::NoFreeVariables

        def level
          [2]
        end

        def with_location(new_location)
          self.class.new(location: new_location)
        end
      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
steep-0.48.0 lib/steep/ast/types/bot.rb
steep-0.47.1 lib/steep/ast/types/bot.rb
steep-0.47.0 lib/steep/ast/types/bot.rb
steep-0.46.0 lib/steep/ast/types/bot.rb
steep-0.45.0 lib/steep/ast/types/bot.rb
steep-0.44.1 lib/steep/ast/types/bot.rb
steep-0.44.0 lib/steep/ast/types/bot.rb
steep-0.43.1 lib/steep/ast/types/bot.rb
steep-0.43.0 lib/steep/ast/types/bot.rb
steep-0.42.0 lib/steep/ast/types/bot.rb
steep-0.41.0 lib/steep/ast/types/bot.rb
steep-0.40.0 lib/steep/ast/types/bot.rb
steep-0.39.0 lib/steep/ast/types/bot.rb