List of usage examples for org.objectweb.asm.tree.analysis Frame toString
@Override
public String toString()
From source file:cl.inria.stiq.instrumenter.BCIUtils.java
License:Open Source License
private static String frameString(Frame aFrame) { if (aFrame == null) return "null"; String s = aFrame.toString(); s = s.replace("Ltod/core/database/structure/ObjectId;", "o"); s = s.replace("Ltod/impl/replay2/ThreadReplayer;", "r"); s = s.replace("Ltod/impl/replay2/TmpObjectId;", "t"); s = s.replace("Lnull;", "L"); s = s.replace("Ltod/impl/replay2/HandlerReachedException;", "h"); s = s.replace("Ltod/impl/replay2/EventCollector;", "c"); s = s.replace("Ltod/impl/replay2/LocalsSnapshot;", "s"); s = s.replace("Ljava/lang/Throwable;", "T"); return s;/*from w w w. ja v a2 s . co m*/ }