* * @param {Object} ast * @param {Array} retArr * @return {String[]}
(ast, retArr)
| 569 | * @return {String[]} |
| 570 | */ |
| 571 | castValueToInteger(ast, retArr) { |
| 572 | this.pushState('casting-to-integer'); |
| 573 | retArr.push('int('); |
| 574 | this.astGeneric(ast, retArr); |
| 575 | retArr.push(')'); |
| 576 | this.popState('casting-to-integer'); |
| 577 | return retArr; |
| 578 | } |
| 579 | |
| 580 | /** |
| 581 | * |
no test coverage detected