| 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('dart2js'); | 5 #library('dart2js'); |
| 6 | 6 |
| 7 #import('dart:io'); | 7 #import('dart:io'); |
| 8 #import('dart:utf'); | 8 #import('dart:utf'); |
| 9 | 9 |
| 10 #import('../../lib/uri/uri.dart'); | 10 #import('../../lib/uri/uri.dart'); |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 } | 144 } |
| 145 | 145 |
| 146 String readAll(String filename) { | 146 String readAll(String filename) { |
| 147 var file = (new File(filename)).openSync(); | 147 var file = (new File(filename)).openSync(); |
| 148 var length = file.lengthSync(); | 148 var length = file.lengthSync(); |
| 149 var buffer = new List<int>(length); | 149 var buffer = new List<int>(length); |
| 150 var bytes = file.readListSync(buffer, 0, length); | 150 var bytes = file.readListSync(buffer, 0, length); |
| 151 file.closeSync(); | 151 file.closeSync(); |
| 152 return new String.fromCharCodes(new Utf8Decoder(buffer).decodeRest()); | 152 return new String.fromCharCodes(new Utf8Decoder(buffer).decodeRest()); |
| 153 } | 153 } |
| OLD | NEW |