Merge pull request #543 from BBasile/reg-scope
fix issue #489 - Abnormal completion list for core.thread.Thread merged-on-behalf-of: Brian Schott <Hackerpilot@users.noreply.github.com>
This commit is contained in:
commit
56f67e1ec5
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
|||
Subproject commit b3b4616601ff4dad529b5acf927aaf85c21559a2
|
||||
Subproject commit a8ffcc99d79b2b1195b7aac169a183706c2c9ec0
|
4
dub.json
4
dub.json
|
@ -7,8 +7,8 @@
|
|||
],
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.5.2",
|
||||
"libdparse": "~>0.10.6",
|
||||
"dsymbol": "~>0.5.3",
|
||||
"libdparse": "~>0.10.7",
|
||||
"msgpack-d": "~>1.0.0-beta.3",
|
||||
"stdx-allocator": "~>2.77.4"
|
||||
},
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 6a1c48f8bdc6e8bb890039aa67c03a4910b55d65
|
||||
Subproject commit 15c8d2ef166b633825e971eb914d4d78eb33b3ac
|
|
@ -0,0 +1,7 @@
|
|||
module scope_mess;
|
||||
|
||||
class FooTest
|
||||
{
|
||||
void member1() { int b; }
|
||||
void member2() in {} do {}
|
||||
}
|
|
@ -0,0 +1,12 @@
|
|||
identifiers
|
||||
__monitor v
|
||||
__vptr v
|
||||
alignof k
|
||||
classinfo v
|
||||
init k
|
||||
mangleof k
|
||||
member1 f
|
||||
member2 f
|
||||
sizeof k
|
||||
stringof k
|
||||
tupleof k
|
|
@ -0,0 +1 @@
|
|||
import scope_mess; FooTest ft; ft.
|
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 file1.d -c35 > actual1.txt
|
||||
diff actual1.txt expected1.txt
|
Loading…
Reference in New Issue