* Appends a statement 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)
| 1691 | * @returns The input object created. |
| 1692 | */ |
| 1693 | appendStatementInput(name: string): Input { |
| 1694 | this.statementInputCount++; |
| 1695 | return this.appendInput(new StatementInput(name, this)); |
| 1696 | } |
| 1697 | |
| 1698 | /** |
| 1699 | * Appends a dummy input row. |
no test coverage detected