(id)
| 467 | } |
| 468 | |
| 469 | function filterFromFilterId(id) { |
| 470 | switch (id) { |
| 471 | case "full-tree": |
| 472 | return (type, kind) => true; |
| 473 | case "js-funs": |
| 474 | return (type, kind) => type !== 'CODE'; |
| 475 | case "js-exclude-bc": |
| 476 | return (type, kind) => |
| 477 | type !== 'CODE' || kind !== "BytecodeHandler"; |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | function createIndentNode(indent) { |
| 482 | let div = document.createElement("div"); |
no outgoing calls
no test coverage detected
searching dependent graphs…