MCPcopy Create free account
hub / github.com/corbanbrook/dsp.js / AstForExpression

Function AstForExpression

examples/js/processing.js:11519–11523  ·  view source on GitHub ↗
(initStatement, condition, step)

Source from the content-addressed store, hash-verified

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 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected