misc: replace regex-based type parser with character-based one #775
Annotations
1 warning
Mutation tests:
src/Type/Parser/LexingParser.php#L44
Escaped Mutant for Mutator "NotIdentical":
--- Original
+++ New
@@ @@
$current .= $char;
}
} elseif ($char === '"' || $char === "'") {
- if ($current !== null) {
+ if ($current === null) {
$symbols[] = $current;
$current = null;
}
|