bd65b86ada
(Part of https://github.com/dart-lang/sdk/issues/63288) This change migrates the analyzer_cli package to use the new constructor declaration syntax, described in https://github.com/dart-lang/language/blob/main/accepted/future-releases/primary-constructors/feature-specification.md#abbreviations-of-in-body-constructor-declarations. This change was performed in an automated fashion, by (a) bumping the package's SDK constraint to `3.13.0-0`, (b) enabling the lints `unnecessary_type_name_in_constructor` and `unnecessary_const_in_enum_constructor`, (c) fixing the resulting lint failures using `dart fix`, and then (d) reformatting the affected files. To ease code review, I've reverted unrelated formatting changes. Change-Id: I563e97f19c03ad0672dba271de303b786a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/508367 Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
19 lines
747 B
Dart
19 lines
747 B
Dart
// Copyright (c) 2016, 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.
|
|
|
|
import 'package:analyzer_cli/src/driver.dart';
|
|
|
|
/// An object that can be used to start a command-line analysis. This class
|
|
/// exists so that clients can configure a command-line analyzer before starting
|
|
/// it.
|
|
///
|
|
/// Clients may not extend, implement or mix-in this class.
|
|
abstract class CommandLineStarter {
|
|
/// Initialize a newly created starter to start up a command-line analysis.
|
|
factory() = Driver;
|
|
|
|
/// Use the given command-line [arguments] to start this analyzer.
|
|
Future<void> start(List<String> arguments);
|
|
}
|