* Adds context timestamps. * @param {ReadonlyMap<string, ContextTimestamp>} map timestamps * @param {boolean=} immutable if 'map' is immutable and FileSystemInfo can keep referencing it * @returns {void}
(map, immutable)
| 1627 | * @returns {void} |
| 1628 | */ |
| 1629 | addContextTimestamps(map, immutable) { |
| 1630 | this._contextTimestamps.addAll(map, immutable); |
| 1631 | this._cachedDeprecatedContextTimestamps = undefined; |
| 1632 | } |
| 1633 | |
| 1634 | /** |
| 1635 | * Gets file timestamp. |
no test coverage detected