(force: boolean = false)
| 45 | } |
| 46 | |
| 47 | setBlockFocus(force: boolean = false) { |
| 48 | const ftype = globalStore.get(this.focusType); |
| 49 | if (!force && ftype == "node") { |
| 50 | return; |
| 51 | } |
| 52 | globalStore.set(this.focusType, "node"); |
| 53 | this.refocusNode(); |
| 54 | } |
| 55 | |
| 56 | waveAIFocusWithin(): boolean { |
| 57 | return waveAIHasFocusWithin(); |
nothing calls this directly
no test coverage detected