* Returns a generator that provides every field on the block. * * @returns A generator that can be used to iterate the fields on the block.
()
| 1150 | * @returns A generator that can be used to iterate the fields on the block. |
| 1151 | */ |
| 1152 | *getFields(): Generator<Field, undefined, void> { |
| 1153 | for (const input of this.inputList) { |
| 1154 | for (const field of input.fieldRow) { |
| 1155 | yield field; |
| 1156 | } |
| 1157 | } |
| 1158 | } |
| 1159 | |
| 1160 | /** |
| 1161 | * Return all variables referenced by this block. |
no outgoing calls
no test coverage detected