(initStatement, condition, step)
| 11517 | } |
| 11518 | |
| 11519 | function AstForExpression(initStatement, condition, step) { |
| 11520 | this.initStatement = initStatement; |
| 11521 | this.condition = condition; |
| 11522 | this.step = step; |
| 11523 | } |
| 11524 | AstForExpression.prototype.toString = function() { |
| 11525 | return "(" + this.initStatement + "; " + this.condition + "; " + this.step + ")"; |
| 11526 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected