(name)
| 308 | } |
| 309 | |
| 310 | function resetSandbox(name) { |
| 311 | if (!sandboxes.hasOwnProperty(name)) return |
| 312 | let frame = sandboxes[name].frame |
| 313 | frame.parentNode.removeChild(frame) |
| 314 | delete sandboxes[name] |
| 315 | } |
| 316 | |
| 317 | function placeFrame(frame, snippet) { |
| 318 | let wrap = snippet.previousSibling, bot |
no outgoing calls
no test coverage detected