]> code.delx.au - gnu-emacs-elpa/commitdiff
imenu: accept paren-free direct function call in `js2-anonymous-wrapper-fn-p'
authormooz <stillpedant@gmail.com>
Sat, 2 Apr 2011 03:49:37 +0000 (12:49 +0900)
committermooz <stillpedant@gmail.com>
Sat, 2 Apr 2011 03:49:37 +0000 (12:49 +0900)
// not supported before this commit
var a = function () {
    function bar() {
    }
}();

// supported
var b = (function () {
    function foo() {
    }
})();


No differences found