spring-framework / org.springframework.asm / ClassWriter / COMPUTE_FRAMES

COMPUTE_FRAMES

static val COMPUTE_FRAMES: Int

Flag to automatically compute the stack map frames of methods from scratch. If this flag is set, then the calls to the MethodVisitor#visitFrame method are ignored, and the stack map frames are recomputed from the methods bytecode. The arguments of the visitMaxs method are also ignored and recomputed from the bytecode. In other words, COMPUTE_FRAMES implies COMPUTE_MAXS.

See Also
#ClassWriter(int)