| 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.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 Loading... |
| 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 } |
| OLD | NEW |