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

Unified Diff: pkg/compiler/lib/src/dart_backend/backend.dart

Issue 2023863002: Register deserialized lazy statics. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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/compiler/lib/src/dart_backend/backend.dart
diff --git a/pkg/compiler/lib/src/dart_backend/backend.dart b/pkg/compiler/lib/src/dart_backend/backend.dart
index 9a1162eb257301d8e1379514d82ad7436f5c3eea..371eed6001e1c5f8d508349f0a2ccc11127399f9 100644
--- a/pkg/compiler/lib/src/dart_backend/backend.dart
+++ b/pkg/compiler/lib/src/dart_backend/backend.dart
@@ -540,4 +540,9 @@ class DartConstantTask extends ConstantCompilerTask
constantCompiler.constantValueMap
.addAll(task.constantCompiler.constantValueMap);
}
+
+ @override
+ void registerLazyStatic(FieldElement element) {
+ // Do nothing.
+ }
}

Powered by Google App Engine
This is Rietveld 408576698