mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-27 05:39:55 +03:00
Merge pull request #483 from BBasile/issue-481
fix #481 - No dot completion on `char`
This commit is contained in:
commit
46a5d0311a
5 changed files with 16 additions and 2 deletions
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",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.3.5",
|
||||
"dsymbol": "~>0.3.6",
|
||||
"libdparse": "~>0.8.1",
|
||||
"msgpack-d": "~>1.0.0-beta.3",
|
||||
"stdx-allocator": "~>2.77.0"
|
||||
|
|
8
tests/tc_char_dot/expected.txt
Normal file
8
tests/tc_char_dot/expected.txt
Normal file
|
@ -0,0 +1,8 @@
|
|||
identifiers
|
||||
alignof k
|
||||
init k
|
||||
mangleof k
|
||||
max k
|
||||
min k
|
||||
sizeof k
|
||||
stringof k
|
1
tests/tc_char_dot/file.d
Normal file
1
tests/tc_char_dot/file.d
Normal file
|
@ -0,0 +1 @@
|
|||
enum a = char.
|
5
tests/tc_char_dot/run.sh
Executable file
5
tests/tc_char_dot/run.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 file.d -c14 > actual.txt
|
||||
diff actual.txt expected.txt
|
Loading…
Add table
Add a link
Reference in a new issue