| Index: compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| diff --git a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| index a59223fb126cbfa890b63aee1ab5de748a5634d2..6461b394558bcfb887a046ac4b709312484d902a 100644
|
| --- a/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| +++ b/compiler/javatests/com/google/dart/compiler/type/TypeAnalyzerCompilerTest.java
|
| @@ -5432,6 +5432,18 @@ public class TypeAnalyzerCompilerTest extends CompilerTestCase {
|
| assertClassMembers(superElements, "method A.foo");
|
| }
|
|
|
| + public void test_getOverridden_methodAbstract() throws Exception {
|
| + analyzeLibrary(
|
| + "// filler filler filler filler filler filler filler filler filler filler",
|
| + "class A {",
|
| + " foo();",
|
| + "}",
|
| + "");
|
| + DartMethodDefinition node = findNode(DartMethodDefinition.class, "foo();");
|
| + Set<Element> superElements = node.getElement().getOverridden();
|
| + assertTrue(superElements.isEmpty());
|
| + }
|
| +
|
| public void test_getOverridden_field_withGetterSetter() throws Exception {
|
| analyzeLibrary(
|
| "// filler filler filler filler filler filler filler filler filler filler",
|
|
|