| Index: editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/CompileTimeErrorCodeTest.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/CompileTimeErrorCodeTest.java b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/CompileTimeErrorCodeTest.java
|
| index 69ee67e22cf27437ea0c2cb248f414fe73c2acd1..73972a81136b7cd3a563c3122a3889a75770a27e 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/CompileTimeErrorCodeTest.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine_test/src/com/google/dart/engine/resolver/CompileTimeErrorCodeTest.java
|
| @@ -1,11 +1,11 @@
|
| /*
|
| * Copyright (c) 2013, the Dart project authors.
|
| - *
|
| + *
|
| * Licensed under the Eclipse Public License v1.0 (the "License"); you may not use this file except
|
| * in compliance with the License. You may obtain a copy of the License at
|
| - *
|
| + *
|
| * http://www.eclipse.org/legal/epl-v10.html
|
| - *
|
| + *
|
| * Unless required by applicable law or agreed to in writing, software distributed under the License
|
| * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
| * or implied. See the License for the specific language governing permissions and limitations under
|
| @@ -1591,7 +1591,7 @@ public class CompileTimeErrorCodeTest extends ResolverTestCase {
|
|
|
| public void test_importInternalLibrary_collection() throws Exception {
|
| Source source = addSource(createSource(//
|
| - "import 'dart:_collection-dev';"));
|
| + "import 'dart:_internal';"));
|
| resolve(source);
|
| // Note, in these error cases we may generate an UNUSED_IMPORT hint, while we could prevent
|
| // the hint from being generated by testing the import directive for the error, this is such a
|
| @@ -3399,7 +3399,7 @@ public class CompileTimeErrorCodeTest extends ResolverTestCase {
|
| }
|
|
|
| public void test_typeAliasCannotReferenceItself_typeVariableBounds() throws Exception {
|
| - Source source = addSource(createSource(//
|
| + Source source = addSource(createSource(//
|
| "typedef A<T extends A>();"));
|
| resolve(source);
|
| assertErrors(source, CompileTimeErrorCode.TYPE_ALIAS_CANNOT_REFERENCE_ITSELF);
|
|
|