forked from external/vscode-xml
		
	Adds the last used query to the output
This commit is contained in:
		
							parent
							
								
									af117fe58c
								
							
						
					
					
						commit
						112d99c30c
					
				
					 1 changed files with 2 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -34,6 +34,8 @@ export function evaluateXPath(editor: TextEditor, edit: TextEditorEdit): void {
 | 
			
		|||
		if (resultChannel === null) resultChannel = window.createOutputChannel('XPath Evaluation Results');
 | 
			
		||||
		resultChannel.clear();
 | 
			
		||||
		
 | 
			
		||||
		resultChannel.appendLine('Last query: ' + query + '\n');
 | 
			
		||||
		
 | 
			
		||||
		nodes.forEach((node) => {
 | 
			
		||||
			resultChannel.appendLine(`${node.localName}: ${node.firstChild.data}`);
 | 
			
		||||
		});
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue