Whether the guard tripped since the last `begin()`.
()
| 162 | |
| 163 | /// Whether the guard tripped since the last `begin()`. |
| 164 | pub fn overflowed() -> bool { |
| 165 | OVERFLOWED.with(|o| o.get()) |
| 166 | } |
| 167 | |
| 168 | /// Run one extraction under the guard. A walk that tripped the guard returns |
| 169 | /// a `defer:` error — the TS side's routine "take the wasm path" signal — |
no test coverage detected