mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-23 21:53:35 +00:00
775c736512
This will make tokenizer almost fully covered. The only uncovered parts are the one with cache and an else condition which I think won't ever be executed, and thus added a comment for that. Also, remove an obsolete xxx comment from ComputedVariable (fixed in I8e420f0259ef6c9e579f7a00beb58f28af9da37d) Bug: T201193 Change-Id: I6e9a73aa9e437f096f6a1e20d53a7cb50e5ed85d
7 lines
140 B
Perl
7 lines
140 B
Perl
"a\tb" === "a b" &
|
|
"a\qb" === "a\qb" &
|
|
"a\"b" === 'a"b' &
|
|
"a\rb" !== "a\r\nb" &
|
|
"\x66\x6f\x6f" === "foo" &
|
|
"some\xstring" === "somexstring"
|