Skip to content

Commit 79a6660

Browse files
committed
Resolve analysis errors
1 parent d197947 commit 79a6660

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

dwds/lib/src/debugging/metadata/provider.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ class MetadataProvider {
227227
}
228228

229229
final deletedModules = <String>{};
230-
final invalidatedModules = <String>{};
230+
// final invalidatedModules = <String>{};
231231
for (final module in _moduleToLibraries.keys) {
232232
final deletedModule = !modules.containsKey(module);
233233
final invalidatedModule = reloadedModules.contains(module);
@@ -247,9 +247,9 @@ class MetadataProvider {
247247
}
248248
// The libraries that were removed from the program or those that we
249249
// 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+
// );
253253
}
254254

255255
void _addMetadata(ModuleMetadata metadata) {

dwds/test/fixtures/context.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ class TestContext {
412412
'remote-debugging-port=$debugPort',
413413
if (enableDebugExtension)
414414
'--load-extension=debug_extension/prod_build',
415-
// if (headless) '--headless',
415+
if (headless) '--headless',
416416
],
417417
},
418418
});

0 commit comments

Comments
 (0)