| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package com.google.dart.compiler.resolver; | 5 package com.google.dart.compiler.resolver; |
| 6 | 6 |
| 7 import com.google.dart.compiler.type.InterfaceType; | 7 import com.google.dart.compiler.type.InterfaceType; |
| 8 import com.google.dart.compiler.type.Type; | 8 import com.google.dart.compiler.type.Type; |
| 9 | 9 |
| 10 import java.util.List; | 10 import java.util.List; |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 boolean isAbstract(); | 50 boolean isAbstract(); |
| 51 | 51 |
| 52 ConstructorElement lookupConstructor(String name); | 52 ConstructorElement lookupConstructor(String name); |
| 53 | 53 |
| 54 /** | 54 /** |
| 55 * @return the {@link Element}s which are declared in superclass or interfaces
, but not | 55 * @return the {@link Element}s which are declared in superclass or interfaces
, but not |
| 56 * implemented in this class. May be <code>null</code> if this {@link
ClassElement} is | 56 * implemented in this class. May be <code>null</code> if this {@link
ClassElement} is |
| 57 * {@link ClassNodeElement} and was not analyzed yet. | 57 * {@link ClassNodeElement} and was not analyzed yet. |
| 58 */ | 58 */ |
| 59 List<Element> getUnimplementedMembers(); | 59 List<Element> getUnimplementedMembers(); |
| 60 |
| 61 int getOpenBraceOffset(); |
| 62 |
| 63 int getCloseBraceOffset(); |
| 60 } | 64 } |
| OLD | NEW |