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

Unified Diff: pkg/analyzer/lib/src/summary/resynthesize.dart

Issue 1577413002: Patch together getters/setters in different parts. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 11 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
Index: pkg/analyzer/lib/src/summary/resynthesize.dart
diff --git a/pkg/analyzer/lib/src/summary/resynthesize.dart b/pkg/analyzer/lib/src/summary/resynthesize.dart
index 23b103cb3f4d6c44f4390ee411e1e9892b8566e2..7f2a7878f7ab59f90f0a4d798afb07631ca9d94a 100644
--- a/pkg/analyzer/lib/src/summary/resynthesize.dart
+++ b/pkg/analyzer/lib/src/summary/resynthesize.dart
@@ -695,6 +695,8 @@ class _LibraryResynthesizer {
for (int i = 0; i < parts.length; i++) {
populateUnit(parts[i], i + 1);
}
+ BuildLibraryElementUtils.patchTopLevelAccessors(libraryElement);
+ // Update delayed Object class references.
if (isCoreLibrary) {
ClassElement objectElement = libraryElement.getType('Object');
assert(objectElement != null);

Powered by Google App Engine
This is Rietveld 408576698