(baseInterfaceName, body)
| 11299 | } |
| 11300 | |
| 11301 | function AstInlineClass(baseInterfaceName, body) { |
| 11302 | this.baseInterfaceName = baseInterfaceName; |
| 11303 | this.body = body; |
| 11304 | body.owner = this; |
| 11305 | } |
| 11306 | AstInlineClass.prototype.toString = function() { |
| 11307 | return "new (function() {\n" + this.body + "})"; |
| 11308 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected