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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/RecursiveXmlVisitor.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/RecursiveXmlVisitor.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/RecursiveXmlVisitor.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/RecursiveXmlVisitor.java
index d433cb59643cf21a283ed8d39f5e0777a19ace2b..2757afa7b295366562c3b407545d0cd8f4c4731c 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/RecursiveXmlVisitor.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/visitor/RecursiveXmlVisitor.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;
@@ -30,6 +31,11 @@ import com.google.dart.engine.html.ast.XmlTagNode;
* @coverage dart.engine.html
*/
public class RecursiveXmlVisitor<R> implements XmlVisitor<R> {
+ @Override
+ public R visitHtmlScriptTagNode(HtmlScriptTagNode node) {
+ node.visitChildren(this);
+ return null;
+ }
@Override
public R visitHtmlUnit(HtmlUnit node) {

Powered by Google App Engine
This is Rietveld 408576698