Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: sdk/lib/_internal/compiler/js_lib/io_patch.dart

Issue 1180623006: Revert change to Platform.excutable and add Platform.resolvedExecutable (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Updated dart2js io_patch.dart Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/bin/platform_patch.dart ('k') | sdk/lib/io/platform.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « runtime/bin/platform_patch.dart ('k') | sdk/lib/io/platform.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698