mirror of
				https://github.com/We-Dont-Byte/Mind_Reader.git
				synced 2025-02-04 10:38:42 +00:00 
			
		
		
		
	createContextString:
Improve formatting somewhat
This commit is contained in:
		@@ -165,26 +165,17 @@ function createContextString(context: pl.LexNode[], line: number): string {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    let contextString: string = `Line ${line + 1}`; // 1 based
 | 
			
		||||
 | 
			
		||||
    // Print the current line
 | 
			
		||||
    if (context[0].token && context[0].token.attr) {
 | 
			
		||||
        let tokenTypeString: string = ` ${context[0].token.type.toString()}`;
 | 
			
		||||
        contextString += `:${tokenTypeString !== 'INDENT'?tokenTypeString:" "
 | 
			
		||||
        let tokenTypeString: string = `${context[0].token.type.toString()}`;
 | 
			
		||||
        contextString += `: ${tokenTypeString !== 'INDENT'?tokenTypeString:""
 | 
			
		||||
        } ${context[0].token.attr.toString()}`;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    for (let i: number = 1; i < context.length; i++) {
 | 
			
		||||
        const node: pl.LexNode = context[i];
 | 
			
		||||
        const inside: string = "in";
 | 
			
		||||
        if (node.label === 'root') {
 | 
			
		||||
            // root
 | 
			
		||||
            if (vscode.window.activeTextEditor?.document.uri) {
 | 
			
		||||
                contextString += ` ${inside} ${vscode.workspace.asRelativePath(vscode.window.activeTextEditor?.document.uri)}`;
 | 
			
		||||
            } else {
 | 
			
		||||
                contextString += ` ${inside} the Document`;
 | 
			
		||||
            }
 | 
			
		||||
            continue;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        // Node contains information relevant to the current line
 | 
			
		||||
        if (node.token && node.token.type !== pl.PylexSymbol.EMPTY &&
 | 
			
		||||
            node.token.type !== pl.PylexSymbol.INDENT) {
 | 
			
		||||
            contextString += ` ${inside} ${node.token.type.toString()}`;
 | 
			
		||||
@@ -192,6 +183,16 @@ function createContextString(context: pl.LexNode[], line: number): string {
 | 
			
		||||
                contextString += ` ${node.token.attr.toString()}`;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        // Node is the document root
 | 
			
		||||
        if (node.label === 'root') {
 | 
			
		||||
            // Append the name (relative path) of the document in the workspace
 | 
			
		||||
            if (vscode.window.activeTextEditor?.document.uri) {
 | 
			
		||||
                contextString += ` ${inside} ${vscode.workspace.asRelativePath(vscode.window.activeTextEditor?.document.uri)}`;
 | 
			
		||||
            } else {
 | 
			
		||||
                contextString += ` ${inside} the Document`;
 | 
			
		||||
            }
 | 
			
		||||
            continue;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return contextString;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user