in src/main/kotlin/jsitter/impl/SubtreeAccess.kt [87:96]
fun subtreeBytesSize(subtree: Ptr): Int {
if (subtree == 0L) {
throw NullPointerException()
}
if (isInline(subtree)) {
return subtree.byte(3)
} else {
return unsafe.getInt(subtree + size)
}
}