Update DCD

This commit is contained in:
Grim Maple 2022-04-06 22:27:22 +03:00
parent b511e32ca3
commit 51728e70eb
2 changed files with 4 additions and 6 deletions

View File

@ -13,8 +13,8 @@
"dependencies": { "dependencies": {
"dlangui": { "path": "../dlangui"}, "dlangui": { "path": "../dlangui"},
"dsymbol": "~>0.4.8", "dsymbol": "~>0.11.2",
"dcd": "~>0.9.13" "dcd": "~>0.13.6"
}, },
"copyFiles-windows": [ "copyFiles-windows": [

View File

@ -238,7 +238,7 @@ class DCDInterface : Thread {
override void performRequest() { override void performRequest() {
AutocompleteResponse response = getDoc(request, *getModuleCache(_importPaths)); AutocompleteResponse response = getDoc(request, *getModuleCache(_importPaths));
result.docComments = response.docComments.dup; //result.docComments = response.docComments.dup; TODO_GRIM: Fix
result.result = DCDResult.SUCCESS; result.result = DCDResult.SUCCESS;
debug(DCD) Log.d("DCD doc comments:\n", result.docComments); debug(DCD) Log.d("DCD doc comments:\n", result.docComments);
@ -318,9 +318,7 @@ class DCDInterface : Thread {
result.output.length = response.completions.length; result.output.length = response.completions.length;
int i=0; int i=0;
foreach(s;response.completions) { foreach(s;response.completions) {
char type = 0; char type = s.kind;
if (i < response.completionKinds.length)
type = response.completionKinds[i];
result.output[i].kind = type; result.output[i].kind = type;
result.output[i].name = to!dstring(s.identifier); result.output[i].name = to!dstring(s.identifier);
i++; i++;