(start, end)
| 38 | * @param {TemplateNode | null} end |
| 39 | */ |
| 40 | export function assign_nodes(start, end) { |
| 41 | var effect = /** @type {Effect} */ (active_effect); |
| 42 | if (effect.nodes === null) { |
| 43 | effect.nodes = { start, end, a: null, t: null }; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * @param {string} content |
no outgoing calls
no test coverage detected