Chromium Code Reviews| Index: compiler/java/com/google/dart/compiler/resolver/ConstructorNodeElement.java |
| diff --git a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java b/compiler/java/com/google/dart/compiler/resolver/ConstructorNodeElement.java |
| similarity index 52% |
| copy from compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java |
| copy to compiler/java/com/google/dart/compiler/resolver/ConstructorNodeElement.java |
| index c34dbb5d9af935ecd480bb4a4bd07ac0ef816796..597b99e68221da8d23c3fbd7daaaaf7f6e977cb4 100644 |
| --- a/compiler/java/com/google/dart/compiler/resolver/ClassNodeElement.java |
| +++ b/compiler/java/com/google/dart/compiler/resolver/ConstructorNodeElement.java |
| @@ -3,11 +3,10 @@ |
| // BSD-style license that can be found in the LICENSE file. |
| package com.google.dart.compiler.resolver; |
| -import java.util.List; |
| +import com.google.dart.compiler.ast.DartNode; |
| -public interface ClassNodeElement extends ClassElement, NodeElement { |
| - /** |
| - * Sets {@link Element}s which as not implemented in this {@link ClassElement}. |
| - */ |
| - void setUnimplementedMembers(List<Element> members); |
| +/** |
| + * Extension of {@link MethodElement} which is base of {@link DartNode}. |
|
zundel
2012/03/14 14:57:27
(Did you mean {@link ConstructorElement} ? this se
scheglov
2012/03/14 15:20:51
Done.
|
| + */ |
| +public interface ConstructorNodeElement extends ConstructorElement, MethodNodeElement { |
| } |