handle subroutines properly when generating frame maps (initial sketch)

This commit is contained in:
Joel Dice
2009-06-26 15:36:04 -06:00
parent f239424930
commit b308354a3a
5 changed files with 557 additions and 177 deletions

View File

@ -63,9 +63,9 @@ public class Subroutine {
test(false, true);
test(true, false);
test2(1);
test2(2);
test2(3);
String.valueOf(test2(1));
String.valueOf(test2(2));
String.valueOf(test2(3));
}
private static class DummyException extends RuntimeException { }