Skip to content

JavaScript: Understand prototypes that are function expressions #25

@bobbylight

Description

@bobbylight

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;
      }
   };
})();

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions