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