blob: 6d07c26c4ed89f2e6c964de683553c7fb40080a6 [file] [log] [blame]
// Copyright (c) 2021, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/**
* @assertion
* const Array<T extends NativeType>.multi(List<int> dimensions)
* Const constructor to specify Array dimensions in Structs.
*
* class MyStruct extends Struct {
* @Array.multi([2, 2, 2])
* external Array<Array<Array<Uint8>>> threeDimensionalInlineArray;
*
* @Array.multi([2, 2, 2, 2, 2, 2, 2, 2])
* external Array<Array<Array<Array<Array<Array<Array<Array<Uint8>>>>>>>> eightDimensionalInlineArray;
* }
* Do not invoke in normal code.
*
* @description Checks multidimentional array created by Array.multi(). Check
* wrong array size
* @author sgrekhov@unipro.ru
*/
import "dart:ffi";
class MyStruct extends Struct {
@Array.multi([])
//^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe]
external Array<Int16> a0;
@Array.multi([1])
//^^^^^^^^^^^^^^^^
// [analyzer] unspecified
// [cfe]
external Array<Array<Int16>> a1;
}
void main() {
MyStruct? ms = null;
}