| Index: compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| index 39e7554b798000c8927aeb700efbc54b1b29ec44..ad7879d2a501437b4319a7167c9fe1794fa55105 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/end2end/inc/IncrementalCompilation2Test.java
|
| @@ -606,8 +606,6 @@ public class IncrementalCompilation2Test extends CompilerTestCase {
|
| "library application;",
|
| "import 'A.dart' as p;",
|
| "import 'B.dart' as p;",
|
| -// "import 'A.dart';",
|
| -// "import 'B.dart';",
|
| ""));
|
| appSource.setContent(
|
| "A.dart",
|
| @@ -627,8 +625,7 @@ public class IncrementalCompilation2Test extends CompilerTestCase {
|
| compile();
|
| assertErrors(
|
| errors,
|
| - errEx("A.dart", ResolverErrorCode.DUPLICATE_TOP_LEVEL_DECLARATION, 3, 5, 7),
|
| - errEx("B.dart", ResolverErrorCode.DUPLICATE_TOP_LEVEL_DECLARATION, 3, 5, 7));
|
| + errEx(APP, ResolverErrorCode.DUPLICATE_TOP_LEVEL_DECLARATION_IMPORT, 1, 1, 0));
|
| }
|
|
|
| public void test_reportMissingSource() throws Exception {
|
|
|