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

Unified Diff: lib/isolate/isolate_compiler.dart

Issue 10827436: Revert "Unify dart:isolate." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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 | « lib/isolate/isolate_api.dart ('k') | lib/isolate/isolate_dart2js.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/isolate/isolate_compiler.dart
diff --git a/lib/isolate/isolate_compiler.dart b/lib/isolate/isolate_compiler.dart
new file mode 100644
index 0000000000000000000000000000000000000000..5aa0a6d84fbce92ed4a2036e119fbc9c6f2d5f6b
--- /dev/null
+++ b/lib/isolate/isolate_compiler.dart
@@ -0,0 +1,28 @@
+// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
+// for details. All rights reserved. Use of this source code is governed by a
+// BSD-style license that can be found in the LICENSE file.
+
+
+// Dart isolate's API for the dartc compiler (only used for type checking in the
+// dart editor, but not for code generation).
+#library("dart:isolate");
+
+#source("isolate_api.dart");
+#source("timer.dart");
+#source("timer_hook.dart");
+
+SendPort _spawnFunction(void topLevelFunction()) {
+ throw new NotImplementedException();
+}
+
+SendPort _spawnUri(String uri) {
+ throw new NotImplementedException();
+}
+
+ReceivePort _port = null;
+
+class _ReceivePortFactory {
+ factory ReceivePort() {
+ throw new NotImplementedException();
+ }
+}
« no previous file with comments | « lib/isolate/isolate_api.dart ('k') | lib/isolate/isolate_dart2js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698