wdl-format 0.18.0

Formatting of WDL (Workflow Description Language) documents
Documentation
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
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
//! Formatting of WDL v1.x expression elements.

use wdl_ast::SyntaxKind;

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

/// Formats a [`SepOption`](wdl_ast::v1::SepOption).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_sep_option(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

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

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

/// Formats a [`DefaultOption`](wdl_ast::v1::DefaultOption).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_default_option(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

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

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

/// Formats a [`TrueFalseOption`](wdl_ast::v1::TrueFalseOption).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_true_false_option(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);
        (&first_equals).write(stream, config);
        (&first_value).write(stream, config);
        stream.end_word();
        (&second_keyword).write(stream, config);
        (&second_equals).write(stream, config);
        (&second_value).write(stream, config);
    } else {
        assert!(second_keyword_kind == SyntaxKind::TrueKeyword);
        (&second_keyword).write(stream, config);
        (&second_equals).write(stream, config);
        (&second_value).write(stream, config);
        stream.end_word();
        (&first_keyword).write(stream, config);
        (&first_equals).write(stream, config);
        (&first_value).write(stream, config);
    }
    stream.end_word();
}

/// Formats a [`Placeholder`](wdl_ast::v1::Placeholder).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_placeholder(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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().inner();
    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, config);
        }
        _ => {
            unreachable!("unexpected placeholder open: {:?}", text);
        }
    }

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

/// Formats a [`LiteralString`](wdl_ast::v1::LiteralString).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_string(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);
            }
            SyntaxKind::LiteralStringText => {
                let mut replacement = String::new();
                let syntax = child.element().inner();
                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()
                                && *next_c == '\''
                            {
                                // Do not write this backslash as single quotes don't need
                                // escaping in a double-quoted string (and we format all
                                // LiteralStrings as double-quoted strings).
                                prev_c = Some(c);
                                continue;
                            }
                            replacement.push(c);
                        }
                        '"' => {
                            if prev_c.is_none_or(|c| c != '\\') {
                                // This double quote sign is not escaped, so we need to escape
                                // it. This happens when a single quoted string is re-formatted
                                // as a double quoted string.
                                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, config);
            }
            _ => {
                unreachable!(
                    "unexpected child in literal string: {:?}",
                    child.element().kind()
                );
            }
        }
    }
}

/// Formats a [`LiteralNone`](wdl_ast::v1::LiteralNone).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_none(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);
}

/// Formats a [`LiteralPair`](wdl_ast::v1::LiteralPair).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_pair(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

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

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

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

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

/// Formats a [`LiteralBoolean`](wdl_ast::v1::LiteralBoolean).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_boolean(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    let mut children = element.children().expect("literal boolean children");
    let bool = children.next().expect("literal boolean token");
    (&bool).write(stream, config);
}

/// Formats a [`NegationExpr`](wdl_ast::v1::NegationExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_negation_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

    let expr = children.next().expect("negation expr expr");
    (&expr).write(stream, config);
}

/// Formats a [`LiteralInteger`](wdl_ast::v1::LiteralInteger).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_integer(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("literal integer children") {
        (&child).write(stream, config);
    }
}

/// Formats a [`LiteralFloat`](wdl_ast::v1::LiteralFloat).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_float(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("literal float children") {
        (&child).write(stream, config);
    }
}

/// Formats a [`NameRefExpr`](wdl_ast::v1::NameRefExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_name_ref_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    let mut children = element.children().expect("name ref children");
    let name = children.next().expect("name ref name");
    (&name).write(stream, config);
}

/// Formats a [`LiteralArray`](wdl_ast::v1::LiteralArray).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_array(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

    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, config);
        if let Some(comma) = commas.next() {
            (comma).write(stream, config);
        } else if config.trailing_commas {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

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

/// Formats a [`LiteralMapItem`](wdl_ast::v1::LiteralMapItem).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_map_item(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    let mut children = element.children().expect("literal map item children");

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

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

    let value = children.next().expect("literal map item value");
    (&value).write(stream, config);
}

/// Formats a [`LiteralMap`](wdl_ast::v1::LiteralMap).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_map(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);
    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, config);
        if let Some(comma) = commas.next() {
            (comma).write(stream, config);
        } else if config.trailing_commas {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

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

/// Formats a [`LiteralObjectItem`](wdl_ast::v1::LiteralObjectItem).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_object_item(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

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

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

/// Formats a [`LiteralObject`](wdl_ast::v1::LiteralObject).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_literal_object(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    let mut children = element.children().expect("literal object children");

    let object_keyword = children.next().expect("literal object keyword");
    assert!(object_keyword.element().kind() == SyntaxKind::ObjectKeyword);
    (&object_keyword).write(stream, config);
    stream.end_word();

    let open_brace = children.next().expect("literal object open brace");
    assert!(open_brace.element().kind() == SyntaxKind::OpenBrace);
    (&open_brace).write(stream, config);
    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, config);
        if let Some(comma) = commas.next() {
            (comma).write(stream, config);
        } else if config.trailing_commas {
            stream.push_literal(",".to_string(), SyntaxKind::Comma);
        }
        stream.end_line();
    }

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

/// Formats a [`AccessExpr`](wdl_ast::v1::AccessExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_access_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("access expr children") {
        (&child).write(stream, config);
    }
}

/// Formats a [`CallExpr`](wdl_ast::v1::CallExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_call_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("call expr children") {
        (&child).write(stream, config);
        if child.element().kind() == SyntaxKind::Comma {
            stream.end_word();
        }
    }
}

/// Formats an [`IndexExpr`](wdl_ast::v1::IndexExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_index_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("index expr children") {
        (&child).write(stream, config);
    }
}

/// Formats an [`AdditionExpr`](wdl_ast::v1::AdditionExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_addition_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("addition expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Plus;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`SubtractionExpr`](wdl_ast::v1::SubtractionExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_subtraction_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("subtraction expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Minus;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`MultiplicationExpr`](wdl_ast::v1::MultiplicationExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_multiplication_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("multiplication expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Asterisk;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`DivisionExpr`](wdl_ast::v1::DivisionExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_division_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("division expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Slash;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`ModuloExpr`](wdl_ast::v1::ModuloExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_modulo_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("modulo expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Percent;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats an [`ExponentiationExpr`](wdl_ast::v1::ExponentiationExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_exponentiation_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("exponentiation expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Exponentiation;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`LogicalAndExpr`](wdl_ast::v1::LogicalAndExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_logical_and_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("logical and expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::LogicalAnd;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`LogicalNotExpr`](wdl_ast::v1::LogicalNotExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_logical_not_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    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, config);

    let expr = children.next().expect("logical not expr expr");
    (&expr).write(stream, config);
}

/// Formats a [`LogicalOrExpr`](wdl_ast::v1::LogicalOrExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_logical_or_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("logical or expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::LogicalOr;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats an [`EqualityExpr`](wdl_ast::v1::EqualityExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_equality_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("equality expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Equal;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`InequalityExpr`](wdl_ast::v1::InequalityExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_inequality_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("inequality expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::NotEqual;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`LessExpr`](wdl_ast::v1::LessExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_less_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("less expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Less;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`LessEqualExpr`](wdl_ast::v1::LessEqualExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_less_equal_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("less equal expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::LessEqual;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`GreaterExpr`](wdl_ast::v1::GreaterExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_greater_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("greater expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::Greater;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`GreaterEqualExpr`](wdl_ast::v1::GreaterEqualExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_greater_equal_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("greater equal expr children") {
        let whitespace_wrapped = child.element().kind() == SyntaxKind::GreaterEqual;
        if whitespace_wrapped {
            stream.end_word();
        }
        (&child).write(stream, config);
        if whitespace_wrapped {
            stream.end_word();
        }
    }
}

/// Formats a [`ParenthesizedExpr`](wdl_ast::v1::ParenthesizedExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_parenthesized_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    for child in element.children().expect("parenthesized expr children") {
        (&child).write(stream, config);
    }
}

/// Formats an [`IfExpr`](wdl_ast::v1::IfExpr).
///
/// # Panics
///
/// This will panic if the element does not have the expected children.
pub fn format_if_expr(
    element: &FormatElement,
    stream: &mut TokenStream<PreToken>,
    config: &Config,
) {
    let in_chain = {
        let mut cur = element.element().inner();
        let mut result = false;
        while let Some(prev) = cur.prev_sibling_or_token() {
            cur = prev;
            if cur.kind().is_trivia() {
                continue;
            }
            result = cur.kind() == SyntaxKind::ElseKeyword;
            break;
        }
        result
    };

    for child in element.children().expect("if expr children") {
        match child.element().kind() {
            SyntaxKind::ThenKeyword => {
                if !in_chain {
                    stream.increment_indent();
                } else {
                    stream.end_line();
                }
            }
            SyntaxKind::ElseKeyword => {
                stream.end_line();
            }
            _ => {}
        }
        (&child).write(stream, config);
        stream.end_word();
    }

    if !in_chain {
        stream.decrement_indent();
    }
}