[XcodeGen] Pattern match by KeyPath<T, Bool>

Simpler pattern match by `is` properties. E.g. `\.isNewline`
This commit is contained in:
Rintaro Ishizaki
2025-01-28 22:09:02 -08:00
parent 2d64ef2528
commit 59a1272821
4 changed files with 13 additions and 18 deletions

View File

@@ -130,7 +130,7 @@ fileprivate extension ByteScanner {
// Consume the element, stopping at the first space.
return try consume(using: { consumer in
switch consumer.peek {
case let c where c.isSpaceOrTab:
case \.isSpaceOrTab:
return false
case "\"":
try consumer.consumeStringLiteral()