OLD | NEW |
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 import 'dart:_js_helper' show patch; | 5 import 'dart:_js_helper' show patch; |
6 | 6 |
7 @patch | 7 @patch |
8 class _Directory { | 8 class _Directory { |
9 @patch | 9 @patch |
10 static _current() { | 10 static _current() { |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 } | 214 } |
215 @patch | 215 @patch |
216 static _localHostname() { | 216 static _localHostname() { |
217 throw new UnsupportedError("Platform._localHostname"); | 217 throw new UnsupportedError("Platform._localHostname"); |
218 } | 218 } |
219 @patch | 219 @patch |
220 static _executable() { | 220 static _executable() { |
221 throw new UnsupportedError("Platform._executable"); | 221 throw new UnsupportedError("Platform._executable"); |
222 } | 222 } |
223 @patch | 223 @patch |
| 224 static _resolvedExecutable() { |
| 225 throw new UnsupportedError("Platform._resolvedExecutable"); |
| 226 } |
| 227 @patch |
224 static List<String> _executableArguments() { | 228 static List<String> _executableArguments() { |
225 throw new UnsupportedError("Platform._executableArguments"); | 229 throw new UnsupportedError("Platform._executableArguments"); |
226 } | 230 } |
227 @patch | 231 @patch |
228 static String _packageRoot() { | 232 static String _packageRoot() { |
229 throw new UnsupportedError("Platform._packageRoot"); | 233 throw new UnsupportedError("Platform._packageRoot"); |
230 } | 234 } |
231 @patch | 235 @patch |
232 static _environment() { | 236 static _environment() { |
233 throw new UnsupportedError("Platform._environment"); | 237 throw new UnsupportedError("Platform._environment"); |
(...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 } | 534 } |
531 } | 535 } |
532 | 536 |
533 @patch | 537 @patch |
534 class _IOService { | 538 class _IOService { |
535 @patch | 539 @patch |
536 static Future _dispatch(int request, List data) { | 540 static Future _dispatch(int request, List data) { |
537 throw new UnsupportedError("_IOService._dispatch"); | 541 throw new UnsupportedError("_IOService._dispatch"); |
538 } | 542 } |
539 } | 543 } |
OLD | NEW |