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

Side by Side Diff: runtime/tests/vm/dart/isolate_mirror_remote_test.dart

Issue 10700149: Some small changes to make the vm dart:mirrors somewhat closer to the (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 5 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 | « runtime/tests/vm/dart/isolate_mirror_local_test.dart ('k') | runtime/vm/bootstrap_natives.h » ('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 // Dart test program for checking implemention of IsolateMirror when 5 // Dart test program for checking implemention of MirrorSystem when
6 // inspecting a remote isolate. 6 // inspecting a remote isolate.
7 7
8 #library('isolate_mirror_local_test'); 8 #library('isolate_mirror_local_test');
9 9
10 #import('dart:isolate'); 10 #import('dart:isolate');
11 #import('dart:mirrors'); 11 #import('dart:mirrors');
12 12
13 void isolateMain() { 13 void isolateMain() {
14 port.receive( 14 port.receive(
15 (msg, replyPort) { 15 (msg, replyPort) {
16 Expect.fail('Received unexpected message $msg in remote isolate.'); 16 Expect.fail('Received unexpected message $msg in remote isolate.');
17 }); 17 });
18 } 18 }
19 19
20 void testIsolateMirror(IsolateMirror mirror) { 20 void testMirrorSystem(MirrorSystem mirror) {
21 Expect.fail('Should not reach here. Remote isolates not implemented.'); 21 Expect.fail('Should not reach here. Remote isolates not implemented.');
22 } 22 }
23 23
24 void main() { 24 void main() {
25 SendPort sp = spawnFunction(isolateMain); 25 SendPort sp = spawnFunction(isolateMain);
26 try { 26 try {
27 isolateMirrorOf(sp).then(testIsolateMirror); 27 mirrorSystemOf(sp).then(testMirrorSystem);
28 Expect.fail('Should not reach here. Remote isolates not implemented.'); 28 Expect.fail('Should not reach here. Remote isolates not implemented.');
29 } catch (var exception) { 29 } catch (var exception) {
30 Expect.isTrue(exception is NotImplementedException); 30 Expect.isTrue(exception is NotImplementedException);
31 } 31 }
32 } 32 }
OLDNEW
« no previous file with comments | « runtime/tests/vm/dart/isolate_mirror_local_test.dart ('k') | runtime/vm/bootstrap_natives.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698