当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript Files.uriToFilePath方法代码示例

本文整理汇总了TypeScript中vscode-languageserver.Files.uriToFilePath方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Files.uriToFilePath方法的具体用法?TypeScript Files.uriToFilePath怎么用?TypeScript Files.uriToFilePath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在vscode-languageserver.Files的用法示例。


在下文中一共展示了Files.uriToFilePath方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: if

		return new Promise<Diagnostic[]>((resolve, reject) => {

			let filename = Files.uriToFilePath(document.uri)
			let args = [ '--report=json', filename ];
			if (settings.standard ) {
				args.push( `--standard=${settings.standard}`)
			}
			args.push( filename );

			let options = {
				cwd: rootPath ? rootPath: path.dirname(filename),
				env: process.env
			};

			let result = "";
			let phpcs = cp.spawn( this.phpcsPath, args, options );

			phpcs.stderr.on("data", (buffer: Buffer) => {
				result += buffer.toString();
			});

			phpcs.stdout.on("data", (buffer: Buffer) => {
				result += buffer.toString();
			});

			phpcs.on("close", (code: string) => {
				try {
					result = result.trim();
					let match = null;

					// Determine whether we have an error and report it otherwise send back the diagnostics.
					if (match = result.match(/^ERROR:\s?(.*)/i)) {
						let error = match[1].trim();
						if (match = error.match(/^the \"(.*)\" coding standard is not installed\./)) {
							throw { message: `The "${match[1]}" coding standard set in your configuration is not installed. Please review your configuration an try again.` };
						}
						throw { message: error };
					} else if ( match = result.match(/^FATAL\s?ERROR:\s?(.*)/i)) {
						let error = match[1].trim();
						if (match = error.match(/^Uncaught exception '.*' with message '(.*)'/)) {
							throw { message: match[1] };
						}
						throw { message: error };
					}

					let diagnostics: Diagnostic[] = [];
					let report = JSON.parse(result);
					for (var filename in report.files) {
						let file: PhpcsReportFile = report.files[filename];
						file.messages.forEach(message => {
							diagnostics.push(makeDiagnostic(document, message));
						});
					}
					resolve(diagnostics);
				}
				catch (e) {
					reject(e);
				}
			});
		});
开发者ID:mizunashi-mana,项目名称:vscode-phpcs,代码行数:60,代码来源:linter.ts

示例2:

Client.connection.onFoldingRanges((params: lsp.FoldingRangeRequestParam): lsp.FoldingRange[] =>
    {
        Client.log('Client.connection.onFoldingRanges');

        let filePath = lsp.Files.uriToFilePath(params.textDocument.uri);
        Client.log('   path: ' + filePath);

        return undefined;
    });
开发者ID:legatoproject,项目名称:legato-af,代码行数:9,代码来源:languageServer.ts

示例3: getMessage

function getMessage(err, document) {
	let result = null;
	if (typeof err.message === 'string') {
		result = err.message.replace(/\r?\n/g, ' ');
	} else {
		result = `An unknown error occured while validating file: ${Files.uriToFilePath(document.uri)}`;
	}

	return result;
}
开发者ID:mrmlnc,项目名称:vscode-puglint,代码行数:10,代码来源:server.ts

示例4: validate

function validate(document) {
	const content = document.getText();
	const uri = document.uri;
	const url = Files.uriToFilePath(uri);

	if (Object.keys(editorSettings.config).length === 0) {
		// Update settings from a configuration file only if their updates
		if (configWatcherStatus) {
			linterSettings = configResolver.load(null, path.dirname(url));
			configWatcherStatus = false;
		}
	} else {
		linterSettings = editorSettings.config;
	}

	if (!linterSettings) {
		linterSettings = {};
	}

	// ---> Maybe there's another way?
	const extendPath = linterSettings.extends;
	if (extendPath && path.basename(extendPath) === extendPath) {
		linterSettings.extends = `./node_modules/pug-lint-config-${linterSettings.extends}/index.js`;
	}
	// <---

	linter.configure(linterSettings);

	const diagnostics = [];
	const report = linter.checkString(content, url);
	if (report.length > 0) {
		report.forEach((problem) => {
			diagnostics.push(makeDiagnostic(problem));
		});
	}

	connection.sendDiagnostics({ uri, diagnostics });
}
开发者ID:mrmlnc,项目名称:vscode-puglint,代码行数:38,代码来源:server.ts

示例5:

 (rootFolder: lsp.WorkspaceFolder): string =>
 {
     return lsp.Files.uriToFilePath(rootFolder.uri);
 }),
开发者ID:legatoproject,项目名称:legato-af,代码行数:4,代码来源:lspClient.ts


注:本文中的vscode-languageserver.Files.uriToFilePath方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。