(options?: MarkAsTouchedOptions)
| 271 | } |
| 272 | |
| 273 | markAsTouched(options?: MarkAsTouchedOptions): void { |
| 274 | if (this.structure.isOrphaned()) { |
| 275 | return; |
| 276 | } |
| 277 | untracked(() => { |
| 278 | this.markAsTouchedInternal(options); |
| 279 | this.flushSync(); |
| 280 | }); |
| 281 | } |
| 282 | |
| 283 | markAsTouchedInternal(options?: MarkAsTouchedOptions): void { |
| 284 | if (this.structure.isOrphaned()) { |
nothing calls this directly
no test coverage detected