(name, body)
| 11558 | "throw 'This is an interface'; };"; |
| 11559 | }; |
| 11560 | function AstInnerClass(name, body) { |
| 11561 | this.name = name; |
| 11562 | this.body = body; |
| 11563 | body.owner = this; |
| 11564 | } |
| 11565 | AstInnerClass.prototype.toString = function() { |
| 11566 | return "this." + this.name + " = function " + this.name + "() {\n" + |
| 11567 | this.body + "};"; |
nothing calls this directly
no outgoing calls
no test coverage detected