summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorStiver <stiver.mail@gmail.com>2014-05-29 18:13:17 +0200
committerStiver <stiver.mail@gmail.com>2014-05-29 18:13:17 +0200
commitc286d42c5b04d4036b144bff10dbafc183d45084 (patch)
tree23fa7fe36b32cc45c6e15a361fbd11d013e2c58f /test
parent1119499562bd94e2601d301a0126dc02f3d5d472 (diff)
downloadfernflower-c286d42c5b04d4036b144bff10dbafc183d45084.tar
fernflower-c286d42c5b04d4036b144bff10dbafc183d45084.tar.gz
fernflower-c286d42c5b04d4036b144bff10dbafc183d45084.tar.lz
fernflower-c286d42c5b04d4036b144bff10dbafc183d45084.tar.xz
fernflower-c286d42c5b04d4036b144bff10dbafc183d45084.zip
- fixed the IndexOutOfBoundsException exception when decompiling
FastStringBuffer - fixed typo in LITERALS_AS_IS definition - some helper stuff
Diffstat (limited to 'test')
-rw-r--r--test/test/util/DotExporter.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test/util/DotExporter.java b/test/test/util/DotExporter.java
index 88b9320..61ee5eb 100644
--- a/test/test/util/DotExporter.java
+++ b/test/test/util/DotExporter.java
@@ -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;
}