class Solargraph::Pin::Reference

def == other

def == other
  return false unless self.class == other.class
  location == other.location and
    namespace = other.namespace and
    name == other.name
end

def filename

Returns:
  • (String) -
def filename
  location.filename
end

def initialize location, namespace, name

Parameters:
  • name (String) --
  • namespace (String) --
  • location (Source::Location) --
def initialize location, namespace, name
  @location = location
  @namespace = namespace
  @name = name
end