(ast)
| 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) { |
| 1024 | return true; |
| 1025 | } |
| 1026 | } |
| 1027 | return false; |
| 1028 | } |
| 1029 | astReturnStatement(ast, retArr) { |
| 1030 | return retArr; |
| 1031 | } |
no outgoing calls
no test coverage detected