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

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

Issue 12218008: Inline getters of byte array view in the optimized flow graph. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: updated vm.status with new test Created 7 years, 10 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
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 // Library tag to be able to run in html test framework. 5 // Library tag to be able to run in html test framework.
6 library byte_array_test; 6 library byte_array_test;
7 7
8 import 'dart:scalarlist'; 8 import 'dart:scalarlist';
9 9
10 class ByteArrayTest { 10 class ByteArrayTest {
(...skipping 2387 matching lines...) Expand 10 before | Expand all | Expand 10 after
2398 testInt32ListView(); 2398 testInt32ListView();
2399 testUint32ListView(); 2399 testUint32ListView();
2400 testInt64ListView(); 2400 testInt64ListView();
2401 testUint64ListView(); 2401 testUint64ListView();
2402 testFloat32ListView(); 2402 testFloat32ListView();
2403 testFloat64ListView(); 2403 testFloat64ListView();
2404 } 2404 }
2405 } 2405 }
2406 2406
2407 main() { 2407 main() {
2408 ByteArrayTest.testMain(); 2408 for (var i=0; i<1000; i++) {
2409 ByteArrayTest.testMain();
2410 }
2409 } 2411 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698