Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/dart2js.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/dart2js.dart (revision 35513) |
| +++ sdk/lib/_internal/compiler/implementation/dart2js.dart (working copy) |
| @@ -365,11 +365,11 @@ |
| compilationDone(String code) { |
| if (analyzeOnly) return; |
| + writeString(Uri.parse('$out.deps'), |
| + getDepsOutput(inputProvider.sourceFiles)); |
|
kustermann
2014/04/29 21:20:44
This does not work in a very rare edge case:
Assu
ricow1
2014/04/30 06:51:01
I don't know enough about how dart2js works to dec
|
| if (code == null) { |
| fail('Compilation failed.'); |
| } |
| - writeString(Uri.parse('$out.deps'), |
| - getDepsOutput(inputProvider.sourceFiles)); |
| diagnosticHandler.info( |
| 'Compiled ${inputProvider.dartCharactersRead} characters Dart ' |
| '-> $totalCharactersWritten characters $outputLanguage ' |