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

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

Issue 16702002: New analyzer_experimental snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 6 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'; 8 import 'error.dart';
9 import 'instrumentation.dart'; 9 import 'instrumentation.dart';
10 import 'element.dart' show HtmlElementImpl; 10 import 'element.dart' show HtmlElementImpl;
11 import 'engine.dart' show AnalysisEngine;
11 /** 12 /**
12 * Instances of the class {@code Token} represent a token that was scanned from the input. Each 13 * Instances of the class {@code Token} represent a token that was scanned from the input. Each
13 * token knows which token follows it, acting as the head of a linked list of to kens. 14 * token knows which token follows it, acting as the head of a linked list of to kens.
14 * @coverage dart.engine.html 15 * @coverage dart.engine.html
15 */ 16 */
16 class Token { 17 class Token {
17 18
18 /** 19 /**
19 * The offset from the beginning of the file to the first character in the tok en. 20 * The offset from the beginning of the file to the first character in the tok en.
20 */ 21 */
(...skipping 1597 matching lines...) Expand 10 before | Expand all | Expand 10 after
1618 */ 1619 */
1619 void set element(HtmlElementImpl element2) { 1620 void set element(HtmlElementImpl element2) {
1620 this._element = element2; 1621 this._element = element2;
1621 } 1622 }
1622 void visitChildren(XmlVisitor<Object> visitor) { 1623 void visitChildren(XmlVisitor<Object> visitor) {
1623 for (XmlTagNode node in _tagNodes) { 1624 for (XmlTagNode node in _tagNodes) {
1624 node.accept(visitor); 1625 node.accept(visitor);
1625 } 1626 }
1626 } 1627 }
1627 } 1628 }
OLDNEW
« no previous file with comments | « pkg/analyzer_experimental/lib/src/generated/error.dart ('k') | pkg/analyzer_experimental/lib/src/generated/resolver.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698