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

Unified Diff: sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart

Issue 614993002: Rename Constant to ConstantValue and ConstExp to ConstantExpression. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments. Created 6 years, 3 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: sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart b/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
index c92fd60967a70994d0e214bbaa79933d28310897..abc6c8658399fa7253d83202f82b0d3e298e106e 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
@@ -120,7 +120,7 @@ class SsaInstructionSelection extends HBaseVisitor {
// TODO(15933): Make automatically generated property extraction
// closures work with the dummy receiver optimization.
if (!selector.isGetter) {
- Constant constant = new DummyConstant(
+ ConstantValue constant = new DummyConstantValue(
receiverArgument.instructionType);
HConstant dummy = graph.addConstant(constant, compiler);
receiverArgument.usedBy.remove(node);

Powered by Google App Engine
This is Rietveld 408576698