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

Side by Side Diff: pkg/analyzer_experimental/lib/src/generated/html.dart

Issue 23496027: Fix analyzer_experimental hints: remove unused imports. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // This code was auto-generated, is not intended to be edited, and is subject to 1 // This code was auto-generated, is not intended to be edited, and is subject to
2 // significant change. Please see the README file for more information. 2 // significant change. Please see the README file for more information.
3 library engine.html; 3 library engine.html;
4 import 'dart:collection'; 4 import 'dart:collection';
5 import 'java_core.dart'; 5 import 'java_core.dart';
6 import 'java_engine.dart'; 6 import 'java_engine.dart';
7 import 'source.dart'; 7 import 'source.dart';
8 import 'error.dart';
9 import 'instrumentation.dart';
10 import 'element.dart' show HtmlElementImpl; 8 import 'element.dart' show HtmlElementImpl;
11 import 'engine.dart' show AnalysisEngine; 9 import 'engine.dart' show AnalysisEngine;
12 /** 10 /**
13 * Instances of the class `Token` represent a token that was scanned from the in put. Each 11 * Instances of the class `Token` represent a token that was scanned from the in put. Each
14 * token knows which token follows it, acting as the head of a linked list of to kens. 12 * token knows which token follows it, acting as the head of a linked list of to kens.
15 * 13 *
16 * @coverage dart.engine.html 14 * @coverage dart.engine.html
17 */ 15 */
18 class Token { 16 class Token {
19 17
(...skipping 1734 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 */ 1752 */
1755 void set element(HtmlElementImpl element2) { 1753 void set element(HtmlElementImpl element2) {
1756 this._element = element2; 1754 this._element = element2;
1757 } 1755 }
1758 void visitChildren(XmlVisitor<Object> visitor) { 1756 void visitChildren(XmlVisitor<Object> visitor) {
1759 for (XmlTagNode node in _tagNodes) { 1757 for (XmlTagNode node in _tagNodes) {
1760 node.accept(visitor); 1758 node.accept(visitor);
1761 } 1759 }
1762 } 1760 }
1763 } 1761 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698