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

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

Issue 23483030: Make file system watcher compile on Mac OS 106, and add a runtime-call to test if the system suppor… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/lib/io_patch.dart
diff --git a/sdk/lib/_internal/lib/io_patch.dart b/sdk/lib/_internal/lib/io_patch.dart
index 3955989cbfdca46d15e06b21ca80e6101fbd9f1b..fc29425912966587c177893c4fbfdacfdff59cc8 100644
--- a/sdk/lib/_internal/lib/io_patch.dart
+++ b/sdk/lib/_internal/lib/io_patch.dart
@@ -354,4 +354,7 @@ patch class _FileSystemWatcher {
patch factory _FileSystemWatcher(String path, int events, bool recursive) {
throw new UnsupportedError("_FileSystemWatcher._FileSystemWatcher");
}
+ patch static bool get isSupported {
+ throw new UnsupportedError("_FileSystemWatcher.isSupported");
+ }
}

Powered by Google App Engine
This is Rietveld 408576698