| 151 | |
| 152 | function createCollectionNodeClass(type: string): CollectionNodeClass<any> { |
| 153 | let NodeClass = class extends CollectionNode<any> { |
| 154 | static readonly type = type; |
| 155 | }; |
| 156 | return NodeClass; |
nothing calls this directly
no outgoing calls
no test coverage detected