(key: string, value: any)
| 97 | return this.state[key]; |
| 98 | } |
| 99 | setState(key: string, value: any) { |
| 100 | if (value === undefined) { |
| 101 | delete this.state[key]; |
| 102 | } else { |
| 103 | this.state[key] = value; |
| 104 | } |
| 105 | this.saveRegistry(); |
| 106 | } |
| 107 | |
| 108 | stateChanged() { |
| 109 | if ( |
no test coverage detected