Skip to content
Commit 1cb4b3e3 authored by Heinz Wiesinger's avatar Heinz Wiesinger
Browse files

Support for variadic functions in documentation popup.

Summary:
This shows the documentation for functions defined as

```
function foo(...$params) {}
function foo(A ...$params) {}
```

in the form of

```
void foo ([mixed ...params])
void foo ([A ...params])
```

In the first case, $params itself is shown as

```
array params
```

and in the latter as

```
array of (A) params
```

Reviewers: zhigalin

Reviewed By: zhigalin

Subscribers: aacid, zhigalin, kdevelop-devel

Differential Revision: https://phabricator.kde.org/D6256
parent fb372fb1
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment