module Solargraph::YardMap::Helpers
Public Instance Methods
object_location(code_object, spec)
click to toggle source
@param code_object [YARD::CodeObjects::Base] @param spec [Gem::Specification] @return [Solargraph::Location, nil]
# File lib/solargraph/yard_map/helpers.rb, line 9 def object_location code_object, spec return nil if spec.nil? || code_object.nil? || code_object.file.nil? || code_object.line.nil? file = File.join(spec.full_gem_path, code_object.file) Solargraph::Location.new(file, Solargraph::Range.from_to(code_object.line - 1, 0, code_object.line - 1, 0)) end