diff --git a/src/js/static-filtering-parser.js b/src/js/static-filtering-parser.js index 799ebdf57..31120278b 100644 --- a/src/js/static-filtering-parser.js +++ b/src/js/static-filtering-parser.js @@ -3051,6 +3051,7 @@ Parser.utils = Parser.prototype.utils = (( ) => { return this.tokenizableStrFromNode(node.val); } case 16: /* T_QUANTIFIER, 'Quantifier' */ { + if ( node.flags.max === 0 ) { return ''; } const s = this.tokenizableStrFromNode(node.val); const first = this.firstCharCodeClass(s); const last = this.lastCharCodeClass(s);