(node: TestText, text: string)
| 129 | } |
| 130 | |
| 131 | function setText(node: TestText, text: string): void { |
| 132 | logNodeOp({ |
| 133 | type: NodeOpTypes.SET_TEXT, |
| 134 | targetNode: node, |
| 135 | text, |
| 136 | }) |
| 137 | node.text = text |
| 138 | } |
| 139 | |
| 140 | function insert( |
| 141 | child: TestNode, |
nothing calls this directly
no test coverage detected