| Index: pkg/analyzer/test/src/task/test_support.dart
|
| diff --git a/pkg/analyzer/test/src/task/test_support.dart b/pkg/analyzer/test/src/task/test_support.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e6b0a385a71b3f41f75914935ae6a6f566266ce1
|
| --- /dev/null
|
| +++ b/pkg/analyzer/test/src/task/test_support.dart
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2015, 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.
|
| +
|
| +library test.src.task.test_support;
|
| +
|
| +import 'package:analyzer/src/generated/engine.dart' hide AnalysisTask;
|
| +import 'package:analyzer/task/model.dart';
|
| +
|
| +class TestAnalysisTask extends AnalysisTask {
|
| + TestAnalysisTask(AnalysisContext context, AnalysisTarget target) : super(context, target);
|
| +
|
| + @override
|
| + String get description => 'Test task';
|
| +
|
| + @override
|
| + internalPerform() {
|
| + }
|
| +}
|
|
|