(expr, transforms)
| 11414 | } |
| 11415 | |
| 11416 | function AstExpression(expr, transforms) { |
| 11417 | this.expr = expr; |
| 11418 | this.transforms = transforms; |
| 11419 | } |
| 11420 | AstExpression.prototype.toString = function() { |
| 11421 | var transforms = this.transforms; |
| 11422 | var expr = replaceContextInVars(this.expr); |
nothing calls this directly
no outgoing calls
no test coverage detected