@@ -485,10 +485,10 @@ class FileState {
485485 /// The [FileSource] of the file with the [uri] .
486486 final FileSource source;
487487
488- /// The [WorkspacePackage ] that contains this file.
488+ /// The [WorkspacePackageImpl ] that contains this file.
489489 ///
490490 /// It might be `null` if the file is outside of the workspace.
491- final WorkspacePackage ? workspacePackage;
491+ final WorkspacePackageImpl ? workspacePackage;
492492
493493 /// The [FeatureSet] for this file.
494494 ///
@@ -1553,7 +1553,7 @@ class FileSystemState {
15531553 FeatureSet _getFeatureSet (
15541554 String path,
15551555 Uri uri,
1556- WorkspacePackage ? workspacePackage,
1556+ WorkspacePackageImpl ? workspacePackage,
15571557 AnalysisOptionsImpl analysisOptions,
15581558 ) {
15591559 var workspacePackageExperiments = workspacePackage? .enabledExperiments;
@@ -1574,7 +1574,7 @@ class FileSystemState {
15741574 Version _getLanguageVersion (
15751575 String path,
15761576 Uri uri,
1577- WorkspacePackage ? workspacePackage,
1577+ WorkspacePackageImpl ? workspacePackage,
15781578 AnalysisOptionsImpl analysisOptions,
15791579 ) {
15801580 var workspaceLanguageVersion = workspacePackage? .languageVersion;
@@ -1596,7 +1596,7 @@ class FileSystemState {
15961596 OperationPerformanceImpl ? performance,
15971597 }) {
15981598 FileSource uriSource = FileSource (resource, uri);
1599- WorkspacePackage ? workspacePackage = _workspace? .findPackageFor (path);
1599+ WorkspacePackageImpl ? workspacePackage = _workspace? .findPackageFor (path);
16001600 AnalysisOptionsImpl analysisOptions = _getAnalysisOptions (resource);
16011601 FeatureSet featureSet = _getFeatureSet (
16021602 path,
0 commit comments