class Solargraph::Pin::Symbol

def comments

def comments
  ''
end

def completion_item_kind

def completion_item_kind
  Solargraph::LanguageServer::CompletionItemKinds::KEYWORD
end

def deprecated?

def deprecated?
  false
end

def directives

def directives
  []
end

def initialize location, name

Parameters:
  • name (String) --
  • location (Solargraph::Location) --
def initialize location, name
  super(location: location, name: name)
  # @name = name

  # @location = location

end

def namespace

def namespace
  ''
end

def path

def path
  ''
end

def return_type

def return_type
  @return_type ||= Solargraph::ComplexType::SYMBOL
end

def visibility

def visibility
  :public
end