(name: NodeName, value: KwargValue)
| 12 | protected _value: KwargValue; |
| 13 | |
| 14 | constructor(name: NodeName, value: KwargValue) { |
| 15 | super(); |
| 16 | this.name.set(name); |
| 17 | this._value = value; |
| 18 | } |
| 19 | |
| 20 | override toAst() { |
| 21 | const name = this.name.toString(); |