(node: Node)
| 2410 | } |
| 2411 | |
| 2412 | function setMarker(node: Node) { |
| 2413 | (node as any)[CREATED_INITIALLY_MARKER] = true; |
| 2414 | } |
| 2415 | |
| 2416 | function hasMarker(node: Node): boolean { |
| 2417 | return !!(node as any)[CREATED_INITIALLY_MARKER]; |
no outgoing calls
no test coverage detected
searching dependent graphs…