(actions: Iterable<string>)
| 130 | return this.updateStore('actions', (actions: Set<string>) => actions.delete(action)); |
| 131 | } |
| 132 | setActions(actions: Iterable<string>) { |
| 133 | return this.updateStore((store: CursorStore) => store.set('actions', Set<string>(actions))); |
| 134 | } |
| 135 | mergeActions(actions: Set<string>) { |
| 136 | return this.updateStore('actions', (oldActions: Set<string>) => oldActions.union(actions)); |
| 137 | } |
nothing calls this directly
no test coverage detected