fun subtreeBytesPadding()

in src/main/kotlin/jsitter/impl/SubtreeAccess.kt [98:107]


    fun subtreeBytesPadding(subtree: Ptr): Int {
        if (subtree == 0L) {
            throw NullPointerException()
        }
        if (isInline(subtree)) {
            return subtree.byte(2)
        } else {
            return unsafe.getInt(subtree + padding)
        }
    }