* * @param {Object} ast * @param {Array} retArr * @return {String[]}
(ast, retArr)
| 543 | * @return {String[]} |
| 544 | */ |
| 545 | castLiteralToInteger(ast, retArr) { |
| 546 | this.pushState('casting-to-integer'); |
| 547 | this.astGeneric(ast, retArr); |
| 548 | this.popState('casting-to-integer'); |
| 549 | return retArr; |
| 550 | } |
| 551 | |
| 552 | /** |
| 553 | * |
no test coverage detected