* Change the value of the variable, considered as a string * @param newValue The new string to be set
(newValue: string)
| 604 | * @param newValue The new string to be set |
| 605 | */ |
| 606 | setString(newValue: string): void { |
| 607 | this._type = 'string'; |
| 608 | this._str = '' + newValue; |
| 609 | } |
| 610 | |
| 611 | /** |
| 612 | * Get the value of the variable, as a number if it's one, |
no outgoing calls
no test coverage detected