Coverage Report

Created: 2026-09-01 07:00

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/rust/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-bidi-0.3.18/src/implicit.rs
Line
Count
Source
1
// Copyright 2015 The Servo Project Developers. See the
2
// COPYRIGHT file at the top-level directory of this distribution.
3
//
4
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7
// option. This file may not be copied, modified, or distributed
8
// except according to those terms.
9
10
//! 3.3.4 - 3.3.6. Resolve implicit levels and types.
11
12
#[cfg(not(feature = "smallvec"))]
13
use alloc::vec::Vec;
14
use core::cmp::max;
15
#[cfg(feature = "smallvec")]
16
use smallvec::SmallVec;
17
18
use super::char_data::BidiClass::{self, *};
19
use super::level::Level;
20
use super::prepare::{not_removed_by_x9, IsolatingRunSequence};
21
use super::{BidiDataSource, TextSource};
22
23
/// 3.3.4 Resolving Weak Types
24
///
25
/// <http://www.unicode.org/reports/tr9/#Resolving_Weak_Types>
26
#[cfg_attr(feature = "flame_it", flamer::flame)]
27
0
pub fn resolve_weak<'a, T: TextSource<'a> + ?Sized>(
28
0
    text: &'a T,
29
0
    sequence: &IsolatingRunSequence,
30
0
    processing_classes: &mut [BidiClass],
31
0
) {
32
    // Note: The spec treats these steps as individual passes that are applied one after the other
33
    // on the entire IsolatingRunSequence at once. We instead collapse it into a single iteration,
34
    // which is straightforward for rules that are based on the state of the current character, but not
35
    // for rules that care about surrounding characters. To deal with them, we retain additional state
36
    // about previous character classes that may have since been changed by later rules.
37
38
    // The previous class for the purposes of rule W4/W6, not tracking changes made after or during W4.
39
0
    let mut prev_class_before_w4 = sequence.sos;
40
    // The previous class for the purposes of rule W5.
41
0
    let mut prev_class_before_w5 = sequence.sos;
42
    // The previous class for the purposes of rule W1, not tracking changes from any other rules.
43
0
    let mut prev_class_before_w1 = sequence.sos;
44
0
    let mut last_strong_is_al = false;
45
    #[cfg(feature = "smallvec")]
46
    let mut et_run_indices = SmallVec::<[usize; 8]>::new(); // for W5
47
    #[cfg(not(feature = "smallvec"))]
48
0
    let mut et_run_indices = Vec::new(); // for W5
49
    #[cfg(feature = "smallvec")]
50
    let mut bn_run_indices = SmallVec::<[usize; 8]>::new(); // for W5 +  <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
51
    #[cfg(not(feature = "smallvec"))]
52
0
    let mut bn_run_indices = Vec::new(); // for W5 +  <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
53
54
0
    for (run_index, level_run) in sequence.runs.iter().enumerate() {
55
0
        for i in &mut level_run.clone() {
56
0
            if processing_classes[i] == BN {
57
                // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
58
                // Keeps track of bn runs for W5 in case we see an ET.
59
0
                bn_run_indices.push(i);
60
                // BNs aren't real, skip over them.
61
0
                continue;
62
0
            }
63
64
            // Store the processing class of all rules before W2/W1.
65
            // Used to keep track of the last strong character for W2. W3 is able to insert new strong
66
            // characters, so we don't want to be misled by it.
67
0
            let mut w2_processing_class = processing_classes[i];
68
69
            // <http://www.unicode.org/reports/tr9/#W1>
70
            //
71
72
0
            if processing_classes[i] == NSM {
73
0
                processing_classes[i] = match prev_class_before_w1 {
74
0
                    RLI | LRI | FSI | PDI => ON,
75
0
                    _ => prev_class_before_w1,
76
                };
77
                // W1 occurs before W2, update this.
78
0
                w2_processing_class = processing_classes[i];
79
0
            }
80
81
0
            prev_class_before_w1 = processing_classes[i];
82
83
            // <http://www.unicode.org/reports/tr9/#W2>
84
            // <http://www.unicode.org/reports/tr9/#W3>
85
            //
86
0
            match processing_classes[i] {
87
                EN => {
88
0
                    if last_strong_is_al {
89
0
                        // W2. If previous strong char was AL, change EN to AN.
90
0
                        processing_classes[i] = AN;
91
0
                    }
92
                }
93
                // W3.
94
0
                AL => processing_classes[i] = R,
95
0
                _ => {}
96
            }
97
98
            // update last_strong_is_al.
99
0
            match w2_processing_class {
100
0
                L | R => {
101
0
                    last_strong_is_al = false;
102
0
                }
103
0
                AL => {
104
0
                    last_strong_is_al = true;
105
0
                }
106
0
                _ => {}
107
            }
108
109
0
            let class_before_w456 = processing_classes[i];
110
111
            // <http://www.unicode.org/reports/tr9/#W4>
112
            // <http://www.unicode.org/reports/tr9/#W5>
113
            // <http://www.unicode.org/reports/tr9/#W6> (separators only)
114
            // (see below for W6 terminator code)
115
            //
116
0
            match processing_classes[i] {
117
                // <http://www.unicode.org/reports/tr9/#W6>
118
                EN => {
119
                    // W5. If a run of ETs is adjacent to an EN, change the ETs to EN.
120
0
                    for j in &et_run_indices {
121
0
                        processing_classes[*j] = EN;
122
0
                    }
123
0
                    et_run_indices.clear();
124
                }
125
126
                // <http://www.unicode.org/reports/tr9/#W4>
127
                // <http://www.unicode.org/reports/tr9/#W6>
128
                ES | CS => {
129
                    // See https://github.com/servo/unicode-bidi/issues/86 for improving this.
130
                    // We want to make sure we check the correct next character by skipping past the rest
131
                    // of this one.
132
0
                    if let Some((_, char_len)) = text.char_at(i) {
133
0
                        let mut next_class = sequence
134
0
                            .iter_forwards_from(i + char_len, run_index)
135
0
                            .map(|j| processing_classes[j])
Unexecuted instantiation: unicode_bidi::implicit::resolve_weak::<str>::{closure#0}
Unexecuted instantiation: unicode_bidi::implicit::resolve_weak::<_>::{closure#0}
136
                            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
137
0
                            .find(not_removed_by_x9)
138
0
                            .unwrap_or(sequence.eos);
139
0
                        if next_class == EN && last_strong_is_al {
140
0
                            // Apply W2 to next_class. We know that last_strong_is_al
141
0
                            // has no chance of changing on this character so we can still assume its value
142
0
                            // will be the same by the time we get to it.
143
0
                            next_class = AN;
144
0
                        }
145
0
                        processing_classes[i] =
146
0
                            match (prev_class_before_w4, processing_classes[i], next_class) {
147
                                // W4
148
0
                                (EN, ES, EN) | (EN, CS, EN) => EN,
149
                                // W4
150
0
                                (AN, CS, AN) => AN,
151
                                // W6 (separators only)
152
0
                                (_, _, _) => ON,
153
                            };
154
155
                        // W6 + <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
156
                        // We have to do this before W5 gets its grubby hands on these characters and thinks
157
                        // they're part of an ET run.
158
                        // We check for ON to ensure that we had hit the W6 branch above, since this `ES | CS` match
159
                        // arm handles both W4 and W6.
160
0
                        if processing_classes[i] == ON {
161
0
                            for idx in sequence.iter_backwards_from(i, run_index) {
162
0
                                let class = &mut processing_classes[idx];
163
0
                                if *class != BN {
164
0
                                    break;
165
0
                                }
166
0
                                *class = ON;
167
                            }
168
0
                            for idx in sequence.iter_forwards_from(i + char_len, run_index) {
169
0
                                let class = &mut processing_classes[idx];
170
0
                                if *class != BN {
171
0
                                    break;
172
0
                                }
173
0
                                *class = ON;
174
                            }
175
0
                        }
176
0
                    } else {
177
0
                        // We're in the middle of a character, copy over work done for previous bytes
178
0
                        // since it's going to be the same answer.
179
0
                        processing_classes[i] = processing_classes[i - 1];
180
0
                    }
181
                }
182
                // <http://www.unicode.org/reports/tr9/#W5>
183
                ET => {
184
0
                    match prev_class_before_w5 {
185
0
                        EN => processing_classes[i] = EN,
186
0
                        _ => {
187
0
                            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
188
0
                            // If there was a BN run before this, that's now a part of this ET run.
189
0
                            et_run_indices.extend(bn_run_indices.clone());
190
0
191
0
                            // In case this is followed by an EN.
192
0
                            et_run_indices.push(i);
193
0
                        }
194
                    }
195
                }
196
0
                _ => {}
197
            }
198
199
            // Common loop iteration code
200
            //
201
202
            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
203
            // BN runs would have already continued the loop, clear them before we get to the next one.
204
0
            bn_run_indices.clear();
205
206
            // W6 above only deals with separators, so it doesn't change anything W5 cares about,
207
            // so we still can update this after running that part of W6.
208
0
            prev_class_before_w5 = processing_classes[i];
209
210
            // <http://www.unicode.org/reports/tr9/#W6> (terminators only)
211
            // (see above for W6 separator code)
212
            //
213
0
            if prev_class_before_w5 != ET {
214
                // W6. If we didn't find an adjacent EN, turn any ETs into ON instead.
215
0
                for j in &et_run_indices {
216
0
                    processing_classes[*j] = ON;
217
0
                }
218
0
                et_run_indices.clear();
219
0
            }
220
221
            // We stashed this before W4/5/6 could get their grubby hands on it, and it's not
222
            // used in the W6 terminator code below so we can update it now.
223
0
            prev_class_before_w4 = class_before_w456;
224
        }
225
    }
226
    // Rerun this check in case we ended with a sequence of BNs (i.e., we'd never
227
    // hit the end of the for loop above).
228
    // W6. If we didn't find an adjacent EN, turn any ETs into ON instead.
229
0
    for j in &et_run_indices {
230
0
        processing_classes[*j] = ON;
231
0
    }
232
0
    et_run_indices.clear();
233
234
    // W7. If the previous strong char was L, change EN to L.
235
0
    let mut last_strong_is_l = sequence.sos == L;
236
0
    for i in sequence.runs.iter().cloned().flatten() {
237
0
        match processing_classes[i] {
238
0
            EN if last_strong_is_l => {
239
0
                processing_classes[i] = L;
240
0
            }
241
0
            L => {
242
0
                last_strong_is_l = true;
243
0
            }
244
0
            R | AL => {
245
0
                last_strong_is_l = false;
246
0
            }
247
            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
248
            // Already scanning past BN here.
249
0
            _ => {}
250
        }
251
    }
252
0
}
Unexecuted instantiation: unicode_bidi::implicit::resolve_weak::<str>
Unexecuted instantiation: unicode_bidi::implicit::resolve_weak::<_>
253
254
#[cfg(feature = "smallvec")]
255
type BracketPairVec = SmallVec<[BracketPair; 8]>;
256
#[cfg(not(feature = "smallvec"))]
257
type BracketPairVec = Vec<BracketPair>;
258
259
/// 3.3.5 Resolving Neutral Types
260
///
261
/// <http://www.unicode.org/reports/tr9/#Resolving_Neutral_Types>
262
#[cfg_attr(feature = "flame_it", flamer::flame)]
263
0
pub fn resolve_neutral<'a, D: BidiDataSource, T: TextSource<'a> + ?Sized>(
264
0
    text: &'a T,
265
0
    data_source: &D,
266
0
    sequence: &IsolatingRunSequence,
267
0
    levels: &[Level],
268
0
    original_classes: &[BidiClass],
269
0
    processing_classes: &mut [BidiClass],
270
0
) {
271
    // e = embedding direction
272
0
    let e: BidiClass = levels[sequence.runs[0].start].bidi_class();
273
0
    let not_e = if e == BidiClass::L {
274
0
        BidiClass::R
275
    } else {
276
0
        BidiClass::L
277
    };
278
    // N0. Process bracket pairs.
279
280
    // > Identify the bracket pairs in the current isolating run sequence according to BD16.
281
    // We use processing_classes, not original_classes, due to BD14/BD15
282
0
    let mut bracket_pairs = BracketPairVec::new();
283
0
    identify_bracket_pairs(
284
0
        text,
285
0
        data_source,
286
0
        sequence,
287
0
        processing_classes,
288
0
        &mut bracket_pairs,
289
    );
290
291
    // > For each bracket-pair element in the list of pairs of text positions
292
    //
293
    // Note: Rust ranges are interpreted as [start..end), be careful using `pair` directly
294
    // for indexing as it will include the opening bracket pair but not the closing one.
295
0
    for pair in bracket_pairs {
296
        #[cfg(feature = "std")]
297
        debug_assert!(
298
            pair.start < processing_classes.len(),
299
            "identify_bracket_pairs returned a range that is out of bounds!"
300
        );
301
        #[cfg(feature = "std")]
302
        debug_assert!(
303
            pair.end < processing_classes.len(),
304
            "identify_bracket_pairs returned a range that is out of bounds!"
305
        );
306
0
        let mut found_e = false;
307
0
        let mut found_not_e = false;
308
0
        let mut class_to_set = None;
309
310
0
        let start_char_len =
311
0
            T::char_len(text.subrange(pair.start..pair.end).chars().next().unwrap());
312
        // > Inspect the bidirectional types of the characters enclosed within the bracket pair.
313
        //
314
        // `pair` is [start, end) so we will end up processing the opening character but not the closing one.
315
        //
316
0
        for enclosed_i in sequence.iter_forwards_from(pair.start + start_char_len, pair.start_run) {
317
0
            if enclosed_i >= pair.end {
318
                #[cfg(feature = "std")]
319
                debug_assert!(
320
                    enclosed_i == pair.end,
321
                    "If we skipped past this, the iterator is broken"
322
                );
323
0
                break;
324
0
            }
325
0
            let class = processing_classes[enclosed_i];
326
0
            if class == e {
327
0
                found_e = true;
328
0
            } else if class == not_e {
329
0
                found_not_e = true;
330
0
            } else if matches!(class, BidiClass::EN | BidiClass::AN) {
331
                // > Within this scope, bidirectional types EN and AN are treated as R.
332
0
                if e == BidiClass::L {
333
0
                    found_not_e = true;
334
0
                } else {
335
0
                    found_e = true;
336
0
                }
337
0
            }
338
339
            // If we have found a character with the class of the embedding direction
340
            // we can bail early.
341
0
            if found_e {
342
0
                break;
343
0
            }
344
        }
345
        // > If any strong type (either L or R) matching the embedding direction is found
346
0
        if found_e {
347
0
            // > .. set the type for both brackets in the pair to match the embedding direction
348
0
            class_to_set = Some(e);
349
0
        // > Otherwise, if there is a strong type it must be opposite the embedding direction
350
0
        } else if found_not_e {
351
            // > Therefore, test for an established context with a preceding strong type by
352
            // > checking backwards before the opening paired bracket
353
            // > until the first strong type (L, R, or sos) is found.
354
            // (see note above about processing_classes and character boundaries)
355
0
            let mut previous_strong = sequence
356
0
                .iter_backwards_from(pair.start, pair.start_run)
357
0
                .map(|i| processing_classes[i])
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<icu_properties::bidi::BidiClassAdapter, str>::{closure#0}
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<_, _>::{closure#0}
358
0
                .find(|class| {
359
0
                    matches!(
360
0
                        class,
361
                        BidiClass::L | BidiClass::R | BidiClass::EN | BidiClass::AN
362
                    )
363
0
                })
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<icu_properties::bidi::BidiClassAdapter, str>::{closure#1}
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<_, _>::{closure#1}
364
0
                .unwrap_or(sequence.sos);
365
366
            // > Within this scope, bidirectional types EN and AN are treated as R.
367
0
            if matches!(previous_strong, BidiClass::EN | BidiClass::AN) {
368
0
                previous_strong = BidiClass::R;
369
0
            }
370
371
            // > If the preceding strong type is also opposite the embedding direction,
372
            // > context is established,
373
            // > so set the type for both brackets in the pair to that direction.
374
            // AND
375
            // > Otherwise set the type for both brackets in the pair to the embedding direction.
376
            // > Either way it gets set to previous_strong
377
            //
378
            // Both branches amount to setting the type to the strong type.
379
0
            class_to_set = Some(previous_strong);
380
0
        }
381
382
0
        if let Some(class_to_set) = class_to_set {
383
            // Update all processing classes corresponding to the start and end elements, as requested.
384
            // We should include all bytes of the character, not the first one.
385
0
            let end_char_len =
386
0
                T::char_len(text.subrange(pair.end..text.len()).chars().next().unwrap());
387
0
            for class in &mut processing_classes[pair.start..pair.start + start_char_len] {
388
0
                *class = class_to_set;
389
0
            }
390
0
            for class in &mut processing_classes[pair.end..pair.end + end_char_len] {
391
0
                *class = class_to_set;
392
0
            }
393
            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
394
0
            for idx in sequence.iter_backwards_from(pair.start, pair.start_run) {
395
0
                let class = &mut processing_classes[idx];
396
0
                if *class != BN {
397
0
                    break;
398
0
                }
399
0
                *class = class_to_set;
400
            }
401
            // > Any number of characters that had original bidirectional character type NSM prior to the application of
402
            // > W1 that immediately follow a paired bracket which changed to L or R under N0 should change to match the type of their preceding bracket.
403
404
            // This rule deals with sequences of NSMs, so we can just update them all at once, we don't need to worry
405
            // about character boundaries. We do need to be careful to skip the full set of bytes for the parentheses characters.
406
0
            let nsm_start = pair.start + start_char_len;
407
0
            for idx in sequence.iter_forwards_from(nsm_start, pair.start_run) {
408
0
                let class = original_classes[idx];
409
0
                if class == BidiClass::NSM || processing_classes[idx] == BN {
410
0
                    processing_classes[idx] = class_to_set;
411
0
                } else {
412
0
                    break;
413
                }
414
            }
415
0
            let nsm_end = pair.end + end_char_len;
416
0
            for idx in sequence.iter_forwards_from(nsm_end, pair.end_run) {
417
0
                let class = original_classes[idx];
418
0
                if class == BidiClass::NSM || processing_classes[idx] == BN {
419
0
                    processing_classes[idx] = class_to_set;
420
0
                } else {
421
0
                    break;
422
                }
423
            }
424
0
        }
425
        // > Otherwise, there are no strong types within the bracket pair
426
        // > Therefore, do not set the type for that bracket pair
427
    }
428
429
    // N1 and N2.
430
    // Indices of every byte in this isolating run sequence
431
0
    let mut indices = sequence.runs.iter().flat_map(Clone::clone);
432
0
    let mut prev_class = sequence.sos;
433
0
    while let Some(mut i) = indices.next() {
434
        // Process sequences of NI characters.
435
        #[cfg(feature = "smallvec")]
436
        let mut ni_run = SmallVec::<[usize; 8]>::new();
437
        #[cfg(not(feature = "smallvec"))]
438
0
        let mut ni_run = Vec::new();
439
        // The BN is for <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
440
0
        if is_NI(processing_classes[i]) || processing_classes[i] == BN {
441
            // Consume a run of consecutive NI characters.
442
0
            ni_run.push(i);
443
            let mut next_class;
444
            loop {
445
0
                match indices.next() {
446
0
                    Some(j) => {
447
0
                        i = j;
448
0
                        next_class = processing_classes[j];
449
                        // The BN is for <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters>
450
0
                        if is_NI(next_class) || next_class == BN {
451
0
                            ni_run.push(i);
452
0
                        } else {
453
0
                            break;
454
                        }
455
                    }
456
                    None => {
457
0
                        next_class = sequence.eos;
458
0
                        break;
459
                    }
460
                };
461
            }
462
            // N1-N2.
463
            //
464
            // <http://www.unicode.org/reports/tr9/#N1>
465
            // <http://www.unicode.org/reports/tr9/#N2>
466
0
            let new_class = match (prev_class, next_class) {
467
0
                (L, L) => L,
468
                (R, R)
469
                | (R, AN)
470
                | (R, EN)
471
                | (AN, R)
472
                | (AN, AN)
473
                | (AN, EN)
474
                | (EN, R)
475
                | (EN, AN)
476
0
                | (EN, EN) => R,
477
0
                (_, _) => e,
478
            };
479
0
            for j in &ni_run {
480
0
                processing_classes[*j] = new_class;
481
0
            }
482
0
            ni_run.clear();
483
0
        }
484
0
        prev_class = processing_classes[i];
485
    }
486
0
}
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<icu_properties::bidi::BidiClassAdapter, str>
Unexecuted instantiation: unicode_bidi::implicit::resolve_neutral::<_, _>
487
488
struct BracketPair {
489
    /// The text-relative index of the opening bracket.
490
    start: usize,
491
    /// The text-relative index of the closing bracket.
492
    end: usize,
493
    /// The index of the run (in the run sequence) that the opening bracket is in.
494
    start_run: usize,
495
    /// The index of the run (in the run sequence) that the closing bracket is in.
496
    end_run: usize,
497
}
498
/// 3.1.3 Identifying Bracket Pairs
499
///
500
/// Returns all paired brackets in the source, as indices into the
501
/// text source.
502
///
503
/// <https://www.unicode.org/reports/tr9/#BD16>
504
0
fn identify_bracket_pairs<'a, T: TextSource<'a> + ?Sized, D: BidiDataSource>(
505
0
    text: &'a T,
506
0
    data_source: &D,
507
0
    run_sequence: &IsolatingRunSequence,
508
0
    original_classes: &[BidiClass],
509
0
    bracket_pairs: &mut BracketPairVec,
510
0
) {
511
    #[cfg(feature = "smallvec")]
512
    let mut stack = SmallVec::<[(char, usize, usize); 8]>::new();
513
    #[cfg(not(feature = "smallvec"))]
514
0
    let mut stack = Vec::new();
515
516
0
    for (run_index, level_run) in run_sequence.runs.iter().enumerate() {
517
0
        for (i, ch) in text.subrange(level_run.clone()).char_indices() {
518
0
            let actual_index = level_run.start + i;
519
520
            // All paren characters are ON.
521
            // From BidiBrackets.txt:
522
            // > The Unicode property value stability policy guarantees that characters
523
            // > which have bpt=o or bpt=c also have bc=ON and Bidi_M=Y
524
0
            if original_classes[actual_index] != BidiClass::ON {
525
0
                continue;
526
0
            }
527
528
0
            if let Some(matched) = data_source.bidi_matched_opening_bracket(ch) {
529
0
                if matched.is_open {
530
                    // > If an opening paired bracket is found ...
531
532
                    // > ... and there is no room in the stack,
533
                    // > stop processing BD16 for the remainder of the isolating run sequence.
534
0
                    if stack.len() >= 63 {
535
0
                        break;
536
0
                    }
537
                    // > ... push its Bidi_Paired_Bracket property value and its text position onto the stack
538
0
                    stack.push((matched.opening, actual_index, run_index))
539
                } else {
540
                    // > If a closing paired bracket is found, do the following
541
542
                    // > Declare a variable that holds a reference to the current stack element
543
                    // > and initialize it with the top element of the stack.
544
                    // AND
545
                    // > Else, if the current stack element is not at the bottom of the stack
546
0
                    for (stack_index, element) in stack.iter().enumerate().rev() {
547
                        // > Compare the closing paired bracket being inspected or its canonical
548
                        // > equivalent to the bracket in the current stack element.
549
0
                        if element.0 == matched.opening {
550
                            // > If the values match, meaning the two characters form a bracket pair, then
551
552
                            // > Append the text position in the current stack element together with the
553
                            // > text position of the closing paired bracket to the list.
554
0
                            let pair = BracketPair {
555
0
                                start: element.1,
556
0
                                end: actual_index,
557
0
                                start_run: element.2,
558
0
                                end_run: run_index,
559
0
                            };
560
0
                            bracket_pairs.push(pair);
561
562
                            // > Pop the stack through the current stack element inclusively.
563
0
                            stack.truncate(stack_index);
564
0
                            break;
565
0
                        }
566
                    }
567
                }
568
0
            }
569
        }
570
    }
571
    // > Sort the list of pairs of text positions in ascending order based on
572
    // > the text position of the opening paired bracket.
573
0
    bracket_pairs.sort_by_key(|r| r.start);
574
0
}
Unexecuted instantiation: unicode_bidi::implicit::identify_bracket_pairs::<str, icu_properties::bidi::BidiClassAdapter>
Unexecuted instantiation: unicode_bidi::implicit::identify_bracket_pairs::<_, _>
575
576
/// 3.3.6 Resolving Implicit Levels
577
///
578
/// Returns the maximum embedding level in the paragraph.
579
///
580
/// <http://www.unicode.org/reports/tr9/#Resolving_Implicit_Levels>
581
#[cfg_attr(feature = "flame_it", flamer::flame)]
582
0
pub fn resolve_levels(processing_classes: &[BidiClass], levels: &mut [Level]) -> Level {
583
0
    let mut max_level = Level::ltr();
584
0
    assert_eq!(processing_classes.len(), levels.len());
585
0
    for i in 0..levels.len() {
586
0
        match (levels[i].is_rtl(), processing_classes[i]) {
587
0
            (false, AN) | (false, EN) => levels[i].raise(2).expect("Level number error"),
588
            (false, R) | (true, L) | (true, EN) | (true, AN) => {
589
0
                levels[i].raise(1).expect("Level number error")
590
            }
591
            // <https://www.unicode.org/reports/tr9/#Retaining_Explicit_Formatting_Characters> handled here
592
0
            (_, _) => {}
593
        }
594
0
        max_level = max(max_level, levels[i]);
595
    }
596
597
0
    max_level
598
0
}
599
600
/// Neutral or Isolate formatting character (B, S, WS, ON, FSI, LRI, RLI, PDI)
601
///
602
/// <http://www.unicode.org/reports/tr9/#NI>
603
#[allow(non_snake_case)]
604
0
fn is_NI(class: BidiClass) -> bool {
605
0
    matches!(class, B | S | WS | ON | FSI | LRI | RLI | PDI)
606
0
}