| Index: compiler/java/com/google/dart/compiler/type/InterfaceTypeUnionImplementation.java
|
| diff --git a/compiler/java/com/google/dart/compiler/type/InterfaceTypeUnionImplementation.java b/compiler/java/com/google/dart/compiler/type/InterfaceTypeUnionImplementation.java
|
| index b17a4d3a5173614f652cace73df87b04e27e7a53..50f0006d7b94c2f651674756a77fb32fe29deb3c 100644
|
| --- a/compiler/java/com/google/dart/compiler/type/InterfaceTypeUnionImplementation.java
|
| +++ b/compiler/java/com/google/dart/compiler/type/InterfaceTypeUnionImplementation.java
|
| @@ -5,6 +5,7 @@
|
| package com.google.dart.compiler.type;
|
|
|
| import com.google.common.collect.ImmutableList;
|
| +import com.google.common.collect.Lists;
|
| import com.google.dart.compiler.resolver.ClassElement;
|
| import com.google.dart.compiler.resolver.ClassElementUnion;
|
|
|
| @@ -105,8 +106,8 @@ class InterfaceTypeUnionImplementation implements InterfaceTypeUnion {
|
| }
|
|
|
| @Override
|
| - public Member lookupSubTypeMember(String name) {
|
| - return null;
|
| + public List<Member> lookupSubTypeMembers(String name) {
|
| + return Lists.newArrayList();
|
| }
|
|
|
| public List<InterfaceType> getTypes() {
|
|
|