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 /** | 5 /** |
6 * The scalarlist library is used for Dart server applications, | 6 * The scalarlist library is used for Dart server applications, |
7 * which run on a stand-alone Dart VM from the command line. | 7 * which run on a stand-alone Dart VM from the command line. |
8 * *This library does not work in browser based applications.* | 8 * *This library does not work in browser based applications.* |
9 * | 9 * |
10 * This library allows you to work with arrays of scalar values | 10 * This library allows you to work with arrays of scalar values |
11 * of various sizes. | 11 * of various sizes. |
12 */ | 12 */ |
13 library dart.scalarlist; | 13 library dart.scalarlist; |
14 | 14 |
15 // TODO(ager): Inline the contents of byte_arrays.dart here and get | 15 // TODO(ager): Inline the contents of byte_arrays.dart here and get |
16 // rid of scalarlist_sources.gypi when the VM understands normal | 16 // rid of scalarlist_sources.gypi when the VM understands normal |
17 // library structure for builtin libraries. | 17 // library structure for builtin libraries. |
18 part 'byte_arrays.dart'; | 18 part 'byte_arrays.dart'; |
| 19 part 'simd128.dart'; |
OLD | NEW |