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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlTagNode.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/XmlTagNode.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlTagNode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlTagNode.java
index 1959a1023d354de89e81f64e6fb783088eea49c0..77e88786f2bc85ef63c132df63e1df3e1b0aad92 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlTagNode.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlTagNode.java
@@ -28,7 +28,6 @@ import java.util.List;
* @coverage dart.engine.html
*/
public class XmlTagNode extends XmlNode {
-
/**
* Constant representing empty list of attributes.
*/
@@ -265,6 +264,15 @@ public class XmlTagNode extends XmlNode {
}
/**
+ * Return the expressions that are embedded in the tag's content.
+ *
+ * @return the expressions that are embedded in the tag's content
+ */
+ public EmbeddedExpression[] getExpressions() {
+ return EmbeddedExpression.EMPTY_ARRAY;
+ }
+
+ /**
* Answer the ending {@link TokenType#GT} or {@link TokenType#SLASH_GT} token.
*
* @return the token (not {@code null})

Powered by Google App Engine
This is Rietveld 408576698