CodeMirror Tern Recursive Function issue

This is minor, but worth logging.

STR:
Create a script with this content:
function CTor() { this.size = 10; }
CTor.prototype.hallo = function(){};

Then type var xx = new CTor()
type .xx and press control space
Choose hallo
Then go to a new line and type .
Now press control space
Notice no suggestions show

Script I’m referring to in STR would look like:

function CTor() { this.size = 10; }
CTor.prototype.hallo = function(){};

var xx = new CTor()
.hallo()
.

Thanks
M@

The result of calling hello is undefined. What kind of completions are you expecting there?

Let’s just close this. A super edge case