(ast, retArr)
| 1013 | return this.astFunction(ast, retArr); |
| 1014 | } |
| 1015 | astFunctionExpression(ast, retArr) { |
| 1016 | if (this.isChildFunction(ast)) { |
| 1017 | return retArr; |
| 1018 | } |
| 1019 | return this.astFunction(ast, retArr); |
| 1020 | } |
| 1021 | isChildFunction(ast) { |
| 1022 | for (let i = 0; i < this.functions.length; i++) { |
| 1023 | if (this.functions[i] === ast) { |
no test coverage detected