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

Side by Side Diff: pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart

Issue 3006873002: [dart:io] Adds Platform.operatingSystemVersion (Closed)
Patch Set: Updated CHANGELOG Created 3 years, 3 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 | « CHANGELOG.md ('k') | runtime/bin/io_natives.cc » ('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(_Namespace namespace) { 10 static _current(_Namespace namespace) {
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « CHANGELOG.md ('k') | runtime/bin/io_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698