Merge pull request #391 from dlang-community/issue-323
fix #323 - no completion in foreach with index in the ForeachTypeList
This commit is contained in:
commit
9162b042b1
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
|||
Subproject commit 4f03897d0152850919e0d52d1cba8042bd714a33
|
||||
Subproject commit e9aae0594739d002009cd34dd3edeb38f1f0893b
|
2
dub.json
2
dub.json
|
@ -7,7 +7,7 @@
|
|||
],
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.2.3",
|
||||
"dsymbol": "~>0.2.4",
|
||||
"libdparse": "~>0.7.1-beta.4",
|
||||
"msgpack-d": "~>1.0.0-beta.3"
|
||||
},
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
identifiers
|
||||
alignof k
|
||||
init k
|
||||
mangleof k
|
||||
max k
|
||||
min k
|
||||
sizeof k
|
||||
stringof k
|
|
@ -0,0 +1 @@
|
|||
int[]a;void foo(){foreach(i,b;a){b.}}
|
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 file.d -c35 > actual.txt
|
||||
diff actual.txt expected.txt
|
Loading…
Reference in New Issue