(options?: MarkAsTouchedOptions)
| 281 | } |
| 282 | |
| 283 | markAsTouchedInternal(options?: MarkAsTouchedOptions): void { |
| 284 | if (this.structure.isOrphaned()) { |
| 285 | return; |
| 286 | } |
| 287 | if (this.validationState.shouldSkipValidation()) { |
| 288 | return; |
| 289 | } |
| 290 | this.nodeState.markAsTouched(); |
| 291 | if (options?.skipDescendants) { |
| 292 | return; |
| 293 | } |
| 294 | for (const child of this.structure.children()) { |
| 295 | child.markAsTouchedInternal(); |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | /** |
| 300 | * Marks this specific field as dirty. |
no test coverage detected