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

Side by Side Diff: lib/isolate/isolate_leg.dart

Issue 10174022: isolate-leg: fix typo in type signature. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 5
6 /** 6 /**
7 * The `dart:isolate` library defines APIs to spawn and communicate with 7 * The `dart:isolate` library defines APIs to spawn and communicate with
8 * isolates. 8 * isolates.
9 * 9 *
10 * All code in dart runs in the context of an isolate. Each isolate has its own 10 * All code in dart runs in the context of an isolate. Each isolate has its own
(...skipping 29 matching lines...) Expand all
40 #source("isolate_api.dart"); 40 #source("isolate_api.dart");
41 #source("frog/compiler_hooks.dart"); 41 #source("frog/compiler_hooks.dart");
42 #source("frog/isolateimpl.dart"); 42 #source("frog/isolateimpl.dart");
43 #source("frog/ports.dart"); 43 #source("frog/ports.dart");
44 #source("frog/messages.dart"); 44 #source("frog/messages.dart");
45 45
46 /** 46 /**
47 * Called by the compiler to support switching 47 * Called by the compiler to support switching
48 * between isolates when we get a callback from the DOM. 48 * between isolates when we get a callback from the DOM.
49 */ 49 */
50 void _callInIsolate(IsolateContext isolate, Function function) { 50 void _callInIsolate(_IsolateContext isolate, Function function) {
51 isolate.eval(function); 51 isolate.eval(function);
52 _globalState.topEventLoop.run(); 52 _globalState.topEventLoop.run();
53 } 53 }
54 54
55 /** 55 /**
56 * Called by the compiler to fetch the current isolate context. 56 * Called by the compiler to fetch the current isolate context.
57 */ 57 */
58 void _currentIsolate() => _globalState.currentContext; 58 void _currentIsolate() => _globalState.currentContext;
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698