Package proguard.dexfile.ir.ts
Class MultiArrayTransformer
- java.lang.Object
-
- proguard.dexfile.ir.ts.StatedTransformer
-
- proguard.dexfile.ir.ts.MultiArrayTransformer
-
- All Implemented Interfaces:
Transformer
public class MultiArrayTransformer extends StatedTransformer
dex does have the instruction to create a multi-array. the implement is to using the Array.newInstance(). transform((String[][][])Array.newInstance(String.class,new int[]{4, 5, 6}))
tonew String[4][5][6]
-
-
Constructor Summary
Constructors Constructor Description MultiArrayTransformer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
transformReportChanged(IrMethod method)
-
Methods inherited from class proguard.dexfile.ir.ts.StatedTransformer
transform
-
-
-
-
Method Detail
-
transformReportChanged
public boolean transformReportChanged(IrMethod method)
- Specified by:
transformReportChanged
in classStatedTransformer
-
-