类 SourceValue
java.lang.Object
org.beetl.ow2.asm.tree.analysis.SourceValue
- 所有已实现的接口:
Value
A
Value that is represented by its type in a two types type system.
This type system distinguishes the ONEWORD and TWOWORDS types.- 作者:
- Eric Bruneton
-
字段概要
字段修饰符和类型字段说明final Set<AbstractInsnNode>The instructions that can produce this value.final intThe size of this value. -
构造器概要
构造器构造器说明SourceValue(int size) SourceValue(int size, Set<AbstractInsnNode> insns) SourceValue(int size, AbstractInsnNode insn) -
方法概要
-
字段详细资料
-
size
public final int sizeThe size of this value. -
insns
The instructions that can produce this value. For example, for the Java code below, the instructions that can produce the value of i at line 5 are the txo ISTORE instructions at line 1 and 3:1: i = 0; 2: if (...) { 3: i = 1; 4: } 5: return i;This field is a set ofAbstractInsnNodeobjects.
-
-
构造器详细资料
-
SourceValue
public SourceValue(int size) -
SourceValue
-
SourceValue
-
-
方法详细资料