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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlAttributeNode.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/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})

Powered by Google App Engine
This is Rietveld 408576698