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

Side by Side Diff: pkg/analyzer/lib/src/generated/incremental_logger.dart

Issue 1513643009: Clean up package imports and library names (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years 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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 library engine.incremental_logger; 5 library analyzer.src.generated.incremental_logger;
6 6
7 /** 7 /**
8 * The shared instance of [Logger] used by several incremental resolution 8 * The shared instance of [Logger] used by several incremental resolution
9 * classes. It is initialized externally by the Analysis Engine client. 9 * classes. It is initialized externally by the Analysis Engine client.
10 */ 10 */
11 Logger logger = NULL_LOGGER; 11 Logger logger = NULL_LOGGER;
12 12
13 /** 13 /**
14 * An instance of [Logger] that does not print anything. 14 * An instance of [Logger] that does not print anything.
15 */ 15 */
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 _line += new String.fromCharCode(charCode); 177 _line += new String.fromCharCode(charCode);
178 } 178 }
179 179
180 @override 180 @override
181 void writeln([Object obj = '']) { 181 void writeln([Object obj = '']) {
182 _line += obj; 182 _line += obj;
183 print(_line); 183 print(_line);
184 _line = ''; 184 _line = '';
185 } 185 }
186 } 186 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698