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

Unified Diff: pkg/compiler/lib/src/warnings.dart

Issue 1182563003: Handle most qualified sends. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 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/compiler/lib/src/warnings.dart
diff --git a/pkg/compiler/lib/src/warnings.dart b/pkg/compiler/lib/src/warnings.dart
index 8ac9e56e6568bc9fb5e1d52e96d1f4acbc4e2122..7e70ed5ff44d167d0889ab2295dc2921f22b4ba4 100644
--- a/pkg/compiler/lib/src/warnings.dart
+++ b/pkg/compiler/lib/src/warnings.dart
@@ -530,6 +530,9 @@ main() => new C(0);"""]);
static const MessageKind NOT_INSTANCE_FIELD = const MessageKind(
"'#{fieldName}' is not an instance field.");
+ static const MessageKind THIS_PROPERTY = const MessageKind(
+ "Expected an identifier.");
+
static const MessageKind NO_CATCH_NOR_FINALLY = const MessageKind(
"Expected 'catch' or 'finally'.");

Powered by Google App Engine
This is Rietveld 408576698