* Appends a dummy input row. * * @param name Optional language-neutral identifier which may used to find * this input again. Should be unique to this block. * @returns The input object created.
(name = '')
| 1703 | * @returns The input object created. |
| 1704 | */ |
| 1705 | appendDummyInput(name = ''): Input { |
| 1706 | return this.appendInput(new DummyInput(name, this)); |
| 1707 | } |
| 1708 | |
| 1709 | /** |
| 1710 | * Appends an input that ends the row. |
no test coverage detected