| 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 c19e722544e8d8eaa577a2d2d936be78a7e989d8..7a73da1b0d16365c1f1e4cc9b7d63b2156a1d5d1 100644
|
| --- a/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| +++ b/compiler/java/com/google/dart/compiler/ast/DartPropertyAccess.java
|
| @@ -5,6 +5,7 @@
|
| package com.google.dart.compiler.ast;
|
|
|
| import com.google.dart.compiler.resolver.Element;
|
| +import com.google.dart.compiler.resolver.NodeElement;
|
| import com.google.dart.compiler.type.Type;
|
|
|
| /**
|
| @@ -48,7 +49,7 @@ public class DartPropertyAccess extends DartExpression {
|
| }
|
|
|
| @Override
|
| - public Element getElement() {
|
| + public NodeElement getElement() {
|
| return name.getElement();
|
| }
|
|
|
|
|