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

Side by Side Diff: pkg/analyzer/test/src/task/test_support.dart

Issue 990773002: Test for computing task inputs before performing task itself. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/analyzer/test/src/task/driver_test.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 library test.src.task.test_support; 5 library test.src.task.test_support;
6 6
7 import 'package:analyzer/src/generated/engine.dart' hide AnalysisTask; 7 import 'package:analyzer/src/generated/engine.dart' hide AnalysisTask;
8 import 'package:analyzer/src/generated/java_engine.dart'; 8 import 'package:analyzer/src/generated/java_engine.dart';
9 import 'package:analyzer/task/model.dart'; 9 import 'package:analyzer/task/model.dart';
10 10
(...skipping 12 matching lines...) Expand all
23 CaughtException exception; 23 CaughtException exception;
24 24
25 /** 25 /**
26 * The results whose values are to be provided as outputs from this task. 26 * The results whose values are to be provided as outputs from this task.
27 */ 27 */
28 List<ResultDescriptor> results; 28 List<ResultDescriptor> results;
29 29
30 /** 30 /**
31 * The next value that is to be used for a result. 31 * The next value that is to be used for a result.
32 */ 32 */
33 int value = 1; 33 int value;
34 34
35 TestAnalysisTask(AnalysisContext context, AnalysisTarget target, 35 TestAnalysisTask(AnalysisContext context, AnalysisTarget target,
36 {this.descriptor, this.exception, this.results}) 36 {this.descriptor, this.exception, this.results, this.value: 1})
37 : super(context, target); 37 : super(context, target);
38 38
39 @override 39 @override
40 String get description => 'Test task'; 40 String get description => 'Test task';
41 41
42 @override 42 @override
43 internalPerform() { 43 internalPerform() {
44 if (exception != null) { 44 if (exception != null) {
45 caughtException = exception; 45 caughtException = exception;
46 } else if (results != null) { 46 } else if (results != null) {
47 for (ResultDescriptor result in results) { 47 for (ResultDescriptor result in results) {
48 outputs[result] = value++; 48 outputs[result] = value++;
49 } 49 }
50 } else if (descriptor != null) { 50 } else if (descriptor != null) {
51 for (ResultDescriptor result in descriptor.results) { 51 for (ResultDescriptor result in descriptor.results) {
52 outputs[result] = value++; 52 outputs[result] = value++;
53 } 53 }
54 } 54 }
55 } 55 }
56 } 56 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/task/driver_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698