* Adds file timestamps. * @param {ReadonlyMap<string, FileTimestamp>} map timestamps * @param {boolean=} immutable if 'map' is immutable and FileSystemInfo can keep referencing it * @returns {void}
(map, immutable)
| 1616 | * @returns {void} |
| 1617 | */ |
| 1618 | addFileTimestamps(map, immutable) { |
| 1619 | this._fileTimestamps.addAll(map, immutable); |
| 1620 | this._cachedDeprecatedFileTimestamps = undefined; |
| 1621 | } |
| 1622 | |
| 1623 | /** |
| 1624 | * Adds context timestamps. |
no test coverage detected