fix #493 - regression, crash when trying to get completion for selective import
This commit is contained in:
parent
6765ca1294
commit
ddd7c3801f
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
||||||
Subproject commit b8c7663045268dd4660a16fc4f76d8f7196f6952
|
Subproject commit 77c4a1140a38828cc10da718519815635873bfae
|
2
dub.json
2
dub.json
|
@ -7,7 +7,7 @@
|
||||||
],
|
],
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dsymbol": "~>0.3.8",
|
"dsymbol": "~>0.3.9",
|
||||||
"libdparse": "~>0.8.6",
|
"libdparse": "~>0.8.6",
|
||||||
"msgpack-d": "~>1.0.0-beta.3",
|
"msgpack-d": "~>1.0.0-beta.3",
|
||||||
"stdx-allocator": "~>2.77.2"
|
"stdx-allocator": "~>2.77.2"
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
identifiers
|
||||||
|
Point s
|
|
@ -0,0 +1 @@
|
||||||
|
import point:;
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -c13 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
Loading…
Reference in New Issue