FIX: Performance issue with [\] characters.

This commit is contained in:
Robin Ward 2013-12-09 12:54:10 -05:00
parent 64a3afe35a
commit e20d649dee

View file

@ -655,7 +655,7 @@
if ( consumed >= text.length ) { if ( consumed >= text.length ) {
// No closing char found. Abort. // No closing char found. Abort.
return null; return [consumed, null, nodes];
} }
var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ), patterns ); var res = this.dialect.inline.__oneElement__.call(this, text.substr( consumed ), patterns );
@ -1264,8 +1264,10 @@
var res = inline_until_char.call( this, text.substr(1), "]" ); var res = inline_until_char.call( this, text.substr(1), "]" );
// No closing ']' found. Just consume the [ // No closing ']' found. Just consume the [
if ( !res ) if ( !res[1] ) {
return [ 1, "[" ]; var size = res[0] + 1;
return [ size, text.charAt(0) + res[2].join('') ];
}
var consumed = 1 + res[ 0 ], var consumed = 1 + res[ 0 ],
children = res[ 1 ], children = res[ 1 ],