(name, params, body)
| 11867 | } |
| 11868 | |
| 11869 | function AstMethod(name, params, body) { |
| 11870 | this.name = name; |
| 11871 | this.params = params; |
| 11872 | this.body = body; |
| 11873 | } |
| 11874 | AstMethod.prototype.toString = function(){ |
| 11875 | var paramNames = appendToLookupTable({}, this.params.getNames()); |
| 11876 | var oldContext = replaceContext; |
nothing calls this directly
no outgoing calls
no test coverage detected