(name)
| 11823 | }; |
| 11824 | |
| 11825 | function AstInterface(name) { |
| 11826 | this.name = name; |
| 11827 | } |
| 11828 | AstInterface.prototype.toString = function() { |
| 11829 | return "function " + this.name + "() { throw 'This is an interface'; }\n" + |
| 11830 | "processing." + this.name + " = " + this.name + ";"; |
nothing calls this directly
no outgoing calls
no test coverage detected