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

Unified 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, 10 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 side-by-side diff with in-line comments
Download patch
Index: pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
diff --git a/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart b/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
index d941bb23e82efe2e71c13cf405fec292f3bf4dd7..f79da5c8ab8d501a505fa05e5a112b320063f98e 100644
--- a/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
+++ b/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
@@ -135,6 +135,18 @@ class _File {
throw new UnsupportedError("File._lastModified");
}
@patch
+ static _lastAccessed(String path) {
+ throw new UnsupportedError("File._lastAccessed");
+ }
+ @patch
+ static _setLastModified(String path, int millis) {
+ throw new UnsupportedError("File._setLastModified");
+ }
+ @patch
+ static _setLastAccessed(String path, int millis) {
+ throw new UnsupportedError("File._setLastAccessed");
+ }
+ @patch
static _open(String path, int mode) {
throw new UnsupportedError("File._open");
}
« 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