| Index: compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/LibraryNode.java b/compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| index 31407d8ce67018ba03e2a1ffa9b4cd6a7e042e3b..5a98e6682828c21988190a7f2792c2690e757020 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| @@ -33,6 +33,7 @@ public class LibraryNode extends AbstractNode {
|
| }
|
|
|
| public LibraryNode(DartImportDirective importDirective) {
|
| + setSourceInfo(importDirective.getSourceInfo());
|
| this.text = importDirective.getLibraryUri().getValue();
|
| this.prefix = importDirective.getPrefixValue();
|
| this.combinators = importDirective.getCombinators();
|
| @@ -40,12 +41,13 @@ public class LibraryNode extends AbstractNode {
|
| }
|
|
|
| public LibraryNode(DartExportDirective exportDirective) {
|
| + setSourceInfo(exportDirective.getSourceInfo());
|
| this.text = exportDirective.getLibraryUri().getValue();
|
| this.prefix = null;
|
| this.combinators = exportDirective.getCombinators();
|
| this.exported = false;
|
| }
|
| -
|
| +
|
| public String getText() {
|
| return text;
|
| }
|
|
|