7ute / symbols-list

An alternate symbol list sidebar for Atom.io text editor
GNU General Public License v3.0
32 stars 24 forks source link

Detect functions within an object #6

Closed giedrius-timinskis closed 8 years ago

giedrius-timinskis commented 8 years ago

Hey,

The codebase I'm working in is written in Backbone, so it'd be great to have support for functions declared within an object:

return Backbone.Model.extend({
    SOME_VAR: 'some info',
    someFunction: function () {
        return false;
    } 
});

If you're super busy I might look into adding this on a weekend as well

7ute commented 8 years ago

Yup i'll give it a look when i have a few minutes :)

7ute commented 8 years ago

Done in the latest release.

giedrius-timinskis commented 8 years ago

Works perfectly, thanks a lot!