class Google::Logging::SourceLocation

def == other

Other tags:
    Private: -
def == other
  return false unless other.is_a? SourceLocation
  file == other.file && line == other.line && function == other.function
end