Closed
Description
From @alexandrudima on January 27, 2016 13:34
Testing #2218
IMHO member completions should get less suggestions than the global completions, not the other way around:
function f() {
// helloWorld leaks from here into the global space?
if (helloWorld) {
return 3;
}
return 5;
}
// helloWorld is proposed here
// Number(3).
// helloWorld is not proposed here
// hello
Copied from original issue: microsoft/vscode#2447