Chromium Code Reviews| Index: lib/compiler/implementation/tree/nodes.dart |
| diff --git a/lib/compiler/implementation/tree/nodes.dart b/lib/compiler/implementation/tree/nodes.dart |
| index f3d37ec5e0467ee81f3b57eaafd24c0b0318e886..b9a355a71a4c42833b603fcb5d2ef0ca321fb25c 100644 |
| --- a/lib/compiler/implementation/tree/nodes.dart |
| +++ b/lib/compiler/implementation/tree/nodes.dart |
| @@ -206,6 +206,7 @@ class ClassNode extends Node { |
| if (name !== null) name.accept(visitor); |
| if (superclass !== null) superclass.accept(visitor); |
| if (interfaces !== null) interfaces.accept(visitor); |
| + if (typeParameters !== null) typeParameters.accept(visitor); |
|
Roman
2012/08/21 14:36:37
could there be any reason we didn't visit type par
ahe
2012/08/21 14:45:27
Oversight. However, messick already have a CL in t
messick
2012/08/21 14:56:37
Please commit this CL after moving the new code to
Roman
2012/08/21 15:00:18
207 in my CL. Done.
|
| } |
| bool get isInterface() => beginToken.stringValue === 'interface'; |