| 1 | import { encode as k } from 'sourcemap-codec'; |
| 2 | class p { |
| 3 | constructor(t) { |
| 4 | this.bits = t instanceof p ? t.bits.slice() : []; |
| 5 | } |
| 6 | add(t) { |
| 7 | this.bits[t >> 5] |= 1 << (t & 31); |
| 8 | } |
| 9 | has(t) { |
| 10 | return !!(this.bits[t >> 5] & (1 << (t & 31))); |
| 11 | } |
| 12 | } |
| 13 | class g { |
| 14 | constructor(t, e, n) { |
| 15 | ((this.start = t), |
nothing calls this directly
no outgoing calls
no test coverage detected