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

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

Issue 2977903002: Remove deprecated_warningNotError. (Closed)
Patch Set: Created 3 years, 5 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 789 matching lines...) Expand 10 before | Expand all | Expand 10 after
800 template: "SDK summary not found: #string." 800 template: "SDK summary not found: #string."
801 801
802 ThisAccessInFieldInitializer: 802 ThisAccessInFieldInitializer:
803 template: "Can't access 'this' in a field initializer to read '#name'." 803 template: "Can't access 'this' in a field initializer to read '#name'."
804 804
805 ThisAsIdentifier: 805 ThisAsIdentifier:
806 template: "Expected identifier, but got 'this'." 806 template: "Expected identifier, but got 'this'."
807 807
808 SuperAsIdentifier: 808 SuperAsIdentifier:
809 template: "Expected identifier, but got 'super'." 809 template: "Expected identifier, but got 'super'."
810
811 SwitchCaseFallThrough:
812 template: "Switch case may fall through to next case."
Johnni Winther 2017/07/13 09:11:52 to next case -> to the next case
ahe 2017/07/13 11:14:19 Done.
813
814 FinalInstanceVariableAlreadyInitialized:
815 template: "'#name' is final instance variable that has already been initialize d."
Johnni Winther 2017/07/13 09:11:51 is final -> is a final
ahe 2017/07/13 11:14:19 Done.
816
817 FinalInstanceVariableAlreadyInitializedCause:
818 template: "'#name' was initialized here."
Johnni Winther 2017/07/13 09:11:52 Kilroy was here!
ahe 2017/07/13 11:14:20 Acknowledged.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698