(size)
| 194 | } |
| 195 | |
| 196 | setSize(size) { |
| 197 | Deno.core.opSync("op_window_set_inner_size", [this.#rid, size]); |
| 198 | } |
| 199 | |
| 200 | setMaxSize({ width, height }) { |
| 201 | Deno.core.opSync("op_window_set_max_inner_size", [this.#rid, width, height]); |
nothing calls this directly
no outgoing calls
no test coverage detected