MCPcopy
hub / github.com/RaspberryPiFoundation/blockly / appendStatementInput

Method appendStatementInput

packages/blockly/core/block.ts:1693–1696  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 9

inputFromJsonMethod · 0.95
lists.tsFile · 0.80
procedures.tsFile · 0.80
logic.tsFile · 0.80
block_test.jsFile · 0.80
input_test.jsFile · 0.80
aria_test.jsFile · 0.80
unittest.jsFile · 0.80
blocks.jsFile · 0.80

Calls 1

appendInputMethod · 0.95

Tested by

no test coverage detected