class Yoda::Model::Types::AnyType

Public Instance Methods

change_root(paths) click to toggle source

@param paths [Array<Paths>] @return [self]

# File lib/yoda/model/types/any_type.rb, line 15
def change_root(paths)
  self
end
eql?(another) click to toggle source
# File lib/yoda/model/types/any_type.rb, line 5
def eql?(another)
  another.is_a?(AnyType)
end
hash() click to toggle source
# File lib/yoda/model/types/any_type.rb, line 9
def hash
  [self.class.name].hash
end
resolve(registry) click to toggle source

@param registry [Registry] @return [Array<Store::Objects::Base>]

# File lib/yoda/model/types/any_type.rb, line 21
def resolve(registry)
  []
end
to_s() click to toggle source

@return [String]

# File lib/yoda/model/types/any_type.rb, line 26
def to_s
  'any'
end