Chromium Code Reviews| Index: lib/compiler/implementation/elements/elements.dart |
| diff --git a/lib/compiler/implementation/elements/elements.dart b/lib/compiler/implementation/elements/elements.dart |
| index 4e4c74d73c89f3cdec77ea935a97eaeac7ff11ed..a4a884e3cd7a8d34a6367384b10f8c8fd39b8d8d 100644 |
| --- a/lib/compiler/implementation/elements/elements.dart |
| +++ b/lib/compiler/implementation/elements/elements.dart |
| @@ -1511,6 +1511,8 @@ class TypeVariableElement extends Element { |
| String toString() => "${enclosingElement.toString()}.${name.slowToString()}"; |
| + Token position() => findMyName(enclosingElement.position()); |
|
ahe
2012/08/21 14:06:37
I think this should be:
Token position() => cache
Anton Muhin
2012/08/21 14:08:27
Fresh CL sent to you and Johnni.
On 2012/08/21 14
|
| + |
| TypeVariableElement cloneTo(Element enclosing, DiagnosticListener listener) { |
| TypeVariableElement result = |
| new TypeVariableElement(name, enclosing, cachedNode, type, bound); |