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

Function AstVarDefinition

examples/js/processing.js:11447–11451  ·  view source on GitHub ↗
(name, value, isDefault)

Source from the content-addressed store, hash-verified

11445 };
11446
11447 function AstVarDefinition(name, value, isDefault) {
11448 this.name = name;
11449 this.value = value;
11450 this.isDefault = isDefault;
11451 }
11452 AstVarDefinition.prototype.toString = function() {
11453 return this.name + ' = ' + this.value;
11454 };

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected