Skip to content

misc: replace regex-based type parser with character-based one #775

misc: replace regex-based type parser with character-based one

misc: replace regex-based type parser with character-based one #775

Triggered via pull request August 17, 2023 15:50
Status Success
Total duration 55s
Artifacts

mutation.yml

on: pull_request
Mutation tests
40s
Mutation tests
Fit to window
Zoom out
Zoom in

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; }