Skip to main content
Module

x/libclang/mod.ts>CXChildVisitResult

Deno FFI bindings for libclang
Go to Latest
enum CXChildVisitResult
Re-export
import { CXChildVisitResult } from "https://deno.land/x/libclang@1.0.0-beta.8/mod.ts";

Describes how the traversal of the children of a particular cursor should proceed after visiting a particular child cursor.

A value of this enumeration type should be returned by each CXCursorVisitor to indicate how clang_visitChildren() proceed.

Members

CXChildVisit_Break

Terminates the cursor traversal.

CXChildVisit_Continue

Continues the cursor traversal with the next sibling of the cursor just visited, without visiting its children.

CXChildVisit_Recurse

Recursively traverse the children of this cursor, using the same visitor and client data.