show/hide this revision's text 12 added 4 characters in body

Cosmetic changes and bugfix

The regular expression must read \bfunctionbfunction\b to avoid false positives!

Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.

function tokenize(code) {
    var code = code.split(/\\./).join(''),
        regex = /\bfunction|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+/mg,
        \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;
}

var separators = {
    '/*' : '*/',
    '//' : '\n',
    '"' : '"',
    '\'' : '\''
};

function extractInnerFunctionNames(func, nested) {
    var names = [],
        tokens = tokenize(func.toString()),
        level = 0;

    for(var i = 0; i < tokens.length; ++i) {
        var token = tokens[i];

        switch(token) {
            case '{':
            ++level;
            break;

            case '}':
            --level;
            break;

            case '/*':
            case '//':
            case '"':
            case '\'':
            var sep = separators[token];
            while(++i < tokens.length && tokens[i] !== sep);
            break;

            case 'function':
            if(level === 1 || (nested && level)) {
                while(++i < tokens.length) {
                    token = tokens[i];

                    if(token === '(')
                        break;

                    if(/^\s+$/.test(token))
                        continue;

                    if(token === '/*' || token === '//') {
                        var sep = separators[token];
                        while(++i < tokens.length && tokens[i] !== sep);
                        continue;
                    }

                    names.push(token);
                    break;
                }
            }
            break;
        }
    }

    return names;
}
show/hide this revision's text 11 bugfix

IE-specific code now used per default

Cosmetic changes and bugfix

The regular expression must read \bfunction to avoid false positives!

Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.

function tokenize(code) {
    var code = code.split(/\\./).join(''),
        regex = /function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+/mg,
        \bfunction|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\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;
}

var separators = {
    '/*' : '*/',
    '//' : '\n',
    '"' : '"',
    '\'' : '\''
};

function extractInnerFunctionNames(func, nested) {
    var names = [],
        tokens = tokenize(func.toString()),
        level = 0;

    for(var i = 0; i < tokens.length; ++i) {
        var token = tokens[i];

        switch(token) {
            case '{':
            ++level;
            break;

            case '}':
            --level;
            break;

            case '/*':
            case '//':
            case '"':
            case '\'':
            var sep = separators[token];
            while(++i < tokens.length && tokens[i] !== sep);
            break;

            case 'function':
            if(level === 1 || (nested && level)) {
                while(++i < tokens.length) {
                    token = tokens[i];

                    if(token === '(')
                        break;

                    if(/^\s*$/.test(token)if(/^\s+$/.test(token))
                        continue;

                    if(token === '/*' || token === '//') {
                        var sep = separators[token];
                        while(++i < tokens.length && tokens[i] !== sep);
                        continue;
                    }

                    names.push(token);
                    break;
                }
            }
            break;

            default:
            if(separators.hasOwnProperty(token)) {
                var sep = separators[token];
        while(++i < tokens.length && tokens[i] !== sep);
            }
        }
    }

    return names;
}
show/hide this revision's text 10 fixed tabs

IE-specific code now used per default

Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.

function tokenize(code) {
    var code = code.split(/\\./).join(''),
        regex = /function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\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;
}

var separators = {
    '/*' : '*/',
    '//' : '\n',
    '"' : '"',
    '\'' : '\''
};

function extractInnerFunctionNames(func, nested) {
    var names = [],
        tokens = tokenize(func.toString()),
        level = 0;

    for(var i = 0; i < tokens.length; ++i) {
        var token = tokens[i];

        switch(token) {
            case '{':
            ++level;
            break;

            case '}':
            --level;
            break;

            case 'function':
            if(level === 1 || (nested && level)) {
                while(++i < tokens.length) {
                    token = tokens[i];

                    if(token === '(')
                        break;

                    if(/^\s*$/.test(token))
                        continue;

                    if(token === '/*' || token === '//') {
                        var sep = separators[token];
                        while(++i < tokens.length && tokens[i] !== sep);
                        continue;
                    }

                    names.push(token);
                    break;
                }
            }
            break;

            default:
            if(separators.hasOwnProperty(token)) {
                var sep = separators[token];
                while(++i < tokens.length && tokens[i] !== sep);
            }
        }
    }

    return names;
}
show/hide this revision's text 9 ie-specific code now default
show/hide this revision's text 8 fixed bug in IE specific code
show/hide this revision's text 7 added 158 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 6 now works in IE
show/hide this revision's text 5 now detects anonymous functions
show/hide this revision's text 4 changed index increment order
show/hide this revision's text 3 fixed bugs
show/hide this revision's text 2 added 64 characters in body
show/hide this revision's text 1