Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1000)

Unified Diff: pkg/kernel/lib/ast.dart

Issue 3008763002: Store actual Reference(s) for additional exports. (Closed)
Patch Set: Fixes for review comments. Created 3 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/kernel/binary.md ('k') | pkg/kernel/lib/binary/ast_from_binary.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/lib/ast.dart
diff --git a/pkg/kernel/lib/ast.dart b/pkg/kernel/lib/ast.dart
index d404cc92cbdb2feba735b4c4fd99f50d8c1396f5..0aa3644a27209f55e9f91e2fd6fe5acd38ac5cb1 100644
--- a/pkg/kernel/lib/ast.dart
+++ b/pkg/kernel/lib/ast.dart
@@ -269,6 +269,12 @@ class Library extends NamedNode implements Comparable<Library> {
String name;
final List<Expression> annotations;
final List<LibraryDependency> dependencies;
+
+ /// References to nodes exported by `export` declarations that:
+ /// - aren't ambiguous, or
+ /// - aren't hidden by local declarations.
+ final List<Reference> additionalExports = <Reference>[];
+
@informative
final List<LibraryPart> parts;
final List<Typedef> typedefs;
« no previous file with comments | « pkg/kernel/binary.md ('k') | pkg/kernel/lib/binary/ast_from_binary.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698