| Index: dart/tests/try/web/incremental_compilation_update_test.dart
|
| diff --git a/dart/tests/try/web/incremental_compilation_update_test.dart b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| index d8fea21da3ffe3407a75f7fb2e87c187cb0e5fe2..1534b141f65903accccf8fee9c759e0d56c046ae 100644
|
| --- a/dart/tests/try/web/incremental_compilation_update_test.dart
|
| +++ b/dart/tests/try/web/incremental_compilation_update_test.dart
|
| @@ -866,6 +866,8 @@ main() {
|
| const <ProgramResult>[
|
| const ProgramResult(
|
| r"""
|
| +import 'dart:collection';
|
| +
|
| class C {
|
| static m() {
|
| print('v1');
|
| @@ -873,13 +875,8 @@ class C {
|
| }
|
|
|
| main() {
|
| - try {
|
| - // TODO(ahe): Incremental compiler can't handle new noSuchMethod
|
| - // situations, crashes when compiling a constructor which uses type
|
| - // arguments.
|
| - C.missing();
|
| - } catch (e) {
|
| - }
|
| + // TODO(ahe): The incremental compiler magter ikke static tear-off closures.
|
| + new HashMap(equals: identical);
|
| try {
|
| C.m();
|
| } catch (e) {
|
|
|