Quantcast
Channel: Node.js Tools for Visual Studio
Viewing all articles
Browse latest Browse all 4630

Edited Issue: Parameter types in signature help update too quickly [1769]

$
0
0
Start with this code:

```
function f(a, b, c) {
return 'abc';
}

f(1, 2, 3)
```

On the second last line (blank), start typing another call to `f` and thing long an hard about each parameter. As you advance to the next parameter, the previous one will be updated with the return type of `f` from the call on the following line.

This becomes a real problem when the following call could return 5-6 different types - signature help quickly becomes unreadable.

Viewing all articles
Browse latest Browse all 4630

Trending Articles