| 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 3e2fd672766408530114fd9f10f503a33a7b2601..31407d8ce67018ba03e2a1ffa9b4cd6a7e042e3b 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/LibraryNode.java
|
| @@ -39,6 +39,13 @@ public class LibraryNode extends AbstractNode {
|
| this.exported = importDirective.isExported();
|
| }
|
|
|
| + public LibraryNode(DartExportDirective exportDirective) {
|
| + this.text = exportDirective.getLibraryUri().getValue();
|
| + this.prefix = null;
|
| + this.combinators = exportDirective.getCombinators();
|
| + this.exported = false;
|
| + }
|
| +
|
| public String getText() {
|
| return text;
|
| }
|
|
|