| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 source_file_provider; | 5 library source_file_provider; |
| 6 | 6 |
| 7 import 'dart:async'; | 7 import 'dart:async'; |
| 8 import 'dart:uri'; | 8 import 'dart:uri'; |
| 9 import 'dart:io'; | 9 import 'dart:io'; |
| 10 import 'dart:utf'; | 10 import 'dart:utf'; |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 throw 'Error: Cannot read "${relativize(cwd, resourceUri, isWindows)}" ' | 42 throw 'Error: Cannot read "${relativize(cwd, resourceUri, isWindows)}" ' |
| 43 '(${ex.osError}).'; | 43 '(${ex.osError}).'; |
| 44 } | 44 } |
| 45 dartCharactersRead += source.length; | 45 dartCharactersRead += source.length; |
| 46 sourceFiles[resourceUri.toString()] = | 46 sourceFiles[resourceUri.toString()] = |
| 47 new SourceFile(relativize(cwd, resourceUri, isWindows), source); | 47 new SourceFile(relativize(cwd, resourceUri, isWindows), source); |
| 48 return new Future.immediate(source); | 48 return new Future.immediate(source); |
| 49 } | 49 } |
| 50 } | 50 } |
| 51 | 51 |
| 52 void silentDiagnosticHandler(Uri uri, int begin, int end, String message, | |
| 53 api.Diagnostic kind) { | |
| 54 } | |
| 55 | |
| 56 class FormattingDiagnosticHandler { | 52 class FormattingDiagnosticHandler { |
| 57 final SourceFileProvider provider; | 53 final SourceFileProvider provider; |
| 58 bool showWarnings = true; | 54 bool showWarnings = true; |
| 59 bool verbose = false; | 55 bool verbose = false; |
| 60 bool isAborting = false; | 56 bool isAborting = false; |
| 61 bool enableColors = false; | 57 bool enableColors = false; |
| 62 bool throwOnError = false; | 58 bool throwOnError = false; |
| 63 | 59 |
| 64 final int FATAL = api.Diagnostic.CRASH.ordinal | api.Diagnostic.ERROR.ordinal; | 60 final int FATAL = api.Diagnostic.CRASH.ordinal | api.Diagnostic.ERROR.ordinal; |
| 65 final int INFO = | 61 final int INFO = |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 print(file.getLocationMessage(color(message), begin, end, true, color)); | 112 print(file.getLocationMessage(color(message), begin, end, true, color)); |
| 117 } | 113 } |
| 118 if (fatal && throwOnError) { | 114 if (fatal && throwOnError) { |
| 119 isAborting = true; | 115 isAborting = true; |
| 120 throw new AbortLeg(message); | 116 throw new AbortLeg(message); |
| 121 } | 117 } |
| 122 } | 118 } |
| 123 } | 119 } |
| 124 | 120 |
| 125 | 121 |
| OLD | NEW |