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

Unified Diff: pkg/compiler/lib/src/ssa/builder.dart

Issue 1305443004: Handle static assignment to final/const fields in SSA. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/ssa/builder.dart
diff --git a/pkg/compiler/lib/src/ssa/builder.dart b/pkg/compiler/lib/src/ssa/builder.dart
index 8f5561b68f8a4fb6300aedc8d47c511b52ff2c9d..9fadfe2823bcc8cbf3b821cb4a5d87071f6e2552 100644
--- a/pkg/compiler/lib/src/ssa/builder.dart
+++ b/pkg/compiler/lib/src/ssa/builder.dart
@@ -6458,7 +6458,7 @@ class SsaBuilder extends ast.Visitor
ast.Node rhs,
_) {
generateIsDeferredLoadedCheckOfSend(node);
- generateNonInstanceSetter(node, field, visitAndPop(rhs));
+ generateNoSuchSetter(node, field, visitAndPop(rhs));
}
@override
@@ -6508,7 +6508,7 @@ class SsaBuilder extends ast.Visitor
ast.Node rhs,
_) {
generateIsDeferredLoadedCheckOfSend(node);
- generateNonInstanceSetter(node, field, visitAndPop(rhs));
+ generateNoSuchSetter(node, field, visitAndPop(rhs));
}
@override
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698