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

Unified Diff: lib/compiler/implementation/lib/io.dart

Issue 10990083: Reapply change to hide VM-only List implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix dart:io perf regression. Created 8 years, 3 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 | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/compiler/implementation/lib/io.dart
diff --git a/lib/compiler/implementation/lib/io.dart b/lib/compiler/implementation/lib/io.dart
index a45be35c9dadea06af9a8616a3a0f6a98c6d72f5..6fbcda0e627d089e0bcc8d55772057166f7f9de6 100644
--- a/lib/compiler/implementation/lib/io.dart
+++ b/lib/compiler/implementation/lib/io.dart
@@ -27,7 +27,8 @@
#import("dart:crypto");
#import("dart:utf");
#source('../../../../runtime/bin/buffer_list.dart');
-#source('../../../../runtime/bin/common.dart');
+// Uses native keyword.
+//#source('../../../../runtime/bin/common.dart');
#source('../../../../runtime/bin/chunked_stream.dart');
#source('../../../../runtime/bin/directory.dart');
// Uses native keyword.
@@ -66,6 +67,39 @@
#source('../../../../runtime/bin/websocket.dart');
#source('../../../../runtime/bin/websocket_impl.dart');
+/**
+ * An [OSError] object holds information about an error from the
+ * operating system.
+ */
+class OSError {
+ /** Constant used to indicate that no OS error code is available. */
+ static const int noErrorCode = -1;
+
+ /** Creates an OSError object from a message and an errorCode. */
+ const OSError([String this.message = "", int this.errorCode = noErrorCode]);
+
+ /** Converts an OSError object to a string representation. */
+ String toString() {
+ throw UnsupportedOperationException('OSError.toString');
+ }
+
+ /**
+ * Error message supplied by the operating system. null if no message is
+ * associated with the error.
+ */
+ final String message;
+
+ /**
+ * Error code supplied by the operating system. Will have the value
+ * [noErrorCode] if there is no error code associated with the error.
+ */
+ final int errorCode;
+}
+
+List _ensureFastAndSerializableBuffer(List buffer, int offset, int bytes) {
+ throw new UnsupportedOperationException('_ensureFastAndSerializableBuffer');
+}
+
class _File {
factory File(arg) {
throw new UnsupportedOperationException('new File($arg)');
« no previous file with comments | « no previous file | lib/html/dartium/html_dartium.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698