(name, params, body)
| 11584 | } |
| 11585 | |
| 11586 | function AstClassMethod(name, params, body) { |
| 11587 | this.name = name; |
| 11588 | this.params = params; |
| 11589 | this.body = body; |
| 11590 | } |
| 11591 | AstClassMethod.prototype.toString = function(){ |
| 11592 | var thisReplacement = replaceContext("this"); |
| 11593 | var paramNames = appendToLookupTable({}, this.params.getNames()); |
nothing calls this directly
no outgoing calls
no test coverage detected