| Index: compiler/java/com/google/dart/compiler/DartCompiler.java
|
| diff --git a/compiler/java/com/google/dart/compiler/DartCompiler.java b/compiler/java/com/google/dart/compiler/DartCompiler.java
|
| index 777f6773731fd3625af5c059f0809c5dd91fde3d..1d0eb2852d10b0bc68bdac262869ef47d33dd6c3 100644
|
| --- a/compiler/java/com/google/dart/compiler/DartCompiler.java
|
| +++ b/compiler/java/com/google/dart/compiler/DartCompiler.java
|
| @@ -727,7 +727,7 @@ public class DartCompiler {
|
| // TODO(scheglov) Remove after http://code.google.com/p/dart/issues/detail?id=6121
|
| if (!StringUtils.startsWith(lib.getName(), "dart:")) {
|
| context.onError(new DartCompilationError(unitSource,
|
| - DartCompilerErrorCode.MISSING_PART_OF_DIRECTIVE));
|
| + DartCompilerErrorCode.MISSING_PART_OF_DIRECTIVE, lib.getName()));
|
| }
|
| } else if (directives.size() == 1 && directives.get(0) instanceof DartPartOfDirective) {
|
| DartPartOfDirective directive = (DartPartOfDirective) directives.get(0);
|
|
|