(fn, ctxMethod)
| 4530 | ctxClass.addInitializer(() => log.push("c4")); |
| 4531 | }; |
| 4532 | const methodDec1 = (fn, ctxMethod) => { |
| 4533 | log.push("m2"); |
| 4534 | if (!assertEq(() => typeof ctxMethod.addInitializer, "function")) return; |
| 4535 | ctxMethod.addInitializer(() => log.push("m5")); |
| 4536 | ctxMethod.addInitializer(() => log.push("m6")); |
| 4537 | }; |
| 4538 | const methodDec2 = (fn, ctxMethod) => { |
| 4539 | log.push("m1"); |
| 4540 | if (!assertEq(() => typeof ctxMethod.addInitializer, "function")) return; |
nothing calls this directly
no test coverage detected
searching dependent graphs…