in src/main/kotlin/jsitter/impl/SubtreeAccess.kt [53:62]
fun childCount(subtree: Ptr): Int {
if (subtree == 0L) {
throw NullPointerException()
}
if (isInline(subtree)) {
return 0
} else {
return unsafe.getInt(subtree + child_count)
}
}