-
Notifications
You must be signed in to change notification settings - Fork 241
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
wip: use json-rpc for local workspace context #5425
base: feature/q-lsp
Are you sure you want to change the base?
Conversation
|
Qodana Community for JVM7 new problems were found
💡 Qodana analysis was run in the pull request mode: only the changed files were checked Contact Qodana teamContact us at [email protected]
|
...ains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt
Fixed
Show fixed
Hide fixed
...ains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt
Fixed
Show fixed
Hide fixed
@@ -324,3 +347,193 @@ | |||
private val LOG = getLogger<AmazonQServerInstance>() | |||
} | |||
} | |||
|
|||
|
|||
class EncoderServer2(private val encoderServer: EncoderServer, private val commandLine: GeneralCommandLine, private val project: Project, private val cs: CoroutineScope) : Disposable { |
Check warning
Code scanning / QDJVMC
Constructor parameter is never used as a property Warning
@@ -324,3 +347,193 @@ | |||
private val LOG = getLogger<AmazonQServerInstance>() | |||
} | |||
} | |||
|
|||
|
|||
class EncoderServer2(private val encoderServer: EncoderServer, private val commandLine: GeneralCommandLine, private val project: Project, private val cs: CoroutineScope) : Disposable { |
Check warning
Code scanning / QDJVMC
Constructor parameter is never used as a property Warning
|
||
val initializeResult = try { | ||
withTimeout(5.seconds) { | ||
languageServer.initialize(createInitializeParams()).await() |
Check warning
Code scanning / QDJVMC
Usage of redundant or deprecated syntax or deprecated symbols Warning
class EncoderServer(val project: Project) : Disposable { | ||
private val cachePath = Paths.get( | ||
class EncoderServer(val project: Project, private val cs: CoroutineScope) : Disposable { | ||
val cachePath = Paths.get( |
Check notice
Code scanning / QDJVMC
Function or property has platform type Note
Types of changes
Description
Checklist
License
I confirm that my contribution is made under the terms of the Apache 2.0 license.