Index: compiled/filter/Filter.cpp |
=================================================================== |
--- a/compiled/filter/Filter.cpp |
+++ b/compiled/filter/Filter.cpp |
@@ -67,16 +67,19 @@ |
if (text[end - 1] != ' ') |
break; |
// Set new string boundaries |
text.reset(text, start, end - start); |
} |
} |
+const DependentString Filter::regexpRegExp = u"^(@@)?\\/.*\\/(?:\\$~?[\\w-]+(?:=[^,\\s]+)?(?:,~?[\\w-]+(?:=[^,\\s]+)?)*)?$"_str; |
+const DependentString Filter::optionsRegExp = u"\\$(~?[\\w-]+(?:=[^,\\s]+)?(?:,~?[\\w-]+(?:=[^,\\s]+)?)*)$"_str; |
+ |
Filter::Filter(Type type, const String& text) |
: mText(text), mType(type) |
{ |
annotate_address(this, "Filter"); |
} |
Filter::~Filter() |
{ |