| Index: compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| index 2bd491fbdbb2345b17354b356ccfb61b4558c927..d4fa68217ed17210ecf423bbef2fddf304f4c3c8 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/LibraryUnit.java
|
| @@ -124,7 +124,7 @@ public class LibraryUnit {
|
| public void addExport(LibraryUnit unit, LibraryNode node) {
|
| if (unit != null) {
|
| if (node != null) {
|
| - exports.add(new LibraryExport(unit, node.getCombinators()));
|
| + exports.add(new LibraryExport(node.getSourceInfo(), unit, node.getCombinators()));
|
| }
|
| }
|
| }
|
|
|