| Index: compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| diff --git a/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java b/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| index 3b7fb9c8a5a2e61aee30719b6474b40df5026ff5..9c1c903f7ff94744bcd78f45c273a81d72bfc103 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| @@ -5,7 +5,6 @@
|
| package com.google.dart.compiler.ast;
|
|
|
| import com.google.dart.compiler.resolver.Element;
|
| -import com.google.dart.compiler.resolver.NodeElement;
|
|
|
| /**
|
| * Represents a Dart property access expression (a.b).
|
| @@ -71,7 +70,7 @@ public class DartPropertyAccess extends DartExpression {
|
| }
|
|
|
| @Override
|
| - public NodeElement getElement() {
|
| + public Element getElement() {
|
| return name.getElement();
|
| }
|
|
|
|
|