fix #481 - No dot completion on `char`
This commit is contained in:
parent
723a3ee113
commit
735c0e0a3d
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
||||||
Subproject commit 52625b8612e503f8ae1d481a1cd3d52982e73fb9
|
Subproject commit ddbfbe84c3954ed3e7e3014bfb93e8a943ad8ecb
|
2
dub.json
2
dub.json
|
@ -7,7 +7,7 @@
|
||||||
],
|
],
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dsymbol": "~>0.3.5",
|
"dsymbol": "~>0.3.6",
|
||||||
"libdparse": "~>0.8.1",
|
"libdparse": "~>0.8.1",
|
||||||
"msgpack-d": "~>1.0.0-beta.3",
|
"msgpack-d": "~>1.0.0-beta.3",
|
||||||
"stdx-allocator": "~>2.77.0"
|
"stdx-allocator": "~>2.77.0"
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
identifiers
|
||||||
|
alignof k
|
||||||
|
init k
|
||||||
|
mangleof k
|
||||||
|
max k
|
||||||
|
min k
|
||||||
|
sizeof k
|
||||||
|
stringof k
|
|
@ -0,0 +1 @@
|
||||||
|
enum a = char.
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -c14 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
Loading…
Reference in New Issue