| Index: pkg/analyzer/lib/src/task/model.dart
|
| diff --git a/pkg/analyzer/lib/src/task/model.dart b/pkg/analyzer/lib/src/task/model.dart
|
| index 36878d334e4a30a794d7fc137269609e5d255784..05a922baae41fff0389ec375cc74d6241cc22767 100644
|
| --- a/pkg/analyzer/lib/src/task/model.dart
|
| +++ b/pkg/analyzer/lib/src/task/model.dart
|
| @@ -11,8 +11,8 @@ import 'package:analyzer/task/model.dart';
|
| /**
|
| * A concrete implementation of a [ContributionPoint].
|
| */
|
| -class ContributionPointImpl<V> extends ResultDescriptorImpl<V> implements
|
| - ContributionPoint<V> {
|
| +class ContributionPointImpl<V> extends ResultDescriptorImpl<V>
|
| + implements ContributionPoint<V> {
|
| /**
|
| * The results that contribute to this result.
|
| */
|
| @@ -97,8 +97,8 @@ class TaskDescriptorImpl implements TaskDescriptor {
|
| * and produces the given [results]. The [buildTask] will be used to create
|
| * the instance of [AnalysisTask] thusly described.
|
| */
|
| - TaskDescriptorImpl(this.name, this.buildTask, this.createTaskInputs,
|
| - this.results);
|
| + TaskDescriptorImpl(
|
| + this.name, this.buildTask, this.createTaskInputs, this.results);
|
|
|
| @override
|
| AnalysisTask createTask(AnalysisContext context, AnalysisTarget target,
|
|
|