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

Unified Diff: pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart

Issue 2920223008: Record method invocation targets that are not procedures. (Closed)
Patch Set: Created 3 years, 6 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: pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart
diff --git a/pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart b/pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart
index f4afd3b607c89444f038ee63315d4da35389c16e..0ce787a158656f99022ba0faba709ceb7bd8206e 100644
--- a/pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart
+++ b/pkg/front_end/lib/src/fasta/kernel/fasta_accessors.dart
@@ -316,7 +316,7 @@ class ThisAccessor extends FastaAccessor {
new KernelThisExpression(),
send.name,
send.arguments,
- offsetForToken(token));
+ offsetForToken(send.token));
ahe 2017/06/06 19:13:59 I saw some messages earlier today that had the wro
return isSuper ? helper.toSuperMethodInvocation(result) : result;
} else {
if (isSuper) {

Powered by Google App Engine
This is Rietveld 408576698