csnover / js-doc-parse

An experimental library for parsing JavaScript files and extracting inline documentation.
31 stars 7 forks source link

missing methods in singleton from implicit class #44

Open wkeese opened 12 years ago

wkeese commented 12 years ago

The old version of dojo/behavior.js ([28901]) had code like:

return new function(){
     this.foo = function(a,b,c){ ... };
     ...
};

The parser wasn't picking up the function definitions.

I worked around the problem though.