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}) |