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

Unified Diff: compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java

Issue 11776037: Initial support for mixins in dartc. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Forgot MixinScope.java Created 7 years, 11 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 33332a930ef74bb596722870757c50d02146afe2..93c31a2b52a9be7bea3b83a61e800baa7486ee68 100644
--- a/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
+++ b/compiler/java/com/google/dart/compiler/resolver/DynamicElementImplementation.java
@@ -79,6 +79,11 @@ class DynamicElementImplementation extends AbstractNodeElement implements Dynami
public List<InterfaceType> getInterfaces() {
return Collections.<InterfaceType>emptyList();
}
+
+ @Override
+ public List<InterfaceType> getMixins() {
+ return Collections.<InterfaceType>emptyList();
+ }
@Override
public DynamicType getType() {

Powered by Google App Engine
This is Rietveld 408576698