blob: 7364d2a9706216b17de265abe82241fffd3272f1 [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.
// test w/ `dart test -N prefer_inlined_adds`
var l = ['a']..add('b'); // LINT
var l2 = ['a']..add('b')..add('c'); // LINT
var l3 = ['a']..addAll(['b', 'c']); // LINT
var things;
var l4 = ['a']..addAll(things ?? const []); // OK