mirror of
https://github.com/apple/pkl.git
synced 2026-01-13 15:13:38 +01:00
[PR #369] [CLOSED] LSP support #526
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/apple/pkl/pull/369
Author: @stackoverflow
Created: 3/27/2024
Status: ❌ Closed
Base:
main← Head:lsp-setup📝 Commits (10+)
bc4ef1aadd csteb77bbcfinished CST builder30ffc50add parent to CST nodes42de244start builder3df1810basic diagnostics are working6c89a0cresolve some todos in CstBuilder8c1d989remove java CSTb05f2c6Switch to adapter pattern (#453)b75f1d8small refactor1fab6destart type and name resolution📊 Changes
60 files changed (+10870 additions, -3 deletions)
View changed files
📝
buildSrc/src/main/kotlin/pklFatJar.gradle.kts(+7 -0)📝
gradle/libs.versions.toml(+2 -0)📝
pkl-cli/gradle.lockfile(+3 -0)📝
pkl-cli/pkl-cli.gradle.kts(+1 -0)📝
pkl-cli/src/main/kotlin/org/pkl/cli/Main.kt(+2 -1)➕
pkl-cli/src/main/kotlin/org/pkl/cli/commands/LspCommand.kt(+39 -0)📝
pkl-core/src/main/java/org/pkl/core/ast/builder/AstBuilder.java(+2 -2)➕
pkl-lsp/gradle.lockfile(+38 -0)➕
pkl-lsp/pkl-lsp.gradle.kts(+27 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/Builder.kt(+129 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/CacheManager.kt(+55 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/ClientLogger.kt(+47 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/ErrorMessages.kt(+37 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/LSPUtil.kt(+113 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/NodeVisitor.kt(+26 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/PklBaseModule.kt(+344 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/PklLSP.kt(+33 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/PklLSPServer.kt(+110 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/PklTextDocumentService.kt(+80 -0)➕
pkl-lsp/src/main/kotlin/org/pkl/lsp/PklVisitor.kt(+422 -0)...and 40 more files
📄 Description
This is an alpha version with limited capabilities.
Implemented:
.) for now🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.