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

Unified Diff: compiler/java/com/google/dart/compiler/ast/DartNode.java

Issue 9479013: Remove backends. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: More clean up Created 8 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: compiler/java/com/google/dart/compiler/ast/DartNode.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartNode.java b/compiler/java/com/google/dart/compiler/ast/DartNode.java
index 8c30143c89b5c764112d110e66c2bee22df8d2f6..3761c1f303a8b57a9ced9103743bdfaa6285e383 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartNode.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartNode.java
@@ -18,7 +18,6 @@ import java.util.List;
public abstract class DartNode extends AbstractNode implements DartVisitable {
private DartNode parent;
- private boolean isInstrumentedNode;
public final String toSource() {
DefaultTextOutput out = new DefaultTextOutput(false);
@@ -152,12 +151,4 @@ public abstract class DartNode extends AbstractNode implements DartVisitable {
public String getObjectIdentifier(){
return super.toString();
}
-
- public boolean isInstrumentedNode() {
- return isInstrumentedNode;
- }
-
- public void setInstrumentedNode(boolean isInstrumentedNode) {
- this.isInstrumentedNode = isInstrumentedNode;
- }
}

Powered by Google App Engine
This is Rietveld 408576698