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

Side by Side Diff: compiler/java/com/google/dart/compiler/resolver/ClassElementUnion.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.common.collect.ImmutableList; 7 import com.google.common.collect.ImmutableList;
8 import com.google.common.collect.Iterables; 8 import com.google.common.collect.Iterables;
9 import com.google.common.collect.Lists; 9 import com.google.common.collect.Lists;
10 import com.google.dart.compiler.ast.DartObsoleteMetadata; 10 import com.google.dart.compiler.ast.DartObsoleteMetadata;
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 for (InterfaceType type : types) { 186 for (InterfaceType type : types) {
187 typeMembers.add(type.getElement().getMembers()); 187 typeMembers.add(type.getElement().getMembers());
188 } 188 }
189 return Iterables.concat(typeMembers); 189 return Iterables.concat(typeMembers);
190 } 190 }
191 191
192 @Override 192 @Override
193 public List<ConstructorNodeElement> getConstructors() { 193 public List<ConstructorNodeElement> getConstructors() {
194 throw new UnsupportedOperationException(); 194 throw new UnsupportedOperationException();
195 } 195 }
196
197 @Override
198 public int getOpenBraceOffset() {
199 return -1;
200 }
201
202 @Override
203 public int getCloseBraceOffset() {
204 return -1;
205 }
196 } 206 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698