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

Unified Diff: mojo/public/dart/third_party/analyzer/lib/task/html.dart

Issue 1346773002: Stop running pub get at gclient sync time and fix build bugs (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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: mojo/public/dart/third_party/analyzer/lib/task/html.dart
diff --git a/mojo/public/dart/third_party/analyzer/lib/task/html.dart b/mojo/public/dart/third_party/analyzer/lib/task/html.dart
new file mode 100644
index 0000000000000000000000000000000000000000..abfbdf71c9498034339b2c2ac1f8175abe134bef
--- /dev/null
+++ b/mojo/public/dart/third_party/analyzer/lib/task/html.dart
@@ -0,0 +1,29 @@
+// 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 analyzer.task.html;
+
+import 'package:analyzer/src/generated/error.dart';
+import 'package:analyzer/src/generated/source.dart';
+import 'package:analyzer/task/model.dart';
+import 'package:html/dom.dart';
+
+/**
+ * The result of parsing an HTML file.
+ */
+final ResultDescriptor<Document> HTML_DOCUMENT =
+ new ResultDescriptor<Document>('HTML_DOCUMENT', null);
+
+/**
+ * The analysis errors associated with a [Source] representing an HTML file.
+ */
+final ListResultDescriptor<AnalysisError> HTML_ERRORS =
+ new ListResultDescriptor<AnalysisError>(
+ 'HTML_ERRORS', AnalysisError.NO_ERRORS);
+
+/**
+ * The sources of the Dart libraries referenced by an HTML file.
+ */
+final ListResultDescriptor<Source> REFERENCED_LIBRARIES =
+ new ListResultDescriptor<Source>('REFERENCED_LIBRARIES', Source.EMPTY_LIST);
« no previous file with comments | « mojo/public/dart/third_party/analyzer/lib/task/general.dart ('k') | mojo/public/dart/third_party/analyzer/lib/task/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698