| Index: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.java
|
| diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.java
|
| index 53db84946dad3a92cecb2bf3d2ac847907cf1cfb..f2e4ffa685c72b71d3659cbe616b403972b33977 100644
|
| --- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.java
|
| +++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.java
|
| @@ -67,6 +67,15 @@ public class XmlAttributeNode extends XmlNode {
|
| }
|
|
|
| /**
|
| + * Return the expressions that are embedded in the attribute's value.
|
| + *
|
| + * @return the expressions that are embedded in the attribute's value
|
| + */
|
| + public EmbeddedExpression[] getExpressions() {
|
| + return EmbeddedExpression.EMPTY_ARRAY;
|
| + }
|
| +
|
| + /**
|
| * Answer the attribute name. This may be a zero length token if the attribute is badly formed.
|
| *
|
| * @return the name (not {@code null})
|
|
|