Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(82)

Unified Diff: pkg/analyzer/test/src/task/test_support.dart

Issue 812733004: Initial task support (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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() {
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698