Updated ASM library (ASM 5)

This commit is contained in:
Clisprail
2014-01-26 00:15:10 +01:00
parent 677b0d4bd1
commit e8729cf8b0
53 changed files with 2740 additions and 413 deletions
+4 -4
View File
@@ -43,20 +43,20 @@ class Edge {
/**
* Denotes a control flow graph edge corresponding to an exception handler.
* More precisely any {@link org.objectweb.asm.Edge} whose {@link #info} is strictly positive
* More precisely any {@link Edge} whose {@link #info} is strictly positive
* corresponds to an exception handler. The actual value of {@link #info} is
* the index, in the {@link org.objectweb.asm.ClassWriter} type table, of the exception that
* the index, in the {@link ClassWriter} type table, of the exception that
* is catched.
*/
static final int EXCEPTION = 0x7FFFFFFF;
/**
* Information about this control flow graph edge. If
* {@link org.objectweb.asm.ClassWriter#COMPUTE_MAXS} is used this field is the (relative)
* {@link ClassWriter#COMPUTE_MAXS} is used this field is the (relative)
* stack size in the basic block from which this edge originates. This size
* is equal to the stack size at the "jump" instruction to which this edge
* corresponds, relatively to the stack size at the beginning of the
* originating basic block. If {@link org.objectweb.asm.ClassWriter#COMPUTE_FRAMES} is used,
* originating basic block. If {@link ClassWriter#COMPUTE_FRAMES} is used,
* this field is the kind of this control flow graph edge (i.e. NORMAL or
* EXCEPTION).
*/