Gets whether the variablesReference exists in this store
(variablesReference: number)
| 1669 | |
| 1670 | /** Gets whether the variablesReference exists in this store */ |
| 1671 | public hasVariable(variablesReference: number) { |
| 1672 | return !!this.vars.get(variablesReference); |
| 1673 | } |
| 1674 | |
| 1675 | /** Gets whether the memoryReference exists in this store */ |
| 1676 | public hasMemory(memoryReference: string) { |
no test coverage detected