- fixed the IndexOutOfBoundsException exception when decompiling

FastStringBuffer   
- fixed typo in LITERALS_AS_IS definition
- some helper stuff
This commit is contained in:
Stiver
2014-05-29 18:13:17 +02:00
parent 1119499562
commit c286d42c5b
7 changed files with 50 additions and 15 deletions

View File

@@ -150,6 +150,10 @@ public class DotExporter {
private static String directBlockIdToDot(String id) {
id = id.replaceAll("_try", "999");
id = id.replaceAll("_tail", "888");
id = id.replaceAll("_init", "111");
id = id.replaceAll("_cond", "222");
id = id.replaceAll("_inc", "333");
return id;
}