com.zving.framework.thirdparty.asm.Edge Maven / Gradle / Ivy
package com.zving.framework.thirdparty.asm;
class Edge
{
int info;
static final int NORMAL = 0;
static final int EXCEPTION = Integer.MAX_VALUE;
Label successor;
Edge next;
}