|
12
|
|
|
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;
}
|
|
|
|
11
|
|
|
IE-specific code now used per defaultCosmetic 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;
}
|
|
|
|
10
|
|
|
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;
}
|
|
|
|
9
|
|
|
Should work IE-specific code now even in IEused per default /*@cc_onfunction ieSplit(string, regextokenize(code) { var code = code.split(/\\./).join(''), regex = /function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+/mg, for(var matches, ], for(var matches; matches = regex.exec(string)regex.exec(code); pos = regex.lastIndex) { tokens.push(string.substring(posvar match = matches[0], matchStart = regex.lastIndex - matches[0].length)); for(var i = 1match.length; i if(pos < matches.lengthmatchStart) tokens.push(code.substring(pos, matchStart)); ++i) tokens.push(matches[i])tokens.push(match); if(pos < string.lengthcode.length) tokens.push(string.substring(pos))tokens.push(code.substring(pos));function stripEscapes(code) { return code.split(/\\./).join('');function tokenize(code) { var regex separators = /(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/mg; return window.ieSplit ? ieSplit(code, regex) { '/*' : code.split(regex); '//' : '\n', '"' : '"', '\'' : '\'' tokens = tokenize(stripEscapes(func.toString()))tokenize(func.toString()), switch(tokens[i]var token = tokens[i]; switch(token) { break; case '/*': while(++i < tokens.length && tokens[i] !== '*/'); case '//': while(++i < tokens.length && tokens[i] !== '\n'); break; case '"': while(++i < tokens.length && tokens[i] !== '"'); break; case '\'': while(++i < tokens.length && tokens[i] !== '\''); break; case 'function': var token = tokens[i]; if(token === '/*') { while(++i < tokens.length && tokens[i] !== '*/'); continue; if(token /*' || token === '//') { var sep = separators[token]; while(++i < tokens.length && tokens[i] !== '\n'); sep); names.push(tokens[i])names.push(token); default: if(separators.hasOwnProperty(token)) { var sep = separators[token]; while(++i < tokens.length && tokens[i] !== sep);
|
|
|
|
8
|
|
|
Should work now even in IE
Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.
/*@cc_on
function ieSplit(string, regex) {
var tokens = [];
for(var matches, pos = 0; matches = regex.exec(string);
pos = regex.lastIndex) {
tokens.push(string.substring(pos, regex.lastIndex - matches[0].length));
for(var i = 1; i < matches.length; ++i)
tokens.push(matches[i]);
}
if(typeof regex.lastIndex !== 'undefined' &&
regex.lastIndex if(pos < string.length)
tokens.push(string.substring(regex.lastIndex))tokens.push(string.substring(pos));
return tokens;
}
@*/
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
var regex = /(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/mg;
return window.ieSplit ? ieSplit(code, regex) : code.split(regex);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(++i < tokens.length && tokens[i] !== '*/');
break;
case '//':
while(++i < tokens.length && tokens[i] !== '\n');
break;
case '"':
while(++i < tokens.length && tokens[i] !== '"');
break;
case '\'':
while(++i < tokens.length && tokens[i] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) {
while(++i < tokens.length) {
var token = tokens[i];
if(token === '(')
break;
if(/^\s*$/.test(token))
continue;
if(token === '/*') {
while(++i < tokens.length && tokens[i] !== '*/');
continue;
}
if(token === '//') {
while(++i < tokens.length && tokens[i] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
|
7
|
|
|
Should work now even in IE
Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.
/*@cc_on
function ieSplit(string, regex) {
var tokens = [];
for(var matches, pos = 0; matches = regex.exec(string);
pos = regex.lastIndex) {
tokens.push(string.substring(pos, regex.lastIndex - matches[0].length));
for(var i = 1; i < matches.length; ++i)
tokens.push(matches[i]);
}
if(typeof regex.lastIndex !== 'undefined' &&
regex.lastIndex < string.length)
tokens.push(string.substring(regex.lastIndex));
return tokens;
}
@*/
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
var regex = /(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/mg;
return window.ieSplit ? ieSplit(code, regex) : code.split(regex);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(++i < tokens.length && tokens[i] !== '*/');
break;
case '//':
while(++i < tokens.length && tokens[i] !== '\n');
break;
case '"':
while(++i < tokens.length && tokens[i] !== '"');
break;
case '\'':
while(++i < tokens.length && tokens[i] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) {
while(++i < tokens.length) {
var token = tokens[i];
if(token === '(')
break;
if(/^\s*$/.test(token))
continue;
if(token === '/*') {
while(++i < tokens.length && tokens[i] !== '*/');
continue;
}
if(token === '//') {
while(++i < tokens.length && tokens[i] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
|
|
|
|
|
|
6
|
|
|
Fixed some bugs - shouldShould work now
This will fail even in IEbecause it won't add parenthesised expressions when splitting strings. Also, it will ignore functions
Functions defined in blocks (e.g. in the bodies of loops) will be ignored if nested does not evaluate to true.
/*@cc_on
function ieSplit(string, regex) {
var tokens = [];
for(var matches, pos = 0; matches = regex.exec(string);
pos = regex.lastIndex) {
tokens.push(string.substring(pos, regex.lastIndex - matches[0].length));
for(var i = 1; i < matches.length; ++i)
tokens.push(matches[i]);
}
return tokens;
}
@*/
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
var regex = /(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/mg;
return code.split(/(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/m)window.ieSplit ? ieSplit(code, regex) : code.split(regex);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(++i < tokens.length && tokens[i] !== '*/');
break;
case '//':
while(++i < tokens.length && tokens[i] !== '\n');
break;
case '"':
while(++i < tokens.length && tokens[i] !== '"');
break;
case '\'':
while(++i < tokens.length && tokens[i] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) {
while(++i < tokens.length) {
var token = tokens[i];
if(token === '(')
break;
if(/^\s*$/.test(token))
continue;
if(token === '/*') {
while(++i < tokens.length && tokens[i] !== '*/');
continue;
}
if(token === '//') {
while(++i < tokens.length && tokens[i] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
|
5
|
|
|
Fixed some bugs - should work now
This will fail in IE because it won't add parenthesised expressions when splitting strings. Also, it will ignore functions defined in blocks (e.g. in the bodies of loops) if nested does not evaluate to true.
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
return code.split(/(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/m);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(++i < tokens.length && tokens[i] !== '*/');
break;
case '//':
while(++i < tokens.length && tokens[i] !== '\n');
break;
case '"':
while(++i < tokens.length && tokens[i] !== '"');
break;
case '\'':
while(++i < tokens.length && tokens[i] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) {
while(++i < tokens.length) {
var token = tokens[i];
if(token === '(')
break;
if(/^\s*$/.test(token))
continue;
if(token === '/*') {
while(++i < tokens.length && tokens[i] !== '*/');
continue;
}
if(token === '//') {
while(++i < tokens.length && tokens[i] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
|
4
|
|
|
Fixed some bugs - should work now
This will fail in IE because it won't add parenthesised expressions when splitting strings. Also, it will ignore functions defined in blocks (e.g. in the bodies of loops) if nested does not evaluate to true.
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
return code.split(/(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/m);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '*/');
break;
case '//':
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '\n');
break;
case '"':
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '"');
break;
case '\'':
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) {
for(++i; i while(++i < tokens.length;tokens.length) {
var token = tokens[i];
if(/^\s*$/.test(token))
{
++i;
continue;
}
if(token === '/*') {
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '*/');
continue;
}
if(token === '//') {
while(i while(++i < tokens.length && tokens[i++tokens[i] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
|
3
|
|
|
The code is broken Fixed some bugs - I'll fix it latershould work now
This will fail in IE because it won't add parenthesised expressions when splitting strings. Also, it will ignore functions defined in blocks (e.g. in the bodies of loops) if nested does not evaluate to true.
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
return code.split(
/(^|\s)(function)\s+([^\s\(]+)|(\{|\}|\/\*|\*\/|\/\/|"|'|\n)/);
code.split(/(function|\(|\)|\{|\}|\/\*|\*\/|\/\/|"|'|\n|\s+)/m);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(i < tokens.length && tokens[i++] !== '*/');
break;
case '//':
while(i < tokens.length && tokens[i++] !== '\n');
break;
case '"':
while(i < tokens.length && tokens[i++] !== '"');
break;
case '\'':
while(i < tokens.length && tokens[i++] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level)) names.push(tokens[i {
for(++i; i < tokens.length;) {
var token = tokens[i];
if(/^\s*$/.test(token)) {
+1])+i;
continue;
}
if(token === '/*') {
while(i < tokens.length && tokens[i++] !== '*/');
continue;
}
if(token === '//') {
while(i < tokens.length && tokens[i++] !== '\n');
continue;
}
names.push(tokens[i]);
break;
}
}
break;
}
}
return names;
}
|
|
|
|
2
|
|
|
The code is broken - I'll fix it later
This will fail in IE because it won't add parenthesised expressions when splitting strings. Also, it will ignore functions defined in blocks (e.g. in the bodies of loops) if nested does not evaluate to true.
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
return code.split(
/(^|\s)(function)\s+([^\s\(]+)|(\{|\}|\/\*|\*\/|\/\/|"|'|\n)/);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(i < tokens.length && tokens[i++] !== '*/');
break;
case '//':
while(i < tokens.length && tokens[i++] !== '\n');
break;
case '"':
while(i < tokens.length && tokens[i++] !== '"');
break;
case '\'':
while(i < tokens.length && tokens[i++] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level))
names.push(tokens[i + 1]);
break;
}
}
return names;
}
|
|
|
|
1
|
|
|
This will fail in IE because it won't add parenthesised expressions when splitting strings. Also, it will ignore functions defined in blocks (e.g. in the bodies of loops) if nested does not evaluate to true.
function stripEscapes(code) {
return code.split(/\\./).join('');
}
function tokenize(code) {
return code.split(
/(^|\s)(function)\s+([^\s\(]+)|(\{|\}|\/\*|\*\/|\/\/|"|'|\n)/);
}
function extractInnerFunctionNames(func, nested) {
var names = [],
tokens = tokenize(stripEscapes(func.toString())),
level = 0;
for(var i = 0; i < tokens.length; ++i) {
switch(tokens[i]) {
case '{':
++level;
break;
case '}':
--level;
break;
case '/*':
while(i < tokens.length && tokens[i++] !== '*/');
break;
case '//':
while(i < tokens.length && tokens[i++] !== '\n');
break;
case '"':
while(i < tokens.length && tokens[i++] !== '"');
break;
case '\'':
while(i < tokens.length && tokens[i++] !== '\'');
break;
case 'function':
if(level === 1 || (nested && level))
names.push(tokens[i + 1]);
break;
}
}
return names;
}
|
|
|