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

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

Issue 11475026: By default use current code page on Windows for decoding string (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Address comment Created 8 years 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/bin/process_patch.dart ('k') | sdk/lib/io/input_stream.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
diff --git a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
index 7a87745dff70da61181226b798a00dbdaa94d2d4..9b677d6c20e98b784ce5c2fe650a4f818b119b3f 100644
--- a/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
+++ b/sdk/lib/_internal/compiler/implementation/lib/io_patch.dart
@@ -192,3 +192,15 @@ patch class _StdIOUtils {
throw new UnsupportedError("StdIOUtils._getStdioHandleType");
}
}
+
+patch class _WindowsCodePageDecoder {
+ patch static String _decodeBytes(List<int> bytes) {
+ throw new UnsupportedError("_WindowsCodePageDecoder._decodeBytes");
+ }
+}
+
+patch class _WindowsCodePageEncoder {
+ patch static List<int> _encodeString(String string) {
+ throw new UnsupportedError("_WindowsCodePageEncoder._encodeString");
+ }
+}
« no previous file with comments | « runtime/bin/process_patch.dart ('k') | sdk/lib/io/input_stream.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698