Skip to content

Commit 00bbc12

Browse files
author
Jacob Hearst
committed
Model reverse as an option
1 parent 9ed4ba1 commit 00bbc12

File tree

5 files changed

+24
-5
lines changed

5 files changed

+24
-5
lines changed

Sources/_RegexParser/Regex/AST/MatchingOptions.swift

+3
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ extension AST {
4747

4848
// NSRegularExpression compatibility special-case
4949
case nsreCompatibleDot // no AST representation
50+
51+
// Lookbehind support
52+
case reverse // no AST representation
5053
}
5154

5255
public var kind: Kind

Sources/_RegexParser/Regex/Parse/Sema.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ extension RegexValidator {
143143
case .caseInsensitive, .possessiveByDefault, .reluctantByDefault,
144144
.singleLine, .multiline, .namedCapturesOnly, .extended, .extraExtended,
145145
.asciiOnlyDigit, .asciiOnlyWord, .asciiOnlySpace, .asciiOnlyPOSIXProps,
146-
.nsreCompatibleDot:
146+
.nsreCompatibleDot, .reverse:
147147
break
148148
}
149149
}

Sources/_StringProcessing/ByteCodeGen.swift

+8-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ internal import _RegexParser
1616

1717
extension Compiler {
1818
struct ByteCodeGen {
19-
var reverse = false
19+
var reverse: Bool {
20+
options.reversed
21+
}
2022
var options: MatchingOptions
2123
var builder = MEProgram.Builder()
2224
/// A Boolean indicating whether the first matchable atom has been emitted.
@@ -392,14 +394,16 @@ fileprivate extension Compiler.ByteCodeGen {
392394
throw Unsupported("Lookarounds with custom consumers")
393395
}
394396

395-
let previousReverse = reverse
396-
reverse = !kind.forwards
397+
defer { options.endScope() }
398+
options.beginScope()
399+
// TODO: JH - Is it okay to use .fake here?
400+
options.apply(.init(adding: [.init(.reverse, location: .fake)]))
401+
397402
if kind.positive {
398403
try emitPositiveLookaround(child)
399404
} else {
400405
try emitNegativeLookaround(child)
401406
}
402-
reverse = previousReverse
403407
}
404408

405409
mutating func emitAtomicNoncapturingGroup(

Sources/_StringProcessing/LiteralPrinter.swift

+3
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,9 @@ extension AST.MatchingOption.Kind {
575575
// NSRE Compatibility option; no literal representation
576576
case .nsreCompatibleDot: return nil
577577

578+
// Reverse option for lookbehinds; no literal representation
579+
case .reverse: return nil
580+
578581
#if RESILIENT_LIBRARIES
579582
@unknown default:
580583
fatalError()

Sources/_StringProcessing/MatchingOptions.swift

+9
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,10 @@ extension MatchingOptions {
129129
var usesNSRECompatibleDot: Bool {
130130
stack.last!.contains(.nsreCompatibleDot)
131131
}
132+
133+
var reversed: Bool {
134+
stack.last!.contains(.reverse)
135+
}
132136
}
133137

134138
// MARK: - Implementation
@@ -152,6 +156,9 @@ extension MatchingOptions {
152156
case withoutAnchoringBounds
153157
case nsreCompatibleDot
154158

159+
// Not available via regex literal flags
160+
case reverse
161+
155162
// Oniguruma options
156163
case asciiOnlyDigit
157164
case asciiOnlyPOSIXProps
@@ -217,6 +224,8 @@ extension MatchingOptions {
217224
self = .extended
218225
case .extraExtended:
219226
self = .extraExtended
227+
case .reverse:
228+
self = .reverse
220229
#if RESILIENT_LIBRARIES
221230
@unknown default:
222231
fatalError()

0 commit comments

Comments
 (0)