File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
pkg/analyzer/lib/src/dart/micro Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -447,10 +447,13 @@ class FileResolver {
447447 /// partially resynthesized data, and so prepare for loading linked summaries
448448 /// from bytes, which will be done by [getErrors2] . It is OK for it to
449449 /// spend some more time on this.
450- Future <void > linkLibraries2 ({required String path}) async {
450+ Future <void > linkLibraries2 ({
451+ required String path,
452+ OperationPerformanceImpl ? performance,
453+ }) async {
451454 _throwIfNotAbsoluteNormalizedPath (path);
452455
453- var performance = OperationPerformanceImpl ('<unused>' );
456+ performance ?? = OperationPerformanceImpl ('<unused>' );
454457
455458 var fileContext = getFileContext (path: path, performance: performance);
456459 var file = fileContext.file;
You can’t perform that action at this time.
0 commit comments