Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support change signature refactoring #2967

Merged
merged 13 commits into from Mar 17, 2023
18 changes: 16 additions & 2 deletions .vscode/launch.json
Expand Up @@ -7,14 +7,21 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"debugWebviews": true,
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"env": {
"DEBUG_VSCODE_JAVA":"true"
},
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/dist/**/*.js" ],
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: watch",
"rendererDebugOptions": {
"webRoot": "${workspaceFolder}/dist/changeSignature",
"urlFilter": "*redhat.java*",
"sourceMaps": true,
"pauseForSourceMap": true,
}
},
{
"name": "Launch Extension - Remote Server",
Expand All @@ -36,6 +43,7 @@
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"debugWebviews": true,
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
Expand All @@ -44,7 +52,13 @@
"JDTLS_CLIENT_PORT": "5036",
"DEBUG_VSCODE_JAVA":"true"
},
"preLaunchTask": "npm: watch"
"preLaunchTask": "npm: watch",
"rendererDebugOptions": {
"webRoot": "${workspaceFolder}/dist/**",
"urlFilter": "*redhat.java*",
"sourceMaps": true,
"pauseForSourceMap": true,
}
},
{
"name": "Launch Extension - SyntaxLS Client",
Expand Down