diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index a3b28e9..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "deps/DCD"] - path = deps/DCD - url = https://github.com/Hackerpilot/DCD.git diff --git a/deps/DCD b/deps/DCD deleted file mode 160000 index cbcc6fa..0000000 --- a/deps/DCD +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cbcc6faac3f820bb8e06ed132d82d13036e34d58 diff --git a/dub.json b/dub.json index bc1afc7..28d0d81 100644 --- a/dub.json +++ b/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": [ diff --git a/src/dlangide/tools/d/dcdinterface.d b/src/dlangide/tools/d/dcdinterface.d index 3b9c029..898c599 100644 --- a/src/dlangide/tools/d/dcdinterface.d +++ b/src/dlangide/tools/d/dcdinterface.d @@ -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