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

Unified Diff: sdk/lib/_internal/js_runtime/lib/io_patch.dart

Issue 2681683005: [dart:io] Adds functions to set file access and modification time (Closed)
Patch Set: Update changelog 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
« no previous file with comments | « runtime/vm/kernel_to_il.cc ('k') | sdk/lib/io/common.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/js_runtime/lib/io_patch.dart
diff --git a/sdk/lib/_internal/js_runtime/lib/io_patch.dart b/sdk/lib/_internal/js_runtime/lib/io_patch.dart
index d941bb23e82efe2e71c13cf405fec292f3bf4dd7..f79da5c8ab8d501a505fa05e5a112b320063f98e 100644
--- a/sdk/lib/_internal/js_runtime/lib/io_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/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 | « runtime/vm/kernel_to_il.cc ('k') | sdk/lib/io/common.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698