fix #400 - handle completion for auto bools
This commit is contained in:
parent
91d3085094
commit
cbcc6faac3
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
||||||
Subproject commit e9aae0594739d002009cd34dd3edeb38f1f0893b
|
Subproject commit b560c88da71c8a4b1389fc6a0a2e7c60de3f5274
|
4
dub.json
4
dub.json
|
@ -7,8 +7,8 @@
|
||||||
],
|
],
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dsymbol": "~>0.2.4",
|
"dsymbol": "~>0.2.5",
|
||||||
"libdparse": "~>0.7.1-beta.4",
|
"libdparse": "~>0.7.1-beta.6",
|
||||||
"msgpack-d": "~>1.0.0-beta.3"
|
"msgpack-d": "~>1.0.0-beta.3"
|
||||||
},
|
},
|
||||||
"versions": ["built_with_dub"],
|
"versions": ["built_with_dub"],
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
identifiers
|
||||||
|
alignof k
|
||||||
|
init k
|
||||||
|
mangleof k
|
||||||
|
max k
|
||||||
|
min k
|
||||||
|
sizeof k
|
||||||
|
stringof k
|
|
@ -0,0 +1 @@
|
||||||
|
auto b = true; b.
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -c18 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
Loading…
Reference in New Issue