mirror of https://github.com/buggins/dlangide.git
Bump DCD version for tha sweet UFCS support.
Also, removed DCD submodule bacuse it's a dub dependency anyway. Closes #397
This commit is contained in:
parent
8c072de2af
commit
72ea89b6ec
|
@ -1,3 +0,0 @@
|
|||
[submodule "deps/DCD"]
|
||||
path = deps/DCD
|
||||
url = https://github.com/Hackerpilot/DCD.git
|
|
@ -1 +0,0 @@
|
|||
Subproject commit cbcc6faac3f820bb8e06ed132d82d13036e34d58
|
5
dub.json
5
dub.json
|
@ -12,9 +12,8 @@
|
|||
"stringImportPaths": ["views"],
|
||||
|
||||
"dependencies": {
|
||||
"dlangui": "~>0.9.187",
|
||||
"dsymbol": "~>0.11.2",
|
||||
"dcd": "~>0.13.6"
|
||||
"dlangui": "~>0.9.188",
|
||||
"dcd": "~>0.15.0-beta.1"
|
||||
},
|
||||
|
||||
"copyFiles-windows": [
|
||||
|
|
|
@ -19,11 +19,6 @@ import dcd.server.autocomplete;
|
|||
import dcd.common.messages;
|
||||
import dsymbol.modulecache;
|
||||
|
||||
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
||||
//alias SharedASTAllocator = CAllocatorImpl!(Mallocator);
|
||||
//alias SharedASTAllocator = CSharedAllocatorImpl!(Mallocator);
|
||||
alias SharedASTAllocator = ASTAllocator;
|
||||
|
||||
enum DCDResult : int {
|
||||
SUCCESS,
|
||||
NO_RESULT,
|
||||
|
@ -92,11 +87,9 @@ class DCDTask {
|
|||
}
|
||||
|
||||
class ModuleCacheAccessor {
|
||||
import dsymbol.modulecache;
|
||||
//protected ASTAllocator _astAllocator;
|
||||
protected ModuleCache _moduleCache;
|
||||
this(in string[] importPaths) {
|
||||
_moduleCache = ModuleCache(new SharedASTAllocator);
|
||||
_moduleCache = ModuleCache();
|
||||
_moduleCache.addImportPaths(importPaths);
|
||||
}
|
||||
protected ModuleCache * getModuleCache(in string[] importPaths) {
|
||||
|
@ -109,8 +102,6 @@ class ModuleCacheAccessor {
|
|||
class DCDInterface : Thread {
|
||||
|
||||
import dsymbol.modulecache;
|
||||
//protected ASTAllocator _astAllocator;
|
||||
//protected ModuleCache * _moduleCache;
|
||||
ModuleCacheAccessor _moduleCache;
|
||||
protected BlockingQueue!DCDTask _queue;
|
||||
|
||||
|
@ -362,6 +353,7 @@ int completionTypePriority(char t) {
|
|||
return 3;
|
||||
case 'k': // - keyword, built-in version, scope statement
|
||||
return 20;
|
||||
case 'F':
|
||||
case 'f': // - function or method
|
||||
return 2;
|
||||
case 'g': // - enum name
|
||||
|
|
Loading…
Reference in New Issue