| 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(_Namespace namespace) { | 10 static _current(_Namespace namespace) { |
| (...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 static String _pathSeparator() { | 227 static String _pathSeparator() { |
| 228 throw new UnsupportedError("Platform._pathSeparator"); | 228 throw new UnsupportedError("Platform._pathSeparator"); |
| 229 } | 229 } |
| 230 | 230 |
| 231 @patch | 231 @patch |
| 232 static String _operatingSystem() { | 232 static String _operatingSystem() { |
| 233 throw new UnsupportedError("Platform._operatingSystem"); | 233 throw new UnsupportedError("Platform._operatingSystem"); |
| 234 } | 234 } |
| 235 | 235 |
| 236 @patch | 236 @patch |
| 237 static _operatingSystemVersion() { |
| 238 throw new UnsupportedError("Platform._operatingSystemVersion"); |
| 239 } |
| 240 |
| 241 @patch |
| 237 static _localHostname() { | 242 static _localHostname() { |
| 238 throw new UnsupportedError("Platform._localHostname"); | 243 throw new UnsupportedError("Platform._localHostname"); |
| 239 } | 244 } |
| 240 | 245 |
| 241 @patch | 246 @patch |
| 242 static _executable() { | 247 static _executable() { |
| 243 throw new UnsupportedError("Platform._executable"); | 248 throw new UnsupportedError("Platform._executable"); |
| 244 } | 249 } |
| 245 | 250 |
| 246 @patch | 251 @patch |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 643 } | 648 } |
| 644 } | 649 } |
| 645 | 650 |
| 646 @patch | 651 @patch |
| 647 class _IOService { | 652 class _IOService { |
| 648 @patch | 653 @patch |
| 649 static Future _dispatch(int request, List data) { | 654 static Future _dispatch(int request, List data) { |
| 650 throw new UnsupportedError("_IOService._dispatch"); | 655 throw new UnsupportedError("_IOService._dispatch"); |
| 651 } | 656 } |
| 652 } | 657 } |
| OLD | NEW |