(name, value, isDefault)
| 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 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected