mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-23 02:07:52 +00:00
feat(vscode-ide-companion): improve CLI path detection and error handling
- Move determineNodePathForCli function to dedicated cliPathDetector.ts file - Enhance error handling with specific guidance for permission issues - Add detailed error messages for different failure scenarios - Improve logging for debugging CLI path detection issues This change improves the reliability of CLI path detection by providing better error messages and handling edge cases more gracefully.
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2025 Qwen Team
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* CSS Selector Compatibility Test
|
||||
*/
|
||||
|
||||
/* Test 1: Basic first-child and last-child selectors */
|
||||
.test-container:first-child::after {
|
||||
content: "FIRST";
|
||||
color: red;
|
||||
}
|
||||
|
||||
.test-container:last-child::after {
|
||||
content: "LAST";
|
||||
color: blue;
|
||||
}
|
||||
|
||||
.test-container:first-child:last-child::after {
|
||||
content: "ONLY";
|
||||
color: green;
|
||||
}
|
||||
|
||||
/* Test 2: Simple sibling selectors */
|
||||
.test-container + .test-container::before {
|
||||
content: "SIBLING";
|
||||
color: orange;
|
||||
}
|
||||
|
||||
/* Test 3: Not selector */
|
||||
.test-container:not(.special)::after {
|
||||
content: "NOT SPECIAL";
|
||||
color: purple;
|
||||
}
|
||||
Reference in New Issue
Block a user