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

Unified Diff: editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlExpression.java

Issue 131233009: New analyzer snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 months 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/XmlExpression.java
diff --git a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlExpression.java b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlExpression.java
index 6150478fda6d438dd0cfc6a76a25983a449fa6da..fed330d25db6123c383336eb884c642c17b9c789 100644
--- a/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlExpression.java
+++ b/editor/tools/plugins/com.google.dart.engine/src/com/google/dart/engine/html/ast/XmlExpression.java
@@ -14,7 +14,6 @@
package com.google.dart.engine.html.ast;
import com.google.dart.engine.element.Element;
-import com.google.dart.engine.utilities.source.SourceRange;
/**
* Instances of the class {@code XmlExpression} represent an abstract expression embedded into
@@ -26,11 +25,13 @@ public abstract class XmlExpression {
*/
public static final class Reference {
public final Element element;
- public final SourceRange range;
+ public final int offset;
+ public final int length;
- public Reference(Element element, SourceRange range) {
+ public Reference(Element element, int offset, int length) {
this.element = element;
- this.range = range;
+ this.offset = offset;
+ this.length = length;
}
}

Powered by Google App Engine
This is Rietveld 408576698