(field: InputFormatField)
| 158 | } |
| 159 | |
| 160 | function readInputFormatFieldName(field: InputFormatField): string | undefined { |
| 161 | return typeof field.name === 'string' ? field.name.trim() : undefined |
| 162 | } |
| 163 | |
| 164 | function collectExecutionControlFieldNames(fieldNames: Iterable<string | undefined>): string[] { |
| 165 | const reservedFieldNames = new Set<string>() |
no outgoing calls
no test coverage detected