Home
last modified time | relevance | path

Searched refs:importPlugin (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/src/testRunner/unittests/tsserver/
DwebServer.ts32 ….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/
Dtypes.ts24 importPlugin?(root: string, moduleName: string): Promise<ModuleImportResult>; method
Dproject.ts272 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) {
DeditorServices.ts4081 if (!this.host.importPlugin && !this.host.require) {
4093 if (this.host.importPlugin) {
/third_party/typescript/src/webServer/
DwebServer.ts165importPlugin: async (initialDir: string, moduleName: string): Promise<ModuleImportResult> => {