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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/bin/process_patch.dart ('k') | sdk/lib/io/input_stream.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 patch class _BufferUtils { 5 patch class _BufferUtils {
6 patch static bool _isBuiltinList(List buffer) { 6 patch static bool _isBuiltinList(List buffer) {
7 throw new UnsupportedError("_isBuiltinList"); 7 throw new UnsupportedError("_isBuiltinList");
8 } 8 }
9 } 9 }
10 10
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 } 185 }
186 186
187 patch class _StdIOUtils { 187 patch class _StdIOUtils {
188 patch static _getStdioHandle(Socket socket, int num) { 188 patch static _getStdioHandle(Socket socket, int num) {
189 throw new UnsupportedError("StdIOUtils._getStdioHandle"); 189 throw new UnsupportedError("StdIOUtils._getStdioHandle");
190 } 190 }
191 patch static _getStdioHandleType(int num) { 191 patch static _getStdioHandleType(int num) {
192 throw new UnsupportedError("StdIOUtils._getStdioHandleType"); 192 throw new UnsupportedError("StdIOUtils._getStdioHandleType");
193 } 193 }
194 } 194 }
195
196 patch class _WindowsCodePageDecoder {
197 patch static String _decodeBytes(List<int> bytes) {
198 throw new UnsupportedError("_WindowsCodePageDecoder._decodeBytes");
199 }
200 }
201
202 patch class _WindowsCodePageEncoder {
203 patch static List<int> _encodeString(String string) {
204 throw new UnsupportedError("_WindowsCodePageEncoder._encodeString");
205 }
206 }
OLDNEW
« 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