Add support for auto anon class completion, close #532
This commit is contained in:
parent
26663f1a59
commit
ff3c7d212b
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
|||
Subproject commit 87c880c5186207528e68620ac0c73d6422f115b8
|
||||
Subproject commit 47f471114ad272dc0cd41996c7977413d7a68d63
|
2
dub.json
2
dub.json
|
@ -7,7 +7,7 @@
|
|||
],
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.4.5",
|
||||
"dsymbol": "~>0.4.8",
|
||||
"libdparse": "~>0.9.8",
|
||||
"msgpack-d": "~>1.0.0-beta.3",
|
||||
"stdx-allocator": "~>2.77.2"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 698111e7a55d9a5613b43b472588718e2a6b527b
|
||||
Subproject commit 1556a80bccbe4bf40ed78ec7144011d3496ee334
|
|
@ -0,0 +1,13 @@
|
|||
identifiers
|
||||
__monitor v
|
||||
__vptr v
|
||||
alignof k
|
||||
classinfo v
|
||||
foo f
|
||||
i v
|
||||
init k
|
||||
j v
|
||||
mangleof k
|
||||
sizeof k
|
||||
stringof k
|
||||
tupleof k
|
|
@ -0,0 +1,12 @@
|
|||
identifiers
|
||||
__monitor v
|
||||
__vptr v
|
||||
alignof k
|
||||
classinfo v
|
||||
foo f
|
||||
init k
|
||||
j v
|
||||
mangleof k
|
||||
sizeof k
|
||||
stringof k
|
||||
tupleof k
|
|
@ -0,0 +1 @@
|
|||
class Bar {int i;} void main(){auto b = new class Bar {int j; void foo();};b.;}
|
|
@ -0,0 +1 @@
|
|||
void main(){auto b = new class {int j; void foo();}; b.}
|
|
@ -0,0 +1,7 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 file1.d -c77 > actual1.txt
|
||||
diff actual1.txt expected1.txt
|
||||
../../bin/dcd-client $1 file2.d -c55 > actual2.txt
|
||||
diff actual2.txt expected2.txt
|
Loading…
Reference in New Issue