show/hide this revision's text 10 cg: cosmetic changes
], level = 0; var hook code = tokens.join('') + '\nthis._refs = [];'; for(var i = 0, len = names.length; i < len; ++i) hook += ' \nthis._refs.push(' + names[i] names.join(',') + ');'; // this way, the outer function stays intact return (new (new Function(tokens.join('') + hook)))._refsFunction(code)))._refs;

Not as elegant as LISP-macros, but still nice what JAvaScript is capable of ;)

show/hide this revision's text 9 cg: fixed missing " in Ates' code; added comment

Not as elegant as LISP-macros, but still nice ;)

show/hide this revision's text 8 cg: added new version

[CG] Here is with what I came up. An added bonus is that the outer function stays intact and thus may still act as closure around the inner functions. Just copy the code into a blank page and see if it works - no guarantees on bug-freelessness ;)

var extractFunctions = (function() { var level, names; function tokenize(code) { var code = code.split(/\\./).join(''), regex = /\bfunction\b|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+|\\/mg, tokens = [], pos = 0; for(var matches; matches = regex.exec(code); pos = regex.lastIndex) { var match = matches[0], matchStart = regex.lastIndex - match.length; if(pos < matchStart) tokens.push(code.substring(pos, matchStart)); tokens.push(match); if(pos < code.length) tokens.push(code.substring(pos)); return tokens; function parse(tokens, callback) { for(var i = 0; i < tokens.length; ++i) { var j = callback(tokens[i], tokens, i); if(j === false) break; else if(typeof j === 'number') i = j; function skip(tokens, idx, limiter, escapes) { while(++idx < tokens.length && tokens[idx] !== limiter) if(escapes && tokens[idx] === '\\') ++idx; return idx; function removeDeclaration(token, tokens, idx) { switch(token) { case '/*': return skip(tokens, idx, '*/'); case '//': return skip(tokens, idx, '\n'); case ')': tokens.splice(0, idx + 1); return false; function extractTopLevelFunctionNames(token, tokens, idx) { switch(token) { case '{': ++level; return; case '}': --level; return; case '/*': return skip(tokens, idx, '*/'); case '//': return skip(tokens, idx, '\n'); case '"': case '\'': return skip(tokens, idx, token, true); case 'function': if(level === 1) { while(++idx < tokens.length) { token = tokens[idx]; if(token === '(') return idx; if(/^\s+$/.test(token)) continue; if(token === '/*') { idx = skip(tokens, idx, '*/'); continue; if(token === '//') { idx = skip(tokens, idx, '\n'); continue; names.push(token); return idx; return; function getTopLevelFunctionRefs(func) { var tokens = tokenize(func.toString()); parse(tokens, removeDeclaration); names = []; level = 0; parse(tokens, extractTopLevelFunctionNames); var hook = '\nthis._refs = [];'; for(var i = 0, len = names.length; i < len; ++i) hook += '\nthis._refs.push(' + names[i] + ');'; // this way, the outer function stays intact return (new (new Function(tokens.join('') + hook)))._refs; return getTopLevelFunctionRefs;function testSuite() { function testA() { function testNested() { // function testComment() {} // function testGlobalFn() {} function // comments testB /* don't matter */ () // neither does whitespace var s = "function testString() {}";
show/hide this revision's text 7 comment by GC
show/hide this revision's text 6 added 1056 characters in body
show/hide this revision's text 5 comments by Christoph
    Post Made Community Wiki by Community
show/hide this revision's text 4 deleted 87 characters in body
show/hide this revision's text 3 added 421 characters in body
show/hide this revision's text 2 added 221 characters in body
show/hide this revision's text 1