File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
lib/src/debugging/metadata Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ class MetadataProvider {
227
227
}
228
228
229
229
final deletedModules = < String > {};
230
- final invalidatedModules = < String > {};
230
+ // final invalidatedModules = <String>{};
231
231
for (final module in _moduleToLibraries.keys) {
232
232
final deletedModule = ! modules.containsKey (module);
233
233
final invalidatedModule = reloadedModules.contains (module);
@@ -247,9 +247,9 @@ class MetadataProvider {
247
247
}
248
248
// The libraries that were removed from the program or those that we
249
249
// invalidated but were never added again.
250
- final deletedLibraries = invalidatedLibraries.where (
251
- (library) => ! _libraries.contains (library),
252
- );
250
+ // final deletedLibraries = invalidatedLibraries.where(
251
+ // (library) => !_libraries.contains(library),
252
+ // );
253
253
}
254
254
255
255
void _addMetadata (ModuleMetadata metadata) {
Original file line number Diff line number Diff line change @@ -412,7 +412,7 @@ class TestContext {
412
412
'remote-debugging-port=$debugPort ' ,
413
413
if (enableDebugExtension)
414
414
'--load-extension=debug_extension/prod_build' ,
415
- // if (headless) '--headless',
415
+ if (headless) '--headless' ,
416
416
],
417
417
},
418
418
});
You can’t perform that action at this time.
0 commit comments