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
@@ -0,0 +1,23 @@
class AnonArray {
void x() {
final int[] params = <flown11>{<flown111>-1};
calcIt(new Runnable() {
public void run() {
params[0] = <flown12>z(<flown12111>2);
}
});
y(<flown1>params[0]);
}
void y(int <caret>arg) {
}
void calcIt(Runnable r) {
r.run();
}
int z(int <flown1211>arg) {
return <flown121>arg;
}
}