* Change the value of the variable, considered as a boolean * @param newValue The new boolean to be set.
(newValue: boolean)
| 643 | * @param newValue The new boolean to be set. |
| 644 | */ |
| 645 | setBoolean(newValue: boolean) { |
| 646 | this._type = 'boolean'; |
| 647 | this._bool = !!newValue; |
| 648 | } |
| 649 | |
| 650 | /** |
| 651 | * Toggle the value of the variable, considered as a boolean. |
no outgoing calls
no test coverage detected