parent
53db8bf9ee
commit
33a673836e
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
||||||
Subproject commit ff8f1feb456a24cb88b7a01fff709691e9b0d58d
|
Subproject commit 5b7f06ff005c63a2bf22db0736097ef35b9d36e7
|
2
dub.json
2
dub.json
|
@ -7,7 +7,7 @@
|
||||||
],
|
],
|
||||||
"license": "GPL-3.0",
|
"license": "GPL-3.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"dsymbol": "~>0.6.3",
|
"dsymbol": "~>0.6.4",
|
||||||
"libdparse": "~>0.11.4",
|
"libdparse": "~>0.11.4",
|
||||||
"msgpack-d": "~>1.0.0-beta.7",
|
"msgpack-d": "~>1.0.0-beta.7",
|
||||||
"stdx-allocator": "~>2.77.5",
|
"stdx-allocator": "~>2.77.5",
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
identifiers
|
identifiers
|
||||||
|
Base l
|
||||||
__monitor v
|
__monitor v
|
||||||
__vptr v
|
__vptr v
|
||||||
alignof k
|
alignof k
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
identifiers
|
identifiers
|
||||||
|
Base l
|
||||||
__monitor v
|
__monitor v
|
||||||
__vptr v
|
__vptr v
|
||||||
alignof k
|
alignof k
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
identifiers
|
||||||
|
foo f
|
|
@ -0,0 +1 @@
|
||||||
|
interface Base {void foo();} class Derived : Base {int i; void foo(){}} void main(){Derived d; d.Base.f}
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -c103 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
|
@ -1,4 +1,5 @@
|
||||||
identifiers
|
identifiers
|
||||||
|
Bar l
|
||||||
__monitor v
|
__monitor v
|
||||||
__vptr v
|
__vptr v
|
||||||
alignof k
|
alignof k
|
||||||
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
identifiers
|
||||||
|
avariable v
|
|
@ -0,0 +1 @@
|
||||||
|
struct Foo { struct { int avariable; } } void main(){ Foo foo; foo.ava }
|
|
@ -0,0 +1,5 @@
|
||||||
|
set -e
|
||||||
|
set -u
|
||||||
|
|
||||||
|
../../bin/dcd-client $1 file.d -c70 > actual.txt
|
||||||
|
diff actual.txt expected.txt
|
Loading…
Reference in New Issue