mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
9 lines
415 B
Dart
9 lines
415 B
Dart
library angular2.src.analysis.analyzer_plugin.tasks;
|
|
|
|
import 'package:analyzer/src/generated/error.dart';
|
|
import 'package:analyzer/task/model.dart';
|
|
|
|
/// The analysis errors associated with a target.
|
|
/// The value combines errors represented by multiple other results.
|
|
final CompositeResultDescriptor<List<AnalysisError>> HTML_ERRORS =
|
|
new CompositeResultDescriptor<List<AnalysisError>>('ANGULAR_HTML_ERRORS');
|