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

Side by Side Diff: pkg/front_end/lib/src/scanner/errors.dart

Issue 2483313003: Update copyright notices in front_end package. (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | pkg/front_end/lib/src/scanner/reader.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, 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 import 'package:analyzer/error/error.dart' 5 import 'package:analyzer/error/error.dart'
6 show errorCodeValues, errorCodeByUniqueName; 6 show errorCodeValues, errorCodeByUniqueName;
7 7
8 /** 8 /**
9 * An error code associated with an [AnalysisError]. 9 * An error code associated with an [AnalysisError].
10 * 10 *
11 * Generally, we want to provide messages that consist of three sentences. From 11 * Generally, we want to provide messages that consist of three sentences. From
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
350 */ 350 */
351 const ScannerErrorCode(String name, String message, [String correction]) 351 const ScannerErrorCode(String name, String message, [String correction])
352 : super(name, message, correction); 352 : super(name, message, correction);
353 353
354 @override 354 @override
355 ErrorSeverity get errorSeverity => ErrorSeverity.ERROR; 355 ErrorSeverity get errorSeverity => ErrorSeverity.ERROR;
356 356
357 @override 357 @override
358 ErrorType get type => ErrorType.SYNTACTIC_ERROR; 358 ErrorType get type => ErrorType.SYNTACTIC_ERROR;
359 } 359 }
OLDNEW
« no previous file with comments | « no previous file | pkg/front_end/lib/src/scanner/reader.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698