OLD | NEW |
1 // Messages from compiling opassign.dart | 1 // Messages from compiling opassign.dart |
| 2 info: line 21, column 3 of test/codegen/opassign.dart: [DynamicInvoke] ++f[index
] requires dynamic invoke |
| 3 ++f[index]; |
| 4 ^^^^^^^^^^ |
| 5 info: line 22, column 16 of test/codegen/opassign.dart: [DynamicInvoke] f[index]
++ requires dynamic invoke |
| 6 forcePostfix(f[index]++); |
| 7 ^^^^^^^^^^ |
| 8 info: line 25, column 3 of test/codegen/opassign.dart: [DynamicInvoke] ++foo.x r
equires dynamic invoke |
| 9 ++foo.x; |
| 10 ^^^^^^^ |
2 info: line 25, column 5 of test/codegen/opassign.dart: [DynamicInvoke] foo.x req
uires dynamic invoke | 11 info: line 25, column 5 of test/codegen/opassign.dart: [DynamicInvoke] foo.x req
uires dynamic invoke |
3 ++foo.x; | 12 ++foo.x; |
4 ^^^^^ | 13 ^^^^^ |
| 14 info: line 26, column 16 of test/codegen/opassign.dart: [DynamicInvoke] foo.x++
requires dynamic invoke |
| 15 forcePostfix(foo.x++); |
| 16 ^^^^^^^ |
5 info: line 26, column 16 of test/codegen/opassign.dart: [DynamicInvoke] foo.x re
quires dynamic invoke | 17 info: line 26, column 16 of test/codegen/opassign.dart: [DynamicInvoke] foo.x re
quires dynamic invoke |
6 forcePostfix(foo.x++); | 18 forcePostfix(foo.x++); |
7 ^^^^^ | 19 ^^^^^ |
8 info: line 29, column 3 of test/codegen/opassign.dart: [DynamicInvoke] f[index]
+= f[index] requires dynamic invoke | 20 info: line 29, column 3 of test/codegen/opassign.dart: [DynamicInvoke] f[index]
+= f[index] requires dynamic invoke |
9 f[index] += f[index]; | 21 f[index] += f[index]; |
10 ^^^^^^^^^^^^^^^^^^^^ | 22 ^^^^^^^^^^^^^^^^^^^^ |
OLD | NEW |