/** * \brief Retrieve a source location representing the last character within a * source range. */ func (s SourceRange) End() SourceLocation { o := C.clang_getRangeEnd(s.c) return SourceLocation{o} }
// Retrieve a source location representing the last character within a source range. func (sr SourceRange) End() SourceLocation { return SourceLocation{C.clang_getRangeEnd(sr.c)} }