fix #323 - no completion in foreach with index in the ForeachTypeList
This commit is contained in:
parent
7dfdccb142
commit
addda02c43
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",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dsymbol": "~>0.2.3",
|
"dsymbol": "~>0.2.4",
|
||||||
"libdparse": "~>0.7.1-beta.4",
|
"libdparse": "~>0.7.1-beta.4",
|
||||||
"msgpack-d": "~>1.0.0-beta.3"
|
"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