* Appends a value input row. * * @param name Language-neutral identifier which may used to find this input * again. Should be unique to this block. * @returns The input object created.
(name: string)
| 1680 | * @returns The input object created. |
| 1681 | */ |
| 1682 | appendValueInput(name: string): Input { |
| 1683 | return this.appendInput(new ValueInput(name, this)); |
| 1684 | } |
| 1685 | |
| 1686 | /** |
| 1687 | * Appends a statement input row. |
no test coverage detected