| OLD | NEW |
| 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 "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 import 'dart:typeddata'; | 9 import 'dart:typed_data'; |
| 10 | 10 |
| 11 // This test exercises optimized [] and []= operators | 11 // This test exercises optimized [] and []= operators |
| 12 // on byte array views. | 12 // on byte array views. |
| 13 class OptimizedByteArrayTest { | 13 class OptimizedByteArrayTest { |
| 14 static testInt8ListImpl(Int8List array) { | 14 static testInt8ListImpl(Int8List array) { |
| 15 Expect.isTrue(array is List<int>); | 15 Expect.isTrue(array is List<int>); |
| 16 Expect.equals(10, array.length); | 16 Expect.equals(10, array.length); |
| 17 Expect.equals(1, array.elementSizeInBytes); | 17 Expect.equals(1, array.elementSizeInBytes); |
| 18 Expect.equals(10, array.lengthInBytes); | 18 Expect.equals(10, array.lengthInBytes); |
| 19 Expect.listEquals([0, 0, 0, 0, 0, | 19 Expect.listEquals([0, 0, 0, 0, 0, |
| (...skipping 2106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2126 testFloat32ListView(); | 2126 testFloat32ListView(); |
| 2127 testFloat64ListView(); | 2127 testFloat64ListView(); |
| 2128 } | 2128 } |
| 2129 } | 2129 } |
| 2130 | 2130 |
| 2131 main() { | 2131 main() { |
| 2132 for (var i=0; i<1000; i++) { | 2132 for (var i=0; i<1000; i++) { |
| 2133 OptimizedByteArrayTest.testMain(); | 2133 OptimizedByteArrayTest.testMain(); |
| 2134 } | 2134 } |
| 2135 } | 2135 } |
| OLD | NEW |