Why does the Kotlin Bytecode plugin show MAXSTACK & MAXLOCALS = -1?

The Kotlin Bytecode plugin shows MAXSTACK = -1 and MAXLOCALS = -1 for all methods. Is it correct?

Most likely, this is because we print bytecode from an intermediate state, where these values are not computed yet.