* Iterate over only terminal fields (those that hold values).
()
| 199 | * Iterate over only terminal fields (those that hold values). |
| 200 | */ |
| 201 | *terminalFields(): Generator<TerminalField> { |
| 202 | for (const field of this.fields) { |
| 203 | if (field instanceof TerminalField) { |
| 204 | yield field; |
| 205 | } |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | /** |
| 210 | * Get all fields as an array. |
no outgoing calls
no test coverage detected