Package proguard.dexfile.reader.node
Class DexDebugNode
- java.lang.Object
-
- proguard.dexfile.reader.visitors.DexDebugVisitor
-
- proguard.dexfile.reader.node.DexDebugNode
-
public class DexDebugNode extends DexDebugVisitor
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDexDebugNode.DexDebugOpNode
-
Field Summary
Fields Modifier and Type Field Description java.util.List<DexDebugNode.DexDebugOpNode>debugNodesjava.lang.StringfineNamejava.util.List<java.lang.String>parameterNames-
Fields inherited from class proguard.dexfile.reader.visitors.DexDebugVisitor
visitor
-
-
Constructor Summary
Constructors Constructor Description DexDebugNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(DexDebugVisitor v)protected voidaddDebug(DexDebugNode.DexDebugOpNode dexDebugNode)voidvisitEndLocal(int reg, DexLabel label)voidvisitEpiogue(DexLabel dexLabel)voidvisitLineNumber(int line, DexLabel label)voidvisitParameterName(int parameterIndex, java.lang.String name)voidvisitPrologue(DexLabel dexLabel)voidvisitRestartLocal(int reg, DexLabel label)voidvisitSetFile(java.lang.String file)voidvisitStartLocal(int reg, DexLabel label, java.lang.String name, java.lang.String type, java.lang.String signature)-
Methods inherited from class proguard.dexfile.reader.visitors.DexDebugVisitor
visitEnd
-
-
-
-
Field Detail
-
debugNodes
public java.util.List<DexDebugNode.DexDebugOpNode> debugNodes
-
parameterNames
public java.util.List<java.lang.String> parameterNames
-
fineName
public java.lang.String fineName
-
-
Method Detail
-
addDebug
protected void addDebug(DexDebugNode.DexDebugOpNode dexDebugNode)
-
visitSetFile
public void visitSetFile(java.lang.String file)
- Overrides:
visitSetFilein classDexDebugVisitor
-
visitRestartLocal
public void visitRestartLocal(int reg, DexLabel label)- Overrides:
visitRestartLocalin classDexDebugVisitor
-
visitParameterName
public void visitParameterName(int parameterIndex, java.lang.String name)- Overrides:
visitParameterNamein classDexDebugVisitor- Parameters:
parameterIndex- start with the first index of DexMethod.getParameterTypes(), no 'this'
-
visitLineNumber
public void visitLineNumber(int line, DexLabel label)- Overrides:
visitLineNumberin classDexDebugVisitor
-
visitStartLocal
public void visitStartLocal(int reg, DexLabel label, java.lang.String name, java.lang.String type, java.lang.String signature)- Overrides:
visitStartLocalin classDexDebugVisitor
-
visitEndLocal
public void visitEndLocal(int reg, DexLabel label)- Overrides:
visitEndLocalin classDexDebugVisitor
-
accept
public void accept(DexDebugVisitor v)
-
visitPrologue
public void visitPrologue(DexLabel dexLabel)
- Overrides:
visitProloguein classDexDebugVisitor
-
visitEpiogue
public void visitEpiogue(DexLabel dexLabel)
- Overrides:
visitEpioguein classDexDebugVisitor
-
-