Esempio n. 1
0
/*
	Parameter Comment AST node of any kind.

	Returns number of children of the AST node.
*/
func (c Comment) NumChildren() uint32 {
	return uint32(C.clang_Comment_getNumChildren(c.c))
}
Esempio n. 2
0
/**
 * \param Comment AST node of any kind.
 *
 * \returns number of children of the AST node.
 */
func (c Comment) NumChildren() int {
	return int(C.clang_Comment_getNumChildren(c.c))
}