(initStatement, container)
| 11526 | }; |
| 11527 | |
| 11528 | function AstForInExpression(initStatement, container) { |
| 11529 | this.initStatement = initStatement; |
| 11530 | this.container = container; |
| 11531 | } |
| 11532 | AstForInExpression.prototype.toString = function() { |
| 11533 | var init = this.initStatement.toString(); |
| 11534 | if(init.indexOf("=") >= 0) { // can be without var declaration |
nothing calls this directly
no outgoing calls
no test coverage detected