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

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

Issue 2739683005: [dart:io] Adds Platform.ansiSupported (Closed)
Patch Set: Cleanup 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 side-by-side diff with in-line comments
Download patch
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 f79da5c8ab8d501a505fa05e5a112b320063f98e..35d314fcd7d1676e030784d78014c1f1424dee8f 100644
--- a/sdk/lib/_internal/js_runtime/lib/io_patch.dart
+++ b/sdk/lib/_internal/js_runtime/lib/io_patch.dart
@@ -218,6 +218,10 @@ class _Platform {
static String _version() {
throw new UnsupportedError("Platform._version");
}
+ @patch
+ static _ansiSupported() {
+ throw new UnsupportedError("Platform._ansiSupported");
+ }
}
@patch

Powered by Google App Engine
This is Rietveld 408576698