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

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

Issue 9689080: Add ClassNodeElement and allow Analyzer to use cached unimplemented members (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
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/resolver/ClassElement.java » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/java/com/google/dart/compiler/ast/DartClass.java
diff --git a/compiler/java/com/google/dart/compiler/ast/DartClass.java b/compiler/java/com/google/dart/compiler/ast/DartClass.java
index 946ee549e3af450b68f6142526a06c8f444fe8a4..39e6a9c969b9fa7645af2e412896a94b2d8a242d 100644
--- a/compiler/java/com/google/dart/compiler/ast/DartClass.java
+++ b/compiler/java/com/google/dart/compiler/ast/DartClass.java
@@ -4,7 +4,7 @@
package com.google.dart.compiler.ast;
-import com.google.dart.compiler.resolver.ClassElement;
+import com.google.dart.compiler.resolver.ClassNodeElement;
import com.google.dart.compiler.resolver.Element;
import java.util.List;
@@ -14,7 +14,7 @@ import java.util.List;
*/
public class DartClass extends DartDeclaration<DartIdentifier> {
- private ClassElement element;
+ private ClassNodeElement element;
private DartTypeNode superclass;
@@ -146,7 +146,7 @@ public class DartClass extends DartDeclaration<DartIdentifier> {
}
@Override
- public ClassElement getElement() {
+ public ClassNodeElement getElement() {
return element;
}
@@ -160,7 +160,7 @@ public class DartClass extends DartDeclaration<DartIdentifier> {
@Override
public void setElement(Element element) {
- this.element = (ClassElement) element;
+ this.element = (ClassNodeElement) element;
}
public DartStringLiteral getNativeName() {
« no previous file with comments | « no previous file | compiler/java/com/google/dart/compiler/resolver/ClassElement.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698