(name, params, body)
| 11324 | } |
| 11325 | |
| 11326 | function AstFunction(name, params, body) { |
| 11327 | this.name = name; |
| 11328 | this.params = params; |
| 11329 | this.body = body; |
| 11330 | } |
| 11331 | AstFunction.prototype.toString = function() { |
| 11332 | var oldContext = replaceContext; |
| 11333 | // saving "this." and parameters |
nothing calls this directly
no outgoing calls
no test coverage detected