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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.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
Index: compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
diff --git a/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java b/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
index f0d6aee0f30691a2bced183aaee67b0aa5d76883..5946f69d21a30e2f5cc4a16471fefa45c51a89cd 100644
--- a/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
+++ b/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
@@ -276,4 +276,8 @@ class DynamicElementImplementation extends AbstractNodeElement implements Dynami
public Type getConstantType() {
return null;
}
+ @Override
+ public List<Element> getUnimplementedMembers() {
+ return null;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698