* Removes `pointer` from the state. * * @param pointer The point to remove.
(pointer: ScriptPointer)
| 172 | * @param pointer The point to remove. |
| 173 | */ |
| 174 | pointerRemove(pointer: ScriptPointer) { |
| 175 | this.pointers &= ~(1 << pointer); |
| 176 | } |
| 177 | |
| 178 | pointerGet(pointer: ScriptPointer): boolean { |
| 179 | return (this.pointers & (1 << pointer)) != 0; |
no outgoing calls
no test coverage detected