Merge pull request #590 from Basile-z/upgrade-deps
upgrade dependencies
This commit is contained in:
commit
d42fec7590
|
@ -1,3 +1,4 @@
|
|||
dist: xenial
|
||||
sudo: false
|
||||
language: d
|
||||
d:
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 836a0cc93a98815ac309294c45aab0ba98018073
|
||||
Subproject commit 257c0418f34709dd667f95b5dffabedc2b3099e4
|
2
dsymbol
2
dsymbol
|
@ -1 +1 @@
|
|||
Subproject commit de7389be5dda532ef7cd431d03efbfe6b9522687
|
||||
Subproject commit 5b7f06ff005c63a2bf22db0736097ef35b9d36e7
|
6
dub.json
6
dub.json
|
@ -7,11 +7,11 @@
|
|||
],
|
||||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.6.0",
|
||||
"libdparse": "~>0.11.2",
|
||||
"dsymbol": "~>0.6.4",
|
||||
"libdparse": "~>0.11.4",
|
||||
"msgpack-d": "~>1.0.0-beta.7",
|
||||
"stdx-allocator": "~>2.77.5",
|
||||
"emsi_containers": "0.8.0-alpha.11"
|
||||
"emsi_containers": "~>0.8.0-alpha.13"
|
||||
},
|
||||
"stringImportPaths" : [
|
||||
"bin"
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 23b20de4ee48ed3f0e8729f6318405543cb3a611
|
||||
Subproject commit aae371931a99027465952cd6fdaede4eb4743e76
|
|
@ -1,4 +1,5 @@
|
|||
identifiers
|
||||
Base l
|
||||
__monitor v
|
||||
__vptr v
|
||||
alignof k
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
identifiers
|
||||
Base l
|
||||
__monitor v
|
||||
__vptr v
|
||||
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
|
||||
Bar l
|
||||
__monitor v
|
||||
__vptr v
|
||||
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
|
|
@ -0,0 +1 @@
|
|||
import empty:
|
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 file.d --extended -c$(stat -c %s file.d) > actual.txt
|
||||
diff actual.txt expected.txt
|
Loading…
Reference in New Issue