| Index: compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
|
| diff --git a/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java b/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
|
| index 7bbbd3dc6bdbcc6a8016acddecc58e3b2d7c55f5..af249f204a4410222f6a75c4f2e63aebe935ecf4 100644
|
| --- a/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
|
| +++ b/compiler/java/com/google/dart/compiler/resolver/SyntheticDefaultConstructorElement.java
|
| @@ -3,6 +3,7 @@
|
| // BSD-style license that can be found in the LICENSE file.
|
| package com.google.dart.compiler.resolver;
|
|
|
| +import com.google.common.collect.ImmutableSet;
|
| import com.google.dart.compiler.ast.DartMethodDefinition;
|
| import com.google.dart.compiler.type.FunctionType;
|
| import com.google.dart.compiler.type.Type;
|
| @@ -10,6 +11,7 @@ import com.google.dart.compiler.type.Types;
|
|
|
| import java.util.Collections;
|
| import java.util.List;
|
| +import java.util.Set;
|
|
|
| /**
|
| * {@link ConstructorElement} for implicit default constructor.
|
| @@ -122,4 +124,9 @@ public class SyntheticDefaultConstructorElement extends AbstractNodeElement
|
| public Element lookupLocalElement(String name) {
|
| return null;
|
| }
|
| +
|
| + @Override
|
| + public Set<Element> getOverridden() {
|
| + return ImmutableSet.of();
|
| + }
|
| }
|
|
|