Merge pull request #466 from BBasile/issue-405
fix #405 - Case of calltip failure in aggregate merged-on-behalf-of: BBasile <BBasile@users.noreply.github.com>
This commit is contained in:
commit
24d415a537
2
dub.json
2
dub.json
|
@ -8,7 +8,7 @@
|
|||
"license": "GPL-3.0",
|
||||
"dependencies": {
|
||||
"dsymbol": "~>0.3.1",
|
||||
"libdparse": "~>0.8.0",
|
||||
"libdparse": "~>0.8.1",
|
||||
"msgpack-d": "~>1.0.0-beta.3",
|
||||
"stdx-allocator": "~>2.77.0"
|
||||
},
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 970efe34e66fc7b3cb93a6ec59984099908070c5
|
||||
Subproject commit 0e18b62cb2fd86ee09ec8457c394bdef409ca542
|
|
@ -0,0 +1,2 @@
|
|||
calltips
|
||||
void fun(A param)
|
|
@ -0,0 +1,5 @@
|
|||
set -e
|
||||
set -u
|
||||
|
||||
../../bin/dcd-client $1 -c66 <<< "class Bar{void fun(A param){}}class Foo{void foo(Bar bar){bar.fun(}}" > actual.txt
|
||||
diff actual.txt expected.txt
|
Loading…
Reference in New Issue