We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcb0323 + e3fadb5 commit 7578d84Copy full SHA for 7578d84
test-sourcekit-lsp/test-sourcekit-lsp.py
@@ -1,7 +1,6 @@
1
# Canary test for sourcekit-lsp, covering interaction with swiftpm and toolchain
2
# language services.
3
4
-# REQUIRES: rdar147100271
5
# REQUIRES: have-sourcekit-lsp
6
7
# Make a sandbox dir.
@@ -134,7 +133,7 @@ def main():
134
133
"rootPath": args.package,
135
"capabilities": {},
136
"initializationOptions": {
137
- "listenToUnitEvents": False,
+ "experimentalFeatures": ["synchronize-request"]
138
},
139
140
)
@@ -151,7 +150,7 @@ def main():
151
150
152
153
154
- connection.send_request("workspace/_pollIndex", {})
+ connection.send_request("workspace/_synchronize", {"index": True})
155
foo_definition_response = connection.send_request(
156
"textDocument/definition",
157
{
0 commit comments