notes and test case
authorbdemsky <bdemsky>
Tue, 4 Apr 2006 22:15:43 +0000 (22:15 +0000)
committerbdemsky <bdemsky>
Tue, 4 Apr 2006 22:15:43 +0000 (22:15 +0000)
Robust/src/dispatchtable.txt [new file with mode: 0644]
Robust/src/f.test [new file with mode: 0644]

diff --git a/Robust/src/dispatchtable.txt b/Robust/src/dispatchtable.txt
new file mode 100644 (file)
index 0000000..7f936f3
--- /dev/null
@@ -0,0 +1,4 @@
+Idea:
+Start at root of hierarchy
+Assign each method an integer value unless it already has an assigned value
+
diff --git a/Robust/src/f.test b/Robust/src/f.test
new file mode 100644 (file)
index 0000000..307d2e8
--- /dev/null
@@ -0,0 +1,14 @@
+public class Test {
+
+    public static int main() {
+       int j=0;
+       for(int i=0;i<10;i++) {
+               j+=i;
+               bar(j);
+       }
+       return 0;
+    }
+
+    public static int bar(int x) {
+    }
+}