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

Side by Side Diff: pkg/front_end/messages.yaml

Issue 2930673002: Implement initializer asserts. (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 unified diff | Download patch
OLDNEW
1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # Each entry in this map corresponds to a diagnostic message. Ideally, each 5 # Each entry in this map corresponds to a diagnostic message. Ideally, each
6 # entry contains three parts: 6 # entry contains three parts:
7 # 7 #
8 # 1. A message template (template). 8 # 1. A message template (template).
9 # 9 #
10 # 2. A suggestion for how to correct the problem (tip). 10 # 2. A suggestion for how to correct the problem (tip).
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 dart2jsCode: FASTA_IGNORED 391 dart2jsCode: FASTA_IGNORED
392 392
393 TypeAfterVar: 393 TypeAfterVar:
394 template: "Can't have both a type and 'var'." 394 template: "Can't have both a type and 'var'."
395 tip: "Try removing 'var.'" 395 tip: "Try removing 'var.'"
396 dart2jsCode: EXTRANEOUS_MODIFIER 396 dart2jsCode: EXTRANEOUS_MODIFIER
397 397
398 TypeRequired: 398 TypeRequired:
399 template: "A type or modifier is required here." 399 template: "A type or modifier is required here."
400 tip: "Try adding a type, 'var', 'const', or 'final'." 400 tip: "Try adding a type, 'var', 'const', or 'final'."
401
402 AssertExtraneousArgument:
403 template: "`assert` can't have more than two arguments."
404
405 AssertAsExpression:
406 template: "`assert` can't be used as an expression."
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698