Searched refs:importPlugin (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/src/testRunner/unittests/tsserver/ |
D | webServer.ts | 32 ….LogLevel | undefined, options?: Partial<server.StartSessionOptions>, importPlugin?: server.Server… 41 webSys.importPlugin = importPlugin; 164 …const importPlugin = async (_root: string, _moduleName: string): Promise<server.ModuleImportResult… constant 176 … const { session } = setup(/*logLevel*/ undefined, { globalPlugins: ["plugin-a"] }, importPlugin); 204 …const importPlugin = async (_root: string, moduleName: string): Promise<server.ModuleImportResult>… constant 218 …ssion } = setup(/*logLevel*/ undefined, { globalPlugins: ["plugin-a", "plugin-b"] }, importPlugin); 244 …const importPlugin = async (_root: string, _moduleName: string): Promise<server.ModuleImportResult… constant 252 …sion, getMessages } = setup(/*logLevel*/ undefined, { globalPlugins: ["plugin-a"] }, importPlugin); 273 …const importPlugin = async (_root: string, _moduleName: string): Promise<server.ModuleImportResult… constant 290 … const { session } = setup(/*logLevel*/ undefined, { globalPlugins: ["plugin-a"] }, importPlugin); [all …]
|
/third_party/typescript/src/server/ |
D | types.ts | 24 importPlugin?(root: string, moduleName: string): Promise<ModuleImportResult>; method
|
D | project.ts | 272 Debug.assertIsDefined(host.importPlugin); 277 result = await host.importPlugin(resolvedPath, moduleName); 1688 if (!host.require && !host.importPlugin) { 1731 Debug.assertIsDefined(this.projectService.host.importPlugin); 2597 if (!host.require && !host.importPlugin) {
|
D | editorServices.ts | 4081 if (!this.host.importPlugin && !this.host.require) { 4093 if (this.host.importPlugin) {
|
/third_party/typescript/src/webServer/ |
D | webServer.ts | 165 … importPlugin: async (initialDir: string, moduleName: string): Promise<ModuleImportResult> => {
|