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

Side by Side Diff: pkg/barback/lib/src/transform_logger.dart

Issue 24886002: Support dart2js in pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Revise. Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback.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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 barback.transform_logger; 5 library barback.transform_logger;
6 6
7 import 'package:source_maps/span.dart'; 7 import 'package:source_maps/span.dart';
8 8
9 /// Object used to report warnings and errors encountered while running a 9 /// Object used to report warnings and errors encountered while running a
10 /// transformer. 10 /// transformer.
11 class TransformLogger { 11 class TransformLogger {
12 12
13 bool _shouldPrint; 13 bool _shouldPrint;
14 14
15 TransformLogger(this._shouldPrint); 15 TransformLogger(this._shouldPrint);
16 16
17 /// Logs an informative message.
18 ///
19 /// If present, [span] indicates the location in the input asset that caused
20 /// the message.
21 void info(String message, [Span span]) {
22 _printMessage('info', message, span);
23 }
24
17 /// Logs a warning message. 25 /// Logs a warning message.
18 /// 26 ///
19 /// If present, [span] indicates the location in the input asset that caused 27 /// If present, [span] indicates the location in the input asset that caused
20 /// the warning. 28 /// the warning.
21 void warning(String message, [Span span]) { 29 void warning(String message, [Span span]) {
22 _printMessage('warning', message, span); 30 _printMessage('warning', message, span);
23 } 31 }
24 32
25 /// Logs an error message. 33 /// Logs an error message.
26 /// 34 ///
27 /// If present, [span] indicates the location in the input asset that caused 35 /// If present, [span] indicates the location in the input asset that caused
28 /// the error. 36 /// the error.
29 // TODO(sigmund,nweiz): clarify when an error should be logged or thrown. 37 // TODO(sigmund,nweiz): clarify when an error should be logged or thrown.
30 void error(String message, [Span span]) { 38 void error(String message, [Span span]) {
31 _printMessage('error', message, span); 39 _printMessage('error', message, span);
32 } 40 }
33 41
34 // TODO(sigmund,rnystrom): do something better than printing. 42 // TODO(sigmund,rnystrom): do something better than printing.
35 _printMessage(String prefix, String message, Span span) { 43 _printMessage(String prefix, String message, Span span) {
36 if (!_shouldPrint) return; 44 if (!_shouldPrint) return;
37 print(span == null ? '$prefix $message' 45 print(span == null ? '$prefix $message'
38 : '$prefix ${span.getLocationMessage(message)}'); 46 : '$prefix ${span.getLocationMessage(message)}');
39 } 47 }
40 } 48 }
OLDNEW
« no previous file with comments | « no previous file | sdk/lib/_internal/pub/lib/src/barback.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698