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

Unified Diff: pkg/front_end/messages.yaml

Issue 2926953004: Various semantic checks on formal parameters. (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
« no previous file with comments | « pkg/front_end/lib/src/fasta/source/stack_listener.dart ('k') | tests/co19/co19-kernel.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/front_end/messages.yaml
diff --git a/pkg/front_end/messages.yaml b/pkg/front_end/messages.yaml
index db1e55d5a56f4de197a4d29081d91f7c534617cb..b2bf08101055dafb0b967263de2a7face84689f3 100644
--- a/pkg/front_end/messages.yaml
+++ b/pkg/front_end/messages.yaml
@@ -406,3 +406,25 @@ AssertExtraneousArgument:
AssertAsExpression:
template: "`assert` can't be used as an expression."
dart2jsCode: FASTA_FATAL
+
+FunctionTypeDefaultValue:
+ template: "Can't have a default value in a function type."
+ dart2jsCode: FASTA_IGNORED
ahe 2017/06/08 20:28:40 This makes dart2js ignore this message. Dart2js al
+
+PrivateNamedParameter:
+ template: "An optional named parameter can't start with '_'."
+ dart2jsCode: FASTA_IGNORED
+
+NoFormals:
+ template: "A function should have formal parameters."
+ tip: "Try adding '()' after '#lexeme', or add 'get' before '#lexeme' to declare a getter."
+ dart2jsCode: FASTA_IGNORED
+
+GetterWithFormals:
+ template: "A getter can't have formal parameters."
+ tip: "Try removing '(...)'."
+ dart2jsCode: FASTA_IGNORED
+
+CatchSyntax:
+ template: "'catch' must be followed by '(identifier)' or '(identifier, identifier)'."
+ tip: "No types are needed, the first is given by 'on', the second is always 'StackTrace'."
« no previous file with comments | « pkg/front_end/lib/src/fasta/source/stack_listener.dart ('k') | tests/co19/co19-kernel.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698