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

Unified Diff: sdk/lib/io/platform_impl.dart

Issue 2753233002: [dart:io] Move Platform.ansiSupported to {Stdin,Stdout}.supportsAnsiEscapes (Closed)
Patch Set: Fix typo 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/io/platform_impl.dart
diff --git a/sdk/lib/io/platform_impl.dart b/sdk/lib/io/platform_impl.dart
index 98ad5c1816dfd4987744e5c3289b9d043c9b180b..5f68b7dbdef6ded8dc6ddaf263e8090d5ae94326 100644
--- a/sdk/lib/io/platform_impl.dart
+++ b/sdk/lib/io/platform_impl.dart
@@ -11,7 +11,6 @@ class _Platform {
external static _localHostname();
external static _executable();
external static _resolvedExecutable();
- external static bool _ansiSupported();
/**
* Retrieve the entries of the process environment.
@@ -46,7 +45,6 @@ class _Platform {
static int get numberOfProcessors => _numberOfProcessors();
static String get pathSeparator => _pathSeparator();
static String get operatingSystem => _operatingSystem();
- static bool get ansiSupported => _ansiSupported();
static Uri script;
static String get localHostname {

Powered by Google App Engine
This is Rietveld 408576698