If I've a class A with doSomething() method defined on it and I do this -
it pops up doSomething as autocompletion. If I select it, it completes the word to a.doSomething. Notice that doSomething isn't a member var but a member method so correct behaviour should be a.doSomething() with cursor in b/w the parenthesis.
If I've a class A with
doSomething()method defined on it and I do this -it pops up
doSomethingas autocompletion. If I select it, it completes the word toa.doSomething. Notice thatdoSomethingisn't a member var but a member method so correct behaviour should bea.doSomething()with cursor in b/w the parenthesis.