| 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('parser'); | 5 #library('parser'); |
| 6 | 6 |
| 7 #import('dart:io'); | 7 #import('dart:io'); |
| 8 | 8 |
| 9 #import('../../../lib/utf8/utf8.dart'); | 9 #import('../../../lib/utf8/utf8.dart'); |
| 10 | 10 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 146 } |
| 147 stopwatch.stop(); | 147 stopwatch.stop(); |
| 148 } | 148 } |
| 149 forEachLine(input, readLine, whenDone); | 149 forEachLine(input, readLine, whenDone); |
| 150 } | 150 } |
| 151 | 151 |
| 152 void forEachLine(InputStream input, | 152 void forEachLine(InputStream input, |
| 153 void lineHandler(String line), | 153 void lineHandler(String line), |
| 154 void closeHandler()) { | 154 void closeHandler()) { |
| 155 StringInputStream stringStream = new StringInputStream(input); | 155 StringInputStream stringStream = new StringInputStream(input); |
| 156 stringStream.lineHandler = () { | 156 stringStream.onLine = () { |
| 157 String line; | 157 String line; |
| 158 while ((line = stringStream.readLine()) !== null) { | 158 while ((line = stringStream.readLine()) !== null) { |
| 159 lineHandler(line); | 159 lineHandler(line); |
| 160 } | 160 } |
| 161 }; | 161 }; |
| 162 stringStream.closeHandler = closeHandler; | 162 stringStream.onClosed = closeHandler; |
| 163 } | 163 } |
| 164 | 164 |
| 165 List<int> read(String filename) { | 165 List<int> read(String filename) { |
| 166 RandomAccessFile file = new File(filename).openSync(); | 166 RandomAccessFile file = new File(filename).openSync(); |
| 167 bool threw = true; | 167 bool threw = true; |
| 168 try { | 168 try { |
| 169 int size = file.lengthSync(); | 169 int size = file.lengthSync(); |
| 170 List<int> bytes = new ByteArray(size + 1); | 170 List<int> bytes = new ByteArray(size + 1); |
| 171 file.readListSync(bytes, 0, size); | 171 file.readListSync(bytes, 0, size); |
| 172 bytes[size] = $EOF; | 172 bytes[size] = $EOF; |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 String _GREEN_COLOR = '\u001b[32m'; | 324 String _GREEN_COLOR = '\u001b[32m'; |
| 325 String _RED_COLOR = '\u001b[31m'; | 325 String _RED_COLOR = '\u001b[31m'; |
| 326 String _MAGENTA_COLOR = '\u001b[35m'; | 326 String _MAGENTA_COLOR = '\u001b[35m'; |
| 327 String _NO_COLOR = '\u001b[0m'; | 327 String _NO_COLOR = '\u001b[0m'; |
| 328 | 328 |
| 329 class Mock { | 329 class Mock { |
| 330 const Mock(); | 330 const Mock(); |
| 331 bool get useColors() => true; | 331 bool get useColors() => true; |
| 332 internalError(message) { throw message.toString(); } | 332 internalError(message) { throw message.toString(); } |
| 333 } | 333 } |
| OLD | NEW |