Add deprecation warning for regexp filter operators

print-window-tiddler
Jermolene 2014-09-09 23:05:58 +01:00
rodzic 418be0fda8
commit d45c417c18
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -70,6 +70,8 @@ function parseFilterOperation(operators,filterString,p) {
rexMatch = rex.exec(filterString.substring(p));
if(rexMatch) {
operator.regexp = new RegExp(rexMatch[1], rexMatch[2]);
// Deprecation warning
console.log("WARNING: Filter",operator.operator,"has a deprecated regexp operand",operator.regexp);
nextBracketPos = p + rex.lastIndex - 1;
}
else {