| Index: tests/compiler/dart2js/dictionary_types_test.dart
|
| diff --git a/tests/compiler/dart2js/dictionary_types_test.dart b/tests/compiler/dart2js/dictionary_types_test.dart
|
| index b95942a3bac12a550182eb3e108c7117b03b21e9..feaa69319586b7a9e046c5b1cc179579b9969719 100644
|
| --- a/tests/compiler/dart2js/dictionary_types_test.dart
|
| +++ b/tests/compiler/dart2js/dictionary_types_test.dart
|
| @@ -95,7 +95,7 @@ var SOURCES = const {
|
|
|
| main () {
|
| dict['goo'] = 42;
|
| - var closure = dictfun() => dict;
|
| + var closure = () => dict;
|
| notInt = closure()['boo'];
|
| alsoNotInt = dict['goo'];
|
| print("\$notInt and \$alsoNotInt.");
|
| @@ -115,7 +115,7 @@ void main() {
|
| Expect.isTrue(getType('aString').containsOnlyString(compiler));
|
| Expect.equals(getType('doubleOrNull'), types.doubleType.nullable());
|
| }));
|
| - asyncTest(() =>
|
| + asyncTest(() =>
|
| compileAndTest("ValueType.dart", (types, getType, compiler) {
|
| Expect.equals(getType('knownDouble'), types.doubleType);
|
| Expect.equals(getType('intOrNull'), types.uint31Type.nullable());
|
|
|