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

Side by Side Diff: tests/standalone/typed_data_isolate_test.dart

Issue 12887006: Version 0.4.3.3 . (Closed) Base URL: http://dart.googlecode.com/svn/trunk/dart/
Patch Set: Created 7 years, 8 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 | « tests/standalone/standalone.status ('k') | tools/VERSION » ('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) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, 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 testing typed data. 5 // Dart test program for testing typed data.
6 6
7 // Library tag to be able to run in html test framework. 7 // Library tag to be able to run in html test framework.
8 library TypedDataIsolateTest; 8 library TypedDataIsolateTest;
9 9
10 import 'dart:io'; 10 import 'dart:io';
(...skipping 12 matching lines...) Expand all
23 23
24 main() { 24 main() {
25 new File(new Options().script).readAsBytes().then((List<int> data) { 25 new File(new Options().script).readAsBytes().then((List<int> data) {
26 spawnFunction(second).call(data).then((reply) { 26 spawnFunction(second).call(data).then((reply) {
27 print('got reply'); 27 print('got reply');
28 port.close(); 28 port.close();
29 }); 29 });
30 }); 30 });
31 } 31 }
32 32
OLDNEW
« no previous file with comments | « tests/standalone/standalone.status ('k') | tools/VERSION » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698