blob: 6aa279dbaab445f98ba79230d2ba79314602c93c [file] [log] [blame]
/*
* Copyright (c) 2019, 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 To handle these gracefully, we support a [...?] "null-aware
* spread" operator. In cases where the spread expression evaluates to [null],
* that expands to an empty collection instead of throwing a runtime expression.
*
* That turns the example to:
*
* var command = [
* engineDartPath,
* '--target=flutter',
* ...?extraFrontEndOptions,
* mainPath
* ];
* @description Checks that acompile error if spreadable element in the
* [List] is not null-aware and it's [null].
* @author iarkh@unipro.ru
*/
List getAList(
String engineDartPath, List? extraFrontEndOptions, String mainPath) {
return(
[engineDartPath, "--target=flutter", ...extraFrontEndOptions, mainPath]);
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
getAList("enginePath", null, "mainPath");
}