produceCompilationCache method

Future<void> produceCompilationCache(
  1. List<CompilationCacheParams> scripts
)

Requests backend to produce compilation cache for the specified scripts. scripts are appended to the list of scripts for which the cache would be produced. The list may be reset during page navigation. When script with a matching URL is encountered, the cache is optionally produced upon backend discretion, based on internal heuristics. See also: Page.compilationCacheProduced.

Implementation

Future<void> produceCompilationCache(
    List<CompilationCacheParams> scripts) async {
  await _client.send('Page.produceCompilationCache', {
    'scripts': [...scripts],
  });
}