-
Notifications
You must be signed in to change notification settings - Fork 284
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
feat: Add Semantic modifier to parameter labels #1542
base: main
Are you sure you want to change the base?
Conversation
GrayJack
commented
Jul 1, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, @GrayJack 🙏🏽
Sources/LanguageServerProtocol/SupportTypes/SemanticTokenModifiers.swift
Outdated
Show resolved
Hide resolved
@@ -905,7 +905,7 @@ final class SemanticTokensTests: XCTestCase { | |||
expected: [ | |||
TokenSpec(marker: "1️⃣", length: 4, kind: .keyword), | |||
TokenSpec(marker: "2️⃣", length: 3, kind: .identifier), | |||
TokenSpec(marker: "3️⃣", length: 3, kind: .function), | |||
TokenSpec(marker: "3️⃣", length: 3, kind: .function, modifiers: .argumentLabel), | |||
TokenSpec(marker: "4️⃣", length: 3, kind: .struct, modifiers: .defaultLibrary), | |||
TokenSpec(marker: "5️⃣", length: 3, kind: .function), | |||
TokenSpec(marker: "6️⃣", length: 3, kind: .function), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn’t this token also have a .argumentLabel
modifier?
Also in case you see the test as being skipped on your machine, you need to set SOURCEKIT_TOOLCHAIN_PATH
to a Swift Development Snapshot as described here: https://github.com/swiftlang/sourcekit-lsp/blob/main/CONTRIBUTING.md#selecting-a-toolchain