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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java

Issue 82903007: Improved HTML parsing (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Clean-up Created 7 years, 1 month 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: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java
index 4a37b3f7ff7b0c265ce1f6dcc633330f69d3bb78..a3eb55192cbfb2f7f87b75e23afd2040f5939e2c 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/SimpleXmlVisitor.java
@@ -13,6 +13,7 @@
*/
package com.google.dart.engine.html.ast.visitor;
+import com.google.dart.engine.html.ast.HtmlScriptTagNode;
import com.google.dart.engine.html.ast.HtmlUnit;
import com.google.dart.engine.html.ast.XmlAttributeNode;
import com.google.dart.engine.html.ast.XmlTagNode;
@@ -24,6 +25,10 @@ import com.google.dart.engine.html.ast.XmlTagNode;
* structure) and that only need to visit a small number of node types.
*/
public class SimpleXmlVisitor<R> implements XmlVisitor<R> {
+ @Override
+ public R visitHtmlScriptTagNode(HtmlScriptTagNode node) {
+ return null;
+ }
@Override
public R visitHtmlUnit(HtmlUnit htmlUnit) {

Powered by Google App Engine
This is Rietveld 408576698