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

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

Issue 172853007: Rename DummyRecieverConstant to DummyConstant (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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/interceptor_simplifier.dart
diff --git a/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart b/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
index 441d653c6f1a9dfa57a26fe2f41a0632ea72cbfd..f2ae1a506763c0fe8b6bb84a2f9a6b61854d3aa7 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart
@@ -288,7 +288,7 @@ class SsaSimplifyInterceptors extends HBaseVisitor
// TODO(15933): Make automatically generated property extraction
// closures work with the dummy receiver optimization.
if (!invoke.selector.isGetter()) {
- Constant constant = new DummyReceiverConstant(
+ Constant constant = new DummyConstant(
receiverArgument.instructionType);
HConstant dummy = graph.addConstant(constant, compiler);
receiverArgument.usedBy.remove(invoke);

Powered by Google App Engine
This is Rietveld 408576698