* * @param {Object} ast * @param {Array} retArr * @return {String[]}
(ast, retArr)
| 584 | * @return {String[]} |
| 585 | */ |
| 586 | castValueToFloat(ast, retArr) { |
| 587 | this.pushState('casting-to-float'); |
| 588 | retArr.push('float('); |
| 589 | this.astGeneric(ast, retArr); |
| 590 | retArr.push(')'); |
| 591 | this.popState('casting-to-float'); |
| 592 | return retArr; |
| 593 | } |
| 594 | |
| 595 | /** |
| 596 | * @desc Parses the abstract syntax tree for *identifier* expression |
no test coverage detected