Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: compiler/java/com/google/dart/compiler/resolver/ClassElement.java

Issue 10996036: Quick fixes 'Create class' and 'Create constructor' (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698