(source, a, b)
| 31 | binding_source = [] |
| 32 | |
| 33 | def binding(source, a, b): |
| 34 | binding_source.append(source) |
| 35 | return a + b |
| 36 | |
| 37 | await browser.expose_binding("add", lambda source, a, b: binding(source, a, b)) |
| 38 |
no outgoing calls
no test coverage detected