@@ -80,27 +80,27 @@ export class CEMCollection {
80
80
81
81
const CEM_COLLECTION_CACHE = new Map < string , CEMCollection > ( ) ;
82
82
83
- export function getCEMData ( project : tss . server . Project , projectBasePath : string ) : CEMCollection {
84
- const existingCollection = getCEMFromCache ( project ) ;
83
+ export function getCEMData ( projectBasePath : string ) : CEMCollection {
84
+ const existingCollection = getCEMFromCache ( projectBasePath ) ;
85
85
if ( existingCollection ) {
86
86
return existingCollection ;
87
87
}
88
88
89
89
const cemCollection = new CEMCollection ( projectBasePath ) ;
90
- setToCEMCache ( project , cemCollection ) ;
90
+ setToCEMCache ( projectBasePath , cemCollection ) ;
91
91
return cemCollection ;
92
92
}
93
93
94
- function getCEMFromCache ( project : tss . server . Project ) {
95
- return CEM_COLLECTION_CACHE . get ( project . getCurrentDirectory ( ) ) ;
94
+ function getCEMFromCache ( projectBasePath : string ) {
95
+ return CEM_COLLECTION_CACHE . get ( projectBasePath ) ;
96
96
}
97
97
98
98
function getCEMFromCacheByPath ( projectDirectory : string ) {
99
99
return CEM_COLLECTION_CACHE . get ( projectDirectory ) ;
100
100
}
101
101
102
- function setToCEMCache ( project : tss . server . Project , cemCollection : CEMCollection ) {
103
- CEM_COLLECTION_CACHE . set ( project . getCurrentDirectory ( ) , cemCollection ) ;
102
+ function setToCEMCache ( projectBasePath : string , cemCollection : CEMCollection ) {
103
+ CEM_COLLECTION_CACHE . set ( projectBasePath , cemCollection ) ;
104
104
}
105
105
106
106
export function refreshCEMData ( projectBasePath : string ) {
0 commit comments