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