( host ResolutionHost, options *core.CompilerOptions, typingsLocation string, projectName string, )
| 166 | } |
| 167 | |
| 168 | func NewResolver( |
| 169 | host ResolutionHost, |
| 170 | options *core.CompilerOptions, |
| 171 | typingsLocation string, |
| 172 | projectName string, |
| 173 | ) *Resolver { |
| 174 | return &Resolver{ |
| 175 | host: host, |
| 176 | caches: newCaches(host.GetCurrentDirectory(), host.FS().UseCaseSensitiveFileNames(), options), |
| 177 | compilerOptions: options, |
| 178 | typingsLocation: typingsLocation, |
| 179 | projectName: projectName, |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | func NewResolverWithOptions( |
| 184 | host ResolutionHost, |