| Index: tests/language/bailout5_test.dart
|
| ===================================================================
|
| --- tests/language/bailout5_test.dart (revision 17828)
|
| +++ tests/language/bailout5_test.dart (working copy)
|
| @@ -10,7 +10,7 @@
|
| var array;
|
|
|
| initArray() {
|
| - return global[0] == null ? [null] : {};
|
| + return global[0] == null ? [null] : new Map();
|
| }
|
|
|
| bar() {
|
| @@ -41,7 +41,7 @@
|
| Expect.equals(1, new A().baz());
|
| Expect.equals(1, new A().bar());
|
| }
|
| - global = {};
|
| + global = new Map();
|
| for (int i = 0; i < 2; i++) {
|
| Expect.equals(null, new A().baz());
|
| Expect.equals(null, new A().bar());
|
|
|