Ejemplo n.º 1
0
/**
 * \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}
}
Ejemplo n.º 2
0
// Retrieve a source location representing the last character within a source range.
func (sr SourceRange) End() SourceLocation {
	return SourceLocation{C.clang_getRangeEnd(sr.c)}
}