(arg, options?)
| 2757 | } |
| 2758 | |
| 2759 | private createVariable(arg, options?): number { |
| 2760 | if (options) { |
| 2761 | return this.variableHandles.create(new ExtendedVariable(arg, options)); |
| 2762 | } |
| 2763 | else { |
| 2764 | return this.variableHandles.create(arg); |
| 2765 | } |
| 2766 | } |
| 2767 | |
| 2768 | private findOrCreateVariable(varObj: VariableObject): number { |
| 2769 | let id: number; |
no outgoing calls
no test coverage detected