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

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

Issue 9633009: Use Element instead of Symbol. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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/DartParameter.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartParameter.java b/compiler/java/com/google/dart/compiler/ast/DartParameter.java
index d180ec9fc12db77c97b8dc9d86b0c8e71ed7d3f0..a6f5c39b2e228f322ea3796b32e414e754e75a8b 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartParameter.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartParameter.java
@@ -5,8 +5,7 @@
package com.google.dart.compiler.ast;
import com.google.common.base.Preconditions;
-import com.google.dart.compiler.common.HasSymbol;
-import com.google.dart.compiler.common.Symbol;
+import com.google.dart.compiler.resolver.Element;
import com.google.dart.compiler.resolver.VariableElement;
import java.util.List;
@@ -14,9 +13,9 @@ import java.util.List;
/**
* Represents a Dart function parameter.
*/
-public class DartParameter extends DartDeclaration<DartExpression> implements HasSymbol {
+public class DartParameter extends DartDeclaration<DartExpression> {
- private VariableElement symbol;
+ private VariableElement element;
private DartTypeNode typeNode;
private final NodeList<DartParameter> functionParameters;
private DartExpression defaultExpr;
@@ -28,8 +27,8 @@ public class DartParameter extends DartDeclaration<DartExpression> implements Ha
DartExpression defaultExpr,
Modifiers modifiers) {
super(name);
- Preconditions.checkArgument((name instanceof DartIdentifier)
- || (name instanceof DartPropertyAccess), "name");
+ Preconditions.checkArgument(name instanceof DartIdentifier
+ || name instanceof DartPropertyAccess, "name");
this.typeNode = becomeParentOf(typeNode);
if (functionParameters != null) {
this.functionParameters = NodeList.create(this);
@@ -48,14 +47,14 @@ public class DartParameter extends DartDeclaration<DartExpression> implements Ha
public String getParameterName() {
// TODO(fabiomfv) remove instanceof (http://b/issue?id=4729144)
if (getName() instanceof DartIdentifier) {
- return ((DartIdentifier)getName()).getTargetName();
+ return ((DartIdentifier)getName()).getName();
}
return ((DartPropertyAccess)getName()).getPropertyName();
}
@Override
- public VariableElement getSymbol() {
- return symbol;
+ public VariableElement getElement() {
+ return element;
}
public List<DartParameter> getFunctionParameters() {
@@ -78,8 +77,8 @@ public class DartParameter extends DartDeclaration<DartExpression> implements Ha
}
@Override
- public void setSymbol(Symbol symbol) {
- this.symbol = (VariableElement) symbol;
+ public void setElement(Element element) {
+ this.element = (VariableElement) element;
}
public void setTypeNode(DartTypeNode typeNode) {

Powered by Google App Engine
This is Rietveld 408576698