dataflow to/from containers support

This commit is contained in:
Alexey Kudravtsev
2013-10-22 12:33:55 +04:00
parent 999a2e8e52
commit 6bcad287da
50 changed files with 1303 additions and 301 deletions
@@ -3,7 +3,7 @@ public class OverrideSlice {
int f(int i);
}
class O implements I {
public int f(int i) {
public int f(int <flown111>i) {
return <flown11>i;
}
}
@@ -14,9 +14,9 @@ public class OverrideSlice {
}
{
f(<flown1111>1, new O());
f(<flown111111>1, new O());
}
void f(int c, I i) {
int <caret>x = <flown1>i.f(<flown111>c);
void f(int <flown11111>c, I i) {
int <caret>x = <flown1>i.f(<flown1111>c);
}
}