The function signature tooltip is only shown when there already has been a call to the function within the same file.
Given the example of flow:
/* @flow */
function foo(x) {
return x * 10;
}
foo('Hello, world!');
When I type foo after the last line, the tooltip is shown. Once I comment out the foo-call and start writing foo, a autocomplete is shown suggesting the word foo, not the function with its signature.
Is this an issue of flow it atom-ide-flow?
Log output from console when writing foo while already having a call to foo in the file:
The function signature tooltip is only shown when there already has been a call to the function within the same file.
Given the example of
flow
:When I type
foo
after the last line, the tooltip is shown. Once I comment out thefoo
-call and start writingfoo
, a autocomplete is shown suggesting the wordfoo
, not the function with its signature.Is this an issue of
flow
itatom-ide-flow
?Log output from console when writing
foo
while already having a call tofoo
in the file:Log output from console when writing
foo
while having no call tofoo
already in file: