The JavaScriptOutlineTree and code completion currently do not understand JS objects whose prototypes are defined as function expressions, e.g.
function Conversation() {
...
}
Conversation.prototype = (function() {
return {
foo: function() {
return true;
}
};
})();