コード例 #1
0
ファイル: comment_gen.go プロジェクト: go-clang/v3.7
/*
	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))
}
コード例 #2
0
ファイル: comment.go プロジェクト: zimmski/go-clang
/**
 * \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))
}