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


TypeScript jsonc-parser.findNodeAtLocation函数代码示例

本文整理汇总了TypeScript中jsonc-parser.findNodeAtLocation函数的典型用法代码示例。如果您正苦于以下问题:TypeScript findNodeAtLocation函数的具体用法?TypeScript findNodeAtLocation怎么用?TypeScript findNodeAtLocation使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1:

			child => {
				const pathNode = jsonc.findNodeAtLocation(child, ['path']);
				if (!this.isPathValue(pathNode)) {
					return undefined;
				}

				return new vscode.DocumentLink(this.getRange(document, pathNode),
					basename(pathNode.value).match('.json$')
						? this.getFileTarget(document, pathNode)
						: this.getFolderTarget(document, pathNode));
			});
开发者ID:PKRoma,项目名称:vscode,代码行数:11,代码来源:tsconfig.ts

示例2: getExendsLink

	private getExendsLink(document: vscode.TextDocument, root: jsonc.Node): vscode.DocumentLink | undefined {
		const extendsNode = jsonc.findNodeAtLocation(root, ['extends']);
		if (!this.isPathValue(extendsNode)) {
			return undefined;
		}

		return new vscode.DocumentLink(
			this.getRange(document, extendsNode),
			basename(extendsNode.value).match('.json$')
				? this.getFileTarget(document, extendsNode)
				: vscode.Uri.file(join(dirname(document.uri.fsPath), extendsNode!.value + '.json')));
	}
开发者ID:DonJayamanne,项目名称:vscode,代码行数:12,代码来源:tsconfig.ts

示例3: getReferencesLinks

	private getReferencesLinks(document: vscode.TextDocument, root: jsonc.Node) {
		return mapChildren(
			jsonc.findNodeAtLocation(root, ['references']),
			child => {
				const pathNode = jsonc.findNodeAtLocation(child, ['path']);
				if (!this.isPathValue(pathNode)) {
					return undefined;
				}

				return new vscode.DocumentLink(this.getRange(document, pathNode),
					basename(pathNode.value).match('.json$')
						? this.getFileTarget(document, pathNode)
						: this.getFolderTarget(document, pathNode));
			});
	}
开发者ID:PKRoma,项目名称:vscode,代码行数:15,代码来源:tsconfig.ts

示例4: getExtendsLink

	private getExtendsLink(document: vscode.TextDocument, root: jsonc.Node): vscode.DocumentLink | undefined {
		const extendsNode = jsonc.findNodeAtLocation(root, ['extends']);
		if (!this.isPathValue(extendsNode)) {
			return undefined;
		}

		if (extendsNode.value.startsWith('.')) {
			return new vscode.DocumentLink(
				this.getRange(document, extendsNode),
				vscode.Uri.file(join(dirname(document.uri.fsPath), extendsNode.value + (extendsNode.value.endsWith('.json') ? '' : '.json')))
			);
		}

		const workspaceFolderPath = vscode.workspace.getWorkspaceFolder(document.uri)!.uri.fsPath;
		return new vscode.DocumentLink(
			this.getRange(document, extendsNode),
			vscode.Uri.file(join(workspaceFolderPath, 'node_modules', extendsNode.value + (extendsNode.value.endsWith('.json') ? '' : '.json')))
		);
	}
开发者ID:PKRoma,项目名称:vscode,代码行数:19,代码来源:tsconfig.ts

示例5: getFilesLinks

	private getFilesLinks(document: vscode.TextDocument, root: jsonc.Node) {
		return mapChildren(
			jsonc.findNodeAtLocation(root, ['files']),
			child => this.pathNodeToLink(document, child));
	}
开发者ID:PKRoma,项目名称:vscode,代码行数:5,代码来源:tsconfig.ts


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