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

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

Issue 2698353003: unfork DDC's copy of most SDK libraries (Closed)
Patch Set: revert core_patch Created 3 years, 9 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
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 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 } 128 }
129 @patch 129 @patch
130 static _lengthFromPath(String path) { 130 static _lengthFromPath(String path) {
131 throw new UnsupportedError("File._lengthFromPath"); 131 throw new UnsupportedError("File._lengthFromPath");
132 } 132 }
133 @patch 133 @patch
134 static _lastModified(String path) { 134 static _lastModified(String path) {
135 throw new UnsupportedError("File._lastModified"); 135 throw new UnsupportedError("File._lastModified");
136 } 136 }
137 @patch 137 @patch
138 static _lastAccessed(String path) {
139 throw new UnsupportedError("File._lastAccessed");
140 }
141 @patch
142 static _setLastModified(String path, int millis) {
143 throw new UnsupportedError("File._setLastModified");
144 }
145 @patch
146 static _setLastAccessed(String path, int millis) {
147 throw new UnsupportedError("File._setLastAccessed");
148 }
149 @patch
138 static _open(String path, int mode) { 150 static _open(String path, int mode) {
139 throw new UnsupportedError("File._open"); 151 throw new UnsupportedError("File._open");
140 } 152 }
141 @patch 153 @patch
142 static int _openStdio(int fd) { 154 static int _openStdio(int fd) {
143 throw new UnsupportedError("File._openStdio"); 155 throw new UnsupportedError("File._openStdio");
144 } 156 }
145 } 157 }
146 158
147 @patch 159 @patch
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
528 } 540 }
529 } 541 }
530 542
531 @patch 543 @patch
532 class _IOService { 544 class _IOService {
533 @patch 545 @patch
534 static Future _dispatch(int request, List data) { 546 static Future _dispatch(int request, List data) {
535 throw new UnsupportedError("_IOService._dispatch"); 547 throw new UnsupportedError("_IOService._dispatch");
536 } 548 }
537 } 549 }
OLDNEW
« no previous file with comments | « pkg/dev_compiler/tool/input_sdk/patch/internal_patch.dart ('k') | pkg/dev_compiler/tool/input_sdk/patch/isolate_patch.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698