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

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

Issue 266913017: Convert property methods into getters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 6 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: 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 2caf6410e93999ea6cf039426b1dda21cbc461fa..6821a92c2cde859b804f2c7c572692301a6b241c 100644
--- a/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
+++ b/sdk/lib/_internal/compiler/implementation/ssa/codegen_helpers.dart
@@ -123,7 +123,7 @@ class SsaInstructionSelection extends HBaseVisitor {
if (interceptor == receiverArgument) {
// TODO(15933): Make automatically generated property extraction
// closures work with the dummy receiver optimization.
- if (!selector.isGetter()) {
+ if (!selector.isGetter) {
Constant constant = new DummyConstant(
receiverArgument.instructionType);
HConstant dummy = graph.addConstant(constant, compiler);

Powered by Google App Engine
This is Rietveld 408576698