(argument, misc)
| 11898 | } |
| 11899 | |
| 11900 | function AstForStatement(argument, misc) { |
| 11901 | this.argument = argument; |
| 11902 | this.misc = misc; |
| 11903 | } |
| 11904 | AstForStatement.prototype.toString = function() { |
| 11905 | return this.misc.prefix + this.argument.toString(); |
| 11906 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected