class Solargraph::Location

def contain? location

Parameters:
  • location (self) --
def contain? location
  range.contain?(location.range.start) && range.contain?(location.range.ending) && filename == location.filename
end