class Solargraph::YardMap::Cache

def get_path_pins path

Returns:
  • (Array) -

Parameters:
  • path (String) --
def get_path_pins path
  @path_pins[path]
end

def initialize

def initialize
  # @type [Hash{String => Array<Solargraph::Pin::Base>}]

  @path_pins = {}
end

def set_path_pins path, pins

Returns:
  • (Array) -

Parameters:
  • pins (Array) --
  • path (String) --
def set_path_pins path, pins
  @path_pins[path] = pins
end