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

Unified Diff: pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart

Issue 1136843006: dart2js cps: Access to lazily initialized fields. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 5 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
« no previous file with comments | « pkg/analyzer2dart/test/sexpr_data.dart ('k') | pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart
index 18c323eef24d3e045060bc3848e792cca0a8051a..d804f448911c40d868fd12137f4d539873529d52 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart
@@ -909,6 +909,12 @@ abstract class IrBuilder {
state.localConstants, defaults);
}
+ ir.FunctionDefinition makeLazyFieldInitializer() {
+ ir.Body body = makeBody();
+ FieldElement element = state.currentElement;
+ return new ir.FunctionDefinition(element, null, [], body, [], []);
+ }
+
/// Create a invocation of the [method] on the super class where the call
/// structure is defined [callStructure] and the argument values are defined
/// by [arguments].
@@ -1084,10 +1090,18 @@ abstract class IrBuilder {
/// Create a read access of the static [field].
ir.Primitive buildStaticFieldGet(FieldElement field,
- {SourceInformation sourceInformation}) {
+ SourceInformation sourceInformation) {
return addPrimitive(new ir.GetStatic(field, sourceInformation));
}
+ /// Create a read access of a static [field] that might not have been
+ /// initialized yet.
+ ir.Primitive buildStaticFieldLazyGet(FieldElement field,
+ SourceInformation sourceInformation) {
+ return _continueWithExpression(
+ (k) => new ir.GetLazyStatic(field, k, sourceInformation));
+ }
+
/// Create a getter invocation of the static [getter].
ir.Primitive buildStaticGetterGet(MethodElement getter,
{SourceInformation sourceInformation}) {
@@ -1106,7 +1120,7 @@ abstract class IrBuilder {
/// Create a write access to the static [field] with the [value].
ir.Primitive buildStaticFieldSet(FieldElement field,
ir.Primitive value,
- {SourceInformation sourceInformation}) {
+ [SourceInformation sourceInformation]) {
add(new ir.SetStatic(field, value, sourceInformation));
return value;
}
« no previous file with comments | « pkg/analyzer2dart/test/sexpr_data.dart ('k') | pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698