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

Unified Diff: pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart

Issue 2756463006: fix ddc build, adds some unsupported methods to dart:io (Closed)
Patch Set: 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
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1a532de05b8a170b812a6b3997358bdf742adb51..8e72f3231b3aed7e481efa1be799acd33c6d42d4 100644
--- a/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
+++ b/pkg/dev_compiler/tool/input_sdk/patch/io_patch.dart
@@ -550,6 +550,11 @@ class Stdin {
void set lineMode(bool enabled) {
throw new UnsupportedError("Stdin.lineMode");
}
+
+ @patch
+ bool get supportsAnsiEscapes {
+ throw new UnsupportedError("Stdin.supportsAnsiEscapes");
+ }
}
@patch
@@ -568,6 +573,11 @@ class Stdout {
int _terminalLines(int fd) {
throw new UnsupportedError("Stdout.terminalLines");
}
+
+ @patch
+ static bool _supportsAnsiEscapes(int fd) {
+ throw new UnsupportedError("Stdout.supportsAnsiEscapes");
+ }
}
@patch
« no previous file with comments | « pkg/dev_compiler/lib/sdk/ddc_sdk.sum ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698