wdl_format/v1/
expr.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
//! Formatting of WDL v1.x expression elements.

use wdl_ast::SyntaxKind;

use crate::PreToken;
use crate::TokenStream;
use crate::Writable as _;
use crate::element::FormatElement;

/// Formats a [`SepOption`](wdl_ast::v1::SepOption).
pub fn format_sep_option(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("sep option children");

    let sep_keyword = children.next().expect("sep keyword");
    assert!(sep_keyword.element().kind() == SyntaxKind::Ident);
    (&sep_keyword).write(stream);

    let equals = children.next().expect("sep equals");
    assert!(equals.element().kind() == SyntaxKind::Assignment);
    (&equals).write(stream);

    let sep_value = children.next().expect("sep value");
    assert!(sep_value.element().kind() == SyntaxKind::LiteralStringNode);
    (&sep_value).write(stream);
    stream.end_word();

    assert!(children.next().is_none());
}

/// Formats a [`DefaultOption`](wdl_ast::v1::DefaultOption).
pub fn format_default_option(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("default option children");

    let default_keyword = children.next().expect("default keyword");
    assert!(default_keyword.element().kind() == SyntaxKind::Ident);
    (&default_keyword).write(stream);

    let equals = children.next().expect("default equals");
    assert!(equals.element().kind() == SyntaxKind::Assignment);
    (&equals).write(stream);

    let default_value = children.next().expect("default value");
    (&default_value).write(stream);
    stream.end_word();

    assert!(children.next().is_none());
}

/// Formats a [`TrueFalseOption`](wdl_ast::v1::TrueFalseOption).
pub fn format_true_false_option(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("true false option children");

    let first_keyword = children.next().expect("true false option first keyword");
    let first_keyword_kind = first_keyword.element().kind();
    assert!(
        first_keyword_kind == SyntaxKind::TrueKeyword
            || first_keyword_kind == SyntaxKind::FalseKeyword
    );

    let first_equals = children.next().expect("true false option first equals");
    assert!(first_equals.element().kind() == SyntaxKind::Assignment);

    let first_value = children.next().expect("true false option first value");

    let second_keyword = children.next().expect("true false option second keyword");
    let second_keyword_kind = second_keyword.element().kind();
    assert!(
        second_keyword_kind == SyntaxKind::TrueKeyword
            || second_keyword_kind == SyntaxKind::FalseKeyword
    );

    let second_equals = children.next().expect("true false option second equals");
    assert!(second_equals.element().kind() == SyntaxKind::Assignment);

    let second_value = children.next().expect("true false option second value");

    if first_keyword_kind == SyntaxKind::TrueKeyword {
        assert!(second_keyword_kind == SyntaxKind::FalseKeyword);
        (&first_keyword).write(stream);
        (&first_equals).write(stream);
        (&first_value).write(stream);
        stream.end_word();
        (&second_keyword).write(stream);
        (&second_equals).write(stream);
        (&second_value).write(stream);
    } else {
        assert!(second_keyword_kind == SyntaxKind::TrueKeyword);
        (&second_keyword).write(stream);
        (&second_equals).write(stream);
        (&second_value).write(stream);
        stream.end_word();
        (&first_keyword).write(stream);
        (&first_equals).write(stream);
        (&first_value).write(stream);
    }
    stream.end_word();

    assert!(children.next().is_none());
}

/// Formats a [`Placeholder`](wdl_ast::v1::Placeholder).
pub fn format_placeholder(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("placeholder children");

    let open = children.next().expect("placeholder open");
    assert!(open.element().kind() == SyntaxKind::PlaceholderOpen);
    let syntax = open.element().syntax();
    let text = syntax.as_token().expect("token").text();
    match text {
        "${" => {
            stream.push_literal_in_place_of_token(
                open.element().as_token().expect("token"),
                "~{".to_owned(),
            );
        }
        "~{" => {
            (&open).write(stream);
        }
        _ => {
            unreachable!("unexpected placeholder open: {:?}", text);
        }
    }

    for child in children {
        (&child).write(stream);
    }
}

/// Formats a [`LiteralString`](wdl_ast::v1::LiteralString).
pub fn format_literal_string(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("literal string children") {
        match child.element().kind() {
            SyntaxKind::SingleQuote => {
                stream.push_literal_in_place_of_token(
                    child.element().as_token().expect("token"),
                    "\"".to_owned(),
                );
            }
            SyntaxKind::OpenHeredoc | SyntaxKind::CloseHeredoc | SyntaxKind::DoubleQuote => {
                (&child).write(stream);
            }
            SyntaxKind::LiteralStringText => {
                let mut replacement = String::new();
                let syntax = child.element().syntax();
                let mut chars = syntax.as_token().expect("token").text().chars().peekable();
                let mut prev_c = None;
                while let Some(c) = chars.next() {
                    match c {
                        '\\' => {
                            if let Some(next_c) = chars.peek() {
                                if *next_c == '\'' {
                                    // Do not write this backslash
                                    prev_c = Some(c);
                                    continue;
                                }
                            }
                            replacement.push(c);
                        }
                        '"' => {
                            if let Some(pc) = prev_c {
                                if pc != '\\' {
                                    replacement.push('\\');
                                }
                            }
                            replacement.push(c);
                        }
                        _ => {
                            replacement.push(c);
                        }
                    }
                    prev_c = Some(c);
                }

                stream.push_literal_in_place_of_token(
                    child.element().as_token().expect("token"),
                    replacement,
                );
            }
            SyntaxKind::PlaceholderNode => {
                (&child).write(stream);
            }
            _ => {
                unreachable!(
                    "unexpected child in literal string: {:?}",
                    child.element().kind()
                );
            }
        }
    }
}

/// Formats a [`LiteralNone`](wdl_ast::v1::LiteralNone).
pub fn format_literal_none(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal none children");
    let none = children.next().expect("literal none token");
    assert!(none.element().kind() == SyntaxKind::NoneKeyword);
    (&none).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralPair`](wdl_ast::v1::LiteralPair).
pub fn format_literal_pair(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal pair children");

    let open_paren = children.next().expect("literal pair open paren");
    assert!(open_paren.element().kind() == SyntaxKind::OpenParen);
    (&open_paren).write(stream);

    let left = children.next().expect("literal pair left");
    (&left).write(stream);

    let comma = children.next().expect("literal pair comma");
    assert!(comma.element().kind() == SyntaxKind::Comma);
    (&comma).write(stream);
    stream.end_word();

    let right = children.next().expect("literal pair right");
    (&right).write(stream);

    let close_paren = children.next().expect("literal pair close paren");
    assert!(close_paren.element().kind() == SyntaxKind::CloseParen);
    (&close_paren).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralBoolean`](wdl_ast::v1::LiteralBoolean).
pub fn format_literal_boolean(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal boolean children");
    let bool = children.next().expect("literal boolean token");
    (&bool).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`NegationExpr`](wdl_ast::v1::NegationExpr).
pub fn format_negation_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("negation expr children");
    let minus = children.next().expect("negation expr minus");
    assert!(minus.element().kind() == SyntaxKind::Minus);
    (&minus).write(stream);

    let expr = children.next().expect("negation expr expr");
    (&expr).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralInteger`](wdl_ast::v1::LiteralInteger).
pub fn format_literal_integer(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("literal integer children") {
        (&child).write(stream);
    }
}

/// Formats a [`LiteralFloat`](wdl_ast::v1::LiteralFloat).
pub fn format_literal_float(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("literal float children") {
        (&child).write(stream);
    }
}

/// Formats a [`NameRef`](wdl_ast::v1::NameRef).
pub fn format_name_ref(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("name ref children");
    let name = children.next().expect("name ref name");
    (&name).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralArray`](wdl_ast::v1::LiteralArray).
pub fn format_literal_array(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal array children");

    let open_bracket = children.next().expect("literal array open bracket");
    assert!(open_bracket.element().kind() == SyntaxKind::OpenBracket);
    (&open_bracket).write(stream);

    let mut items = Vec::new();
    let mut commas = Vec::new();
    let mut close_bracket = None;

    for child in children {
        match child.element().kind() {
            SyntaxKind::CloseBracket => {
                close_bracket = Some(child.to_owned());
            }
            SyntaxKind::Comma => {
                commas.push(child.to_owned());
            }
            _ => {
                items.push(child.to_owned());
            }
        }
    }

    let empty = items.is_empty();
    if !empty {
        stream.increment_indent();
    }
    let mut commas = commas.iter();
    for item in items {
        (&item).write(stream);
        if let Some(comma) = commas.next() {
            (comma).write(stream);
        } else {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

    if !empty {
        stream.decrement_indent();
    }
    (&close_bracket.expect("literal array close bracket")).write(stream);
}

/// Formats a [`LiteralMapItem`](wdl_ast::v1::LiteralMapItem).
pub fn format_literal_map_item(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal map item children");

    let key = children.next().expect("literal map item key");
    (&key).write(stream);

    let colon = children.next().expect("literal map item colon");
    assert!(colon.element().kind() == SyntaxKind::Colon);
    (&colon).write(stream);
    stream.end_word();

    let value = children.next().expect("literal map item value");
    (&value).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralMap`](wdl_ast::v1::LiteralMap).
pub fn format_literal_map(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal map children");

    let open_brace = children.next().expect("literal map open brace");
    assert!(open_brace.element().kind() == SyntaxKind::OpenBrace);
    (&open_brace).write(stream);
    stream.increment_indent();

    let mut items = Vec::new();
    let mut commas = Vec::new();
    let mut close_brace = None;

    for child in children {
        match child.element().kind() {
            SyntaxKind::CloseBrace => {
                close_brace = Some(child.to_owned());
            }
            SyntaxKind::Comma => {
                commas.push(child.to_owned());
            }
            _ => {
                items.push(child.to_owned());
            }
        }
    }

    let mut commas = commas.iter();
    for item in items {
        (&item).write(stream);
        if let Some(comma) = commas.next() {
            (comma).write(stream);
        } else {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

    stream.decrement_indent();
    (&close_brace.expect("literal map close brace")).write(stream);
}

/// Formats a [`LiteralObjectItem`](wdl_ast::v1::LiteralObjectItem).
pub fn format_literal_object_item(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal object item children");

    let key = children.next().expect("literal object item key");
    assert!(key.element().kind() == SyntaxKind::Ident);
    (&key).write(stream);

    let colon = children.next().expect("literal object item colon");
    assert!(colon.element().kind() == SyntaxKind::Colon);
    (&colon).write(stream);
    stream.end_word();

    let value = children.next().expect("literal object item value");
    (&value).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LiteralObject`](wdl_ast::v1::LiteralObject).
pub fn format_literal_object(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("literal object children");

    let open_brace = children.next().expect("literal object open brace");
    assert!(open_brace.element().kind() == SyntaxKind::OpenBrace);
    (&open_brace).write(stream);
    stream.increment_indent();

    let mut members = Vec::new();
    let mut commas = Vec::new();
    let mut close_brace = None;

    for child in children {
        match child.element().kind() {
            SyntaxKind::CloseBrace => {
                close_brace = Some(child.to_owned());
            }
            SyntaxKind::Comma => {
                commas.push(child.to_owned());
            }
            _ => {
                members.push(child.to_owned());
            }
        }
    }

    let mut commas = commas.iter();
    for member in members {
        (&member).write(stream);
        if let Some(comma) = commas.next() {
            (comma).write(stream);
        } else {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

    stream.decrement_indent();
    (&close_brace.expect("literal object close brace")).write(stream);
}

/// Formats a [`AccessExpr`](wdl_ast::v1::AccessExpr).
pub fn format_access_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("access expr children") {
        (&child).write(stream);
    }
}

/// Formats a [`CallExpr`](wdl_ast::v1::CallExpr).
pub fn format_call_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("call expr children") {
        (&child).write(stream);
        if child.element().kind() == SyntaxKind::Comma {
            stream.end_word();
        }
    }
}

/// Formats an [`IndexExpr`](wdl_ast::v1::IndexExpr).
pub fn format_index_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("index expr children") {
        (&child).write(stream);
    }
}

/// Formats an [`AdditionExpr`](wdl_ast::v1::AdditionExpr).
pub fn format_addition_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("addition expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Plus;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`SubtractionExpr`](wdl_ast::v1::SubtractionExpr).
pub fn format_subtraction_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("subtraction expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Minus;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`MultiplicationExpr`](wdl_ast::v1::MultiplicationExpr).
pub fn format_multiplication_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("multiplication expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Asterisk;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`DivisionExpr`](wdl_ast::v1::DivisionExpr).
pub fn format_division_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("division expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Slash;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`ModuloExpr`](wdl_ast::v1::ModuloExpr).
pub fn format_modulo_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("modulo expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Percent;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats an [`ExponentiationExpr`](wdl_ast::v1::ExponentiationExpr).
pub fn format_exponentiation_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("exponentiation expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Exponentiation;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`LogicalAndExpr`](wdl_ast::v1::LogicalAndExpr).
pub fn format_logical_and_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("logical and expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::LogicalAnd;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`LogicalNotExpr`](wdl_ast::v1::LogicalNotExpr).
pub fn format_logical_not_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("logical not expr children");
    let not = children.next().expect("logical not expr not");
    assert!(not.element().kind() == SyntaxKind::Exclamation);
    (&not).write(stream);

    let expr = children.next().expect("logical not expr expr");
    (&expr).write(stream);
    assert!(children.next().is_none());
}

/// Formats a [`LogicalOrExpr`](wdl_ast::v1::LogicalOrExpr).
pub fn format_logical_or_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("logical or expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::LogicalOr;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats an [`EqualityExpr`](wdl_ast::v1::EqualityExpr).
pub fn format_equality_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("equality expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Equal;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`InequalityExpr`](wdl_ast::v1::InequalityExpr).
pub fn format_inequality_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("inequality expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::NotEqual;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`LessExpr`](wdl_ast::v1::LessExpr).
pub fn format_less_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("less expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Less;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`LessEqualExpr`](wdl_ast::v1::LessEqualExpr).
pub fn format_less_equal_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("less equal expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::LessEqual;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`GreaterExpr`](wdl_ast::v1::GreaterExpr).
pub fn format_greater_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("greater expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::Greater;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`GreaterEqualExpr`](wdl_ast::v1::GreaterEqualExpr).
pub fn format_greater_equal_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("greater equal expr children") {
        let should_end_word = child.element().kind() == SyntaxKind::GreaterEqual;
        if should_end_word {
            stream.end_word();
        }
        (&child).write(stream);
        if should_end_word {
            stream.end_word();
        }
    }
}

/// Formats a [`ParenthesizedExpr`](wdl_ast::v1::ParenthesizedExpr).
pub fn format_parenthesized_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    for child in element.children().expect("parenthesized expr children") {
        (&child).write(stream);
    }
}

/// Formats an [`IfExpr`](wdl_ast::v1::IfExpr).
pub fn format_if_expr(element: &FormatElement, stream: &mut TokenStream<PreToken>) {
    let mut children = element.children().expect("if expr children");

    let last = stream.last_literal_kind();

    // Nested `if` expressions are a special case where we don't want to add
    // parentheses or increment the indent level.
    // Otherwise, we need to add parentheses and increment the indent if the last
    // token is not an open parenthesis.
    let nested_else_if = matches!(last, Some(SyntaxKind::ElseKeyword));
    let paren_needed = !matches!(last, Some(SyntaxKind::OpenParen)) && !nested_else_if;

    if paren_needed {
        stream.push_literal("(".to_string(), SyntaxKind::OpenParen);
    }
    if !nested_else_if {
        stream.increment_indent();
    }

    let if_keyword = children.next().expect("if keyword");
    assert!(if_keyword.element().kind() == SyntaxKind::IfKeyword);
    (&if_keyword).write(stream);
    stream.end_word();

    for child in children {
        let kind = child.element().kind();
        if matches!(kind, SyntaxKind::ElseKeyword | SyntaxKind::ThenKeyword) {
            stream.end_line();
        }
        (&child).write(stream);
        if matches!(kind, SyntaxKind::ElseKeyword | SyntaxKind::ThenKeyword) {
            stream.end_word();
        }
    }

    if !nested_else_if {
        stream.decrement_indent();
    }
    if paren_needed {
        stream.push_literal(")".to_string(), SyntaxKind::CloseParen);
    }
}