| 260 | * Collection Node which is copied on write. |
| 261 | */ |
| 262 | export class ElementNode<T> extends BaseNode<T> { |
| 263 | nodeType = 8; // COMMENT_NODE (we'd use ELEMENT_NODE but React DevTools will fail to get its dimensions) |
| 264 | node: CollectionNode<T> | null; |
| 265 | isMutated = true; |
nothing calls this directly
no outgoing calls
no test coverage detected