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:
The Dlang Bot 2018-04-24 11:25:02 +02:00 committed by GitHub
commit 24d415a537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

View File

@ -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

View File

@ -0,0 +1,2 @@
calltips
void fun(A param)

View File

@ -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