| 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..f73279b0b854b137fd36c40e95f613240f1ec8bb 100644
|
| --- a/lib/compiler/implementation/tree/nodes.dart
|
| +++ b/lib/compiler/implementation/tree/nodes.dart
|
| @@ -204,6 +204,7 @@ class ClassNode extends Node {
|
|
|
| visitChildren(Visitor visitor) {
|
| if (name !== null) name.accept(visitor);
|
| + if (typeParameters !== null) typeParameters.accept(visitor);
|
| if (superclass !== null) superclass.accept(visitor);
|
| if (interfaces !== null) interfaces.accept(visitor);
|
| }
|
|
|