ucg 0.8.0

A configuration generation grammar.
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
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
// Copyright 2017 Jeremy Wall <jeremy@marzhillstudios.com>
//
//  Licensed under the Apache License, Version 2.0 (the "License");
//  you may not use this file except in compliance with the License.
//  You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
//  Unless required by applicable law or agreed to in writing, software
//  distributed under the License is distributed on an "AS IS" BASIS,
//  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//  See the License for the specific language governing permissions and
//  limitations under the License.

//! The definitions of the ucg AST and Tokens.
use std;
use std::borrow::Borrow;
use std::cmp::Eq;
use std::cmp::Ordering;
use std::cmp::PartialEq;
use std::cmp::PartialOrd;
use std::collections::BTreeMap;
use std::convert::Into;
use std::fmt;
use std::hash::Hash;
use std::hash::Hasher;
use std::path::PathBuf;
use std::rc::Rc;

use abortable_parser;

use crate::build::scope::Scope;
use crate::build::Val;

pub mod printer;
pub mod rewrite;
pub mod typecheck;
pub mod walk;

#[derive(Debug, PartialEq, Clone)]
pub enum TemplatePart {
    Str(Vec<char>),
    PlaceHolder(usize),
    Expression(Expression),
}

macro_rules! enum_type_equality {
    ( $slf:ident, $r:expr, $( $l:pat ),* ) => {
        match $slf {
        $(
            $l => {
                if let $l = $r {
                    true
                } else {
                    false
                }
            }
        )*
        }
    }
}

/// Represents a line and a column position in UCG code.
///
/// It is used for generating error messages mostly. Most all
/// parts of the UCG AST have a positioned associated with them.
#[derive(Debug, PartialEq, Eq, Clone, PartialOrd, Ord, Hash)]
pub struct Position {
    pub file: Option<PathBuf>,
    pub line: usize,
    pub column: usize,
    pub offset: usize,
}

impl Position {
    /// Construct a new Position.
    pub fn new(line: usize, column: usize, offset: usize) -> Self {
        Position {
            file: None,
            line,
            column,
            offset,
        }
    }

    pub fn with_file<P: Into<PathBuf>>(mut self, file: P) -> Self {
        self.file = Some(file.into());
        self
    }
}

impl<'a> From<&'a Position> for Position {
    fn from(source: &'a Position) -> Self {
        source.clone()
    }
}

impl std::fmt::Display for Position {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
        if let Some(ref file) = self.file {
            write!(f, "file: {} ", file.to_string_lossy().to_string())?;
        }
        write!(f, "line: {} column: {}", self.line, self.column)
    }
}

/// Defines the types of tokens in UCG syntax.
#[derive(Debug, PartialEq, Eq, Clone, PartialOrd, Ord, Hash)]
pub enum TokenType {
    EMPTY,
    BOOLEAN,
    END,
    WS,
    COMMENT,
    QUOTED,
    PIPEQUOTE,
    DIGIT,
    BAREWORD,
    PUNCT,
}

/// Defines a Token representing a building block of UCG syntax.
///
/// Token's are passed to the parser stage to be parsed into an AST.
#[derive(Debug, PartialEq, Eq, Clone, PartialOrd, Ord, Hash)]
pub struct Token {
    pub typ: TokenType,
    pub fragment: Rc<str>,
    pub pos: Position,
}

impl Token {
    /// Constructs a new Token with a type and line and column information.
    pub fn new<S: Into<Rc<str>>, P: Into<Position>>(f: S, typ: TokenType, p: P) -> Self {
        Self::new_with_pos(f, typ, p.into())
    }

    // Constructs a new Token with a type and a Position.
    pub fn new_with_pos<S: Into<Rc<str>>>(f: S, typ: TokenType, pos: Position) -> Self {
        Token {
            typ,
            fragment: f.into(),
            pos,
        }
    }
}

impl<'a> From<&'a Token> for PositionedItem<Rc<str>> {
    fn from(value: &'a Token) -> Self {
        Self::new(value.fragment.clone(), value.pos.clone())
    }
}

impl abortable_parser::Positioned for Token {
    fn line(&self) -> usize {
        self.pos.line
    }
    fn column(&self) -> usize {
        self.pos.column
    }
}

impl Borrow<str> for Token {
    fn borrow(&self) -> &str {
        &self.fragment
    }
}

/// Helper macro for making a Positioned Value.
macro_rules! value_node {
    ($v:expr, $p:expr) => {
        PositionedItem::new_with_pos($v, $p)
    };
}

/// Helper macro for making a Token.
#[allow(unused_macros)]
macro_rules! make_tok {
    (EOF => $i:expr) => {
        Token::new("", TokenType::END, &$i)
    };

    (WS => $i:expr) => {
        Token::new("", TokenType::WS, &$i)
    };

    (CMT => $e:expr, $i:expr) => {
        Token::new($e, TokenType::COMMENT, &$i)
    };

    (QUOT => $e:expr, $i:expr) => {
        Token::new($e, TokenType::QUOTED, &$i)
    };

    (PUNCT => $e:expr, $i:expr) => {
        Token::new($e, TokenType::PUNCT, &$i)
    };

    (DIGIT => $e:expr, $i:expr) => {
        Token::new($e, TokenType::DIGIT, &$i)
    };

    ($e:expr, $i:expr) => {
        Token::new($e, TokenType::BAREWORD, &$i)
    };
}

/// Helper macro for making expressions.
#[allow(unused_macros)]
macro_rules! make_expr {
    ($e:expr, $i:expr) => {
        Expression::Simple(Value::Symbol(PositionedItem::new_with_pos(
            $e.to_string(),
            $i,
        )))
    };

    ($e:expr => int, $i:expr) => {
        Expression::Simple(Value::Int(PositionedItem::new_with_pos($e, $i)))
    };
}

/// An ordered list of Name = Value pairs.
///
/// This is usually used as the body of a tuple in the UCG AST.
pub type FieldList = Vec<(Token, Option<Expression>, Expression)>; // Token is expected to be a symbol, with optional constraint

pub type TupleShape = Vec<(PositionedItem<Rc<str>>, Shape)>;
pub type ShapeList = Vec<Shape>;

#[derive(PartialEq, Debug, Clone)]
pub struct FuncShapeDef {
    args: BTreeMap<Rc<str>, Shape>,
    ret: Box<Shape>,
}

#[derive(PartialEq, Debug, Clone)]
pub struct ModuleShape {
    items: TupleShape,
    ret: Box<Shape>,
}

#[doc = "Value types represent the Values that UCG can have."]
#[derive(PartialEq, Debug, Clone)]
pub enum Value {
    Empty(Position),
    Boolean(PositionedItem<bool>),
    Int(PositionedItem<i64>),
    Float(PositionedItem<f64>),
    Str(PositionedItem<Rc<str>>),
    Symbol(PositionedItem<Rc<str>>),
    Tuple(PositionedItem<FieldList>),
    List(ListDef),
}

#[derive(PartialEq, Debug, Clone)]
pub enum ImportShape {
    Resolved(Position, TupleShape),
    Unresolved(PositionedItem<Rc<str>>),
}

#[derive(PartialEq, Debug, Clone)]
pub enum NarrowingShape {
    Narrowed(Vec<Shape>),
    Any,
}

#[derive(PartialEq, Debug, Clone)]
pub struct NarrowedShape {
    pub pos: Position,
    pub types: NarrowingShape,
}

impl NarrowedShape {
    pub fn new(types: Vec<Shape>, line: usize, column: usize, offset: usize) -> Self {
        Self::new_with_pos(types, Position::new(line, column, offset))
    }

    pub fn new_with_pos(types: Vec<Shape>, pos: Position) -> Self {
        Self {
            pos,
            types: NarrowingShape::Narrowed(types),
        }
    }

    pub fn with_pos(mut self, pos: Position) -> Self {
        self.pos = pos;
        self
    }

    pub fn merge_in_shape(&mut self, shape: Shape, symbol_table: &mut BTreeMap<Rc<str>, Shape>) {
        match &mut self.types {
            NarrowingShape::Narrowed(ref mut types) => {
                for s in types.iter() {
                    if s.equivalent(&shape, symbol_table) {
                        return;
                    }
                }
                types.push(shape);
            }
            NarrowingShape::Any => {
                self.types = NarrowingShape::Narrowed(vec![shape]);
            }
        }
    }
}

// TODO(jwall): Display implementations for shapes.
/// Shapes represent the types that UCG values or expressions can have.
#[derive(PartialEq, Debug, Clone)]
pub enum Shape {
    Boolean(Position),
    Int(Position),
    Float(Position),
    Str(Position),
    Tuple(PositionedItem<TupleShape>),
    List(NarrowedShape),
    Func(FuncShapeDef),
    Module(ModuleShape),
    Hole(PositionedItem<Rc<str>>), // A type hole We don't know what this type is yet.
    Narrowed(NarrowedShape),       // A narrowed type. We know *some* of the possible options.
    Import(ImportShape),           // A type hole We don't know what this type is yet.
    TypeErr(Position, String),     // A type hole We don't know what this type is yet.
}

impl Shape {
    pub fn equivalent(&self, right: &Shape, symbol_table: &BTreeMap<Rc<str>, Shape>) -> bool {
        match (self, right) {
            (Shape::Str(_), Shape::Str(_))
            | (Shape::Boolean(_), Shape::Boolean(_))
            | (Shape::Int(_), Shape::Int(_))
            | (Shape::Hole(_), Shape::Hole(_))
            | (Shape::Float(_), Shape::Float(_)) => true,
            (
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
            )
            | (
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
            ) => true,
            (
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(left_slist),
                }),
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(right_slist),
                }),
            )
            | (
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(left_slist),
                }),
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(right_slist),
                }),
            ) => {
                for ls in left_slist.iter() {
                    let mut found = false;
                    for rs in right_slist.iter() {
                        if ls.equivalent(rs, symbol_table) {
                            found = true;
                            break;
                        }
                    }
                    if !found {
                        return false;
                    }
                }
                true
            }
            (
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(_right_slist),
                }),
            )
            | (
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(_right_slist),
                }),
            ) => true,
            (
                Shape::List(NarrowedShape {
                    pos: _pos,
                    types: NarrowingShape::Narrowed(_left_slist),
                }),
                Shape::List(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
            )
            | (
                Shape::Narrowed(NarrowedShape {
                    pos: _pos,
                    types: NarrowingShape::Narrowed(_left_slist),
                }),
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Any,
                }),
            ) => true,
            (Shape::Tuple(left_slist), Shape::Tuple(right_slist)) => {
                for (lt, ls) in left_slist.val.iter() {
                    let mut found = false;
                    for (rt, rs) in right_slist.val.iter() {
                        if lt.val == rt.val && ls.equivalent(rs, symbol_table) {
                            found = true;
                        }
                    }
                    if !found {
                        return false;
                    }
                }
                true
            }
            (Shape::Func(left_opshape), Shape::Func(right_opshape)) => {
                if left_opshape.args.len() != right_opshape.args.len() {
                    return false;
                }
                let left_args: Vec<&Shape> = left_opshape.args.values().collect();
                let right_args: Vec<&Shape> = right_opshape.args.values().collect();
                for idx in 0..left_args.len() {
                    let shap = left_args[idx];
                    if !shap.equivalent(right_args[idx], symbol_table) {
                        return false;
                    }
                }
                if !&left_opshape
                    .ret
                    .equivalent(&right_opshape.ret, symbol_table)
                {
                    return false;
                }
                true
            }
            (Shape::Module(left_opshape), Shape::Module(right_opshape)) => {
                // Check items have compatible structure
                for (lt, ls) in left_opshape.items.iter() {
                    let mut found = false;
                    for (rt, rs) in right_opshape.items.iter() {
                        if lt.val == rt.val && ls.equivalent(rs, symbol_table) {
                            found = true;
                            break;
                        }
                    }
                    if !found {
                        return false;
                    }
                }
                // Check return types
                left_opshape
                    .ret
                    .equivalent(&right_opshape.ret, symbol_table)
            }
            _ => false,
        }
    }

    pub fn narrow(&self, right: &Shape, symbol_table: &mut BTreeMap<Rc<str>, Shape>) -> Self {
        match (self, right) {
            // Propagate TypeErr
            (Shape::TypeErr(_, _), _) => self.clone(),
            (_, Shape::TypeErr(_, _)) => right.clone(),
            // Same-type narrowing
            (Shape::Str(_), Shape::Str(_))
            | (Shape::Boolean(_), Shape::Boolean(_))
            | (Shape::Int(_), Shape::Int(_))
            | (Shape::Float(_), Shape::Float(_)) => self.clone(),
            (Shape::Hole(sym), other) | (other, Shape::Hole(sym)) => {
                if symbol_table.contains_key(&sym.val) {
                    symbol_table.insert(sym.val.clone(), other.clone().with_pos(sym.pos.clone()));
                }
                other.clone()
            }
            // Narrowed(Any) is unconstrained - matches anything
            (
                Shape::Narrowed(NarrowedShape {
                    types: NarrowingShape::Any,
                    ..
                }),
                other,
            )
            | (
                other,
                Shape::Narrowed(NarrowedShape {
                    types: NarrowingShape::Any,
                    ..
                }),
            ) => other.clone(),
            // Narrowed with empty candidates acts as unconstrained
            (
                Shape::Narrowed(NarrowedShape {
                    types: NarrowingShape::Narrowed(types),
                    ..
                }),
                other,
            ) if types.is_empty() => other.clone(),
            (
                other,
                Shape::Narrowed(NarrowedShape {
                    types: NarrowingShape::Narrowed(types),
                    ..
                }),
            ) if types.is_empty() => other.clone(),
            // Narrowed with candidates vs concrete type - filter candidates
            (
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(types),
                }),
                other,
            ) => {
                let compatible: Vec<Shape> = types
                    .iter()
                    .filter(|t| {
                        let result = t.narrow(other, symbol_table);
                        !matches!(result, Shape::TypeErr(_, _))
                    })
                    .cloned()
                    .collect();
                if compatible.is_empty() {
                    Shape::TypeErr(
                        right.pos().clone(),
                        format!(
                            "No narrowed candidate is compatible with {}",
                            other.type_name()
                        ),
                    )
                } else {
                    other.clone()
                }
            }
            (
                other,
                Shape::Narrowed(NarrowedShape {
                    pos: _,
                    types: NarrowingShape::Narrowed(types),
                }),
            ) => {
                let compatible: Vec<Shape> = types
                    .iter()
                    .filter(|t| {
                        let result = other.narrow(t, symbol_table);
                        !matches!(result, Shape::TypeErr(_, _))
                    })
                    .cloned()
                    .collect();
                if compatible.is_empty() {
                    Shape::TypeErr(
                        right.pos().clone(),
                        format!(
                            "No narrowed candidate is compatible with {}",
                            other.type_name()
                        ),
                    )
                } else {
                    other.clone()
                }
            }
            (Shape::List(left_slist), Shape::List(right_slist)) => {
                self.narrow_list_shapes(left_slist, right_slist, right, symbol_table)
            }
            (Shape::Tuple(left_slist), Shape::Tuple(right_slist)) => {
                self.narrow_tuple_shapes(left_slist, right_slist, right, symbol_table)
            }
            (Shape::Func(left_opshape), Shape::Func(right_opshape)) => {
                if left_opshape.args.len() != right_opshape.args.len() {
                    return Shape::TypeErr(
                        right.pos().clone(),
                        format!(
                            "Function arity mismatch: expected {} args, got {}",
                            left_opshape.args.len(),
                            right_opshape.args.len()
                        ),
                    );
                }
                let left_args: Vec<&Shape> = left_opshape.args.values().collect();
                let right_args: Vec<&Shape> = right_opshape.args.values().collect();
                for idx in 0..left_args.len() {
                    let narrowed = left_args[idx].narrow(right_args[idx], symbol_table);
                    if let Shape::TypeErr(_, _) = narrowed {
                        return Shape::TypeErr(
                            right.pos().clone(),
                            "Incompatible function argument types".to_owned(),
                        );
                    }
                }
                let ret_narrowed = left_opshape.ret.narrow(&right_opshape.ret, symbol_table);
                if let Shape::TypeErr(_, _) = ret_narrowed {
                    return Shape::TypeErr(
                        right.pos().clone(),
                        "Incompatible function return types".to_owned(),
                    );
                }
                self.clone()
            }
            (Shape::Module(left_opshape), Shape::Module(right_opshape)) => {
                // Check items are structurally compatible
                for (lt, ls) in left_opshape.items.iter() {
                    let mut found = false;
                    for (rt, rs) in right_opshape.items.iter() {
                        if lt.val == rt.val {
                            let narrowed = ls.narrow(rs, symbol_table);
                            if let Shape::TypeErr(_, _) = narrowed {
                                return Shape::TypeErr(
                                    right.pos().clone(),
                                    "Incompatible module argument types".to_owned(),
                                );
                            }
                            found = true;
                            break;
                        }
                    }
                    if !found {
                        return Shape::TypeErr(
                            right.pos().clone(),
                            "Incompatible Module Shapes".to_owned(),
                        );
                    }
                }
                // Narrow return types
                let ret_narrowed = left_opshape.ret.narrow(&right_opshape.ret, symbol_table);
                if let Shape::TypeErr(_, _) = ret_narrowed {
                    return Shape::TypeErr(
                        right.pos().clone(),
                        "Incompatible module return types".to_owned(),
                    );
                }
                self.clone()
            }
            _ => Shape::TypeErr(
                right.pos().clone(),
                format!(
                    "Expected {} but got {}",
                    self.type_name(),
                    right.type_name()
                ),
            ),
        }
    }

    fn narrow_tuple_shapes(
        &self,
        left_slist: &PositionedItem<Vec<(PositionedItem<Rc<str>>, Shape)>>,
        right_slist: &PositionedItem<Vec<(PositionedItem<Rc<str>>, Shape)>>,
        right: &Shape,
        symbol_table: &mut BTreeMap<Rc<str>, Shape>,
    ) -> Shape {
        let left_iter = left_slist.val.iter();
        let right_iter = right_slist.val.iter();
        if is_tuple_subset(left_iter, right_slist, symbol_table) {
            self.clone()
        } else if is_tuple_subset(right_iter, left_slist, symbol_table) {
            right.clone()
        } else {
            Shape::TypeErr(right.pos().clone(), "Incompatible Tuple Shapes".to_owned())
        }
    }

    fn narrow_list_shapes(
        &self,
        left_slist: &NarrowedShape,
        right_slist: &NarrowedShape,
        right: &Shape,
        symbol_table: &mut BTreeMap<Rc<str>, Shape>,
    ) -> Shape {
        match (&left_slist.types, &right_slist.types) {
            (
                NarrowingShape::Narrowed(ref left_types),
                NarrowingShape::Narrowed(ref right_types),
            ) => {
                let left_iter = left_types.iter();
                let right_iter = right_types.iter();
                if is_list_subset(left_iter, right_slist, symbol_table) {
                    self.clone()
                } else if is_list_subset(right_iter, left_slist, symbol_table) {
                    right.clone()
                } else {
                    Shape::TypeErr(right.pos().clone(), "Incompatible List Shapes".to_owned())
                }
            }
            (NarrowingShape::Narrowed(_), NarrowingShape::Any)
            | (NarrowingShape::Any, NarrowingShape::Any) => self.clone(),
            (NarrowingShape::Any, NarrowingShape::Narrowed(_)) => right.clone(),
        }
    }

    pub fn type_name(&self) -> &'static str {
        match self {
            Shape::Str(_) => "str",
            Shape::Int(_) => "int",
            Shape::Float(_) => "float",
            Shape::Boolean(_) => "boolean",
            // TODO(jwall): make these type names account for what they contain.
            Shape::List(_) => "list",
            Shape::Tuple(_) => "tuple",
            Shape::Func(_) => "func",
            Shape::Module(_) => "module",
            Shape::Narrowed(_) => "narrowed",
            Shape::Import(_) => "import",
            Shape::Hole(_) => "type-hole",
            Shape::TypeErr(_, _) => "type-error",
        }
    }

    pub fn pos(&self) -> &Position {
        match self {
            Shape::Str(p) => &p,
            Shape::Int(p) => &p,
            Shape::Float(p) => &p,
            Shape::Boolean(p) => &p,
            Shape::List(lst) => &lst.pos,
            Shape::Tuple(flds) => &flds.pos,
            Shape::Func(def) => def.ret.pos(),
            Shape::Module(def) => def.ret.pos(),
            Shape::Narrowed(pi) => &pi.pos,
            Shape::Hole(pi) => &pi.pos,
            Shape::TypeErr(pos, _) => pos,
            Shape::Import(ImportShape::Resolved(p, _)) => p,
            Shape::Import(ImportShape::Unresolved(pi)) => &pi.pos,
        }
    }

    pub fn with_pos(self, pos: Position) -> Self {
        match self {
            Shape::Str(_) => Shape::Str(pos.clone()),
            Shape::Int(_) => Shape::Int(pos.clone()),
            Shape::Float(_) => Shape::Float(pos.clone()),
            Shape::Boolean(_) => Shape::Boolean(pos.clone()),
            Shape::List(NarrowedShape {
                pos: _,
                types: NarrowingShape::Narrowed(lst),
            }) => Shape::List(NarrowedShape::new_with_pos(lst, pos)),
            Shape::List(NarrowedShape {
                pos: _,
                types: NarrowingShape::Any,
            }) => Shape::List(NarrowedShape {
                pos,
                types: NarrowingShape::Any,
            }),
            Shape::Tuple(flds) => Shape::Tuple(PositionedItem::new(flds.val, pos)),
            Shape::Func(_) | Shape::Module(_) => self.clone(),
            Shape::Narrowed(narrowed_shape) => Shape::Narrowed(narrowed_shape.with_pos(pos)),
            Shape::Hole(pi) => Shape::Hole(pi.with_pos(pos)),
            Shape::Import(ImportShape::Resolved(_, s)) => {
                Shape::Import(ImportShape::Resolved(pos, s))
            }
            Shape::Import(ImportShape::Unresolved(pi)) => {
                Shape::Import(ImportShape::Unresolved(pi.with_pos(pos)))
            }
            Shape::TypeErr(_, msg) => Shape::TypeErr(pos, msg),
        }
    }
}

fn is_tuple_subset(
    mut left_iter: std::slice::Iter<(PositionedItem<Rc<str>>, Shape)>,
    right_slist: &PositionedItem<Vec<(PositionedItem<Rc<str>>, Shape)>>,
    symbol_table: &mut BTreeMap<Rc<str>, Shape>,
) -> bool {
    return loop {
        if let Some((lt, ls)) = left_iter.next() {
            let mut matched = false;
            for (rt, rs) in right_slist.val.iter() {
                if rt.val == lt.val {
                    if let Shape::TypeErr(_, _) = ls.narrow(rs, symbol_table) {
                        // noop
                    } else {
                        matched = true;
                        continue;
                    }
                }
            }
            if !matched {
                break false;
            } else {
                continue;
            }
        }
        break true;
    };
}

fn is_list_subset(
    mut right_iter: std::slice::Iter<Shape>,
    left_slist: &NarrowedShape,
    symbol_table: &mut BTreeMap<Rc<str>, Shape>,
) -> bool {
    let left_slist = match &left_slist.types {
        NarrowingShape::Any => return true,
        NarrowingShape::Narrowed(ref list) => list,
    };
    let right_subset = loop {
        let mut matches = false;
        let ls = if let Some(ls) = right_iter.next() {
            ls
        } else {
            break true;
        };
        for rs in left_slist.iter() {
            let s = ls.narrow(rs, symbol_table);
            if let Shape::TypeErr(_, _) = s {
                // noop
            } else {
                matches = true;
            }
        }
        if !matches {
            break matches;
        }
    };
    right_subset
}

impl Value {
    /// Returns the type name of the Value it is called on as a string.
    pub fn type_name(&self) -> String {
        match self {
            &Value::Empty(_) => "EmptyValue".to_string(),
            &Value::Boolean(_) => "Boolean".to_string(),
            &Value::Int(_) => "Integer".to_string(),
            &Value::Float(_) => "Float".to_string(),
            &Value::Str(_) => "String".to_string(),
            &Value::Symbol(_) => "Symbol".to_string(),
            &Value::Tuple(_) => "Tuple".to_string(),
            &Value::List(_) => "List".to_string(),
        }
    }

    fn fields_to_string(v: &FieldList) -> String {
        let mut buf = String::new();
        buf.push_str("{\n");
        for (tok, _, _) in v.iter() {
            buf.push_str("\t");
            buf.push_str(&tok.fragment);
            buf.push_str("\n");
        }
        buf.push_str("}");
        return buf;
    }

    fn elems_to_string(v: &Vec<Expression>) -> String {
        return format!("{}", v.len());
    }

    /// Returns a stringified version of the Value.
    pub fn to_string(&self) -> String {
        match self {
            &Value::Empty(_) => "EmptyValue".to_string(),
            &Value::Boolean(ref b) => format!("{}", b.val),
            &Value::Int(ref i) => format!("{}", i.val),
            &Value::Float(ref f) => format!("{}", f.val),
            &Value::Str(ref s) => format!("{}", s.val),
            &Value::Symbol(ref s) => format!("{}", s.val),
            &Value::Tuple(ref fs) => format!("{}", Self::fields_to_string(&fs.val)),
            &Value::List(ref def) => format!("[{}]", Self::elems_to_string(&def.elems)),
        }
    }

    /// Returns the position for a Value.
    pub fn pos(&self) -> &Position {
        match self {
            &Value::Empty(ref pos) => pos,
            &Value::Boolean(ref b) => &b.pos,
            &Value::Int(ref i) => &i.pos,
            &Value::Float(ref f) => &f.pos,
            &Value::Str(ref s) => &s.pos,
            &Value::Symbol(ref s) => &s.pos,
            &Value::Tuple(ref fs) => &fs.pos,
            &Value::List(ref def) => &def.pos,
        }
    }

    /// Returns true if called on a Value that is the same type as itself.
    pub fn type_equal(&self, target: &Self) -> bool {
        enum_type_equality!(
            self,
            target,
            &Value::Empty(_),
            &Value::Boolean(_),
            &Value::Int(_),
            &Value::Float(_),
            &Value::Str(_),
            &Value::Symbol(_),
            &Value::Tuple(_),
            &Value::List(_)
        )
    }
}

/// Represents an expansion of a Macro that is expected to already have been
/// defined.
#[derive(PartialEq, Debug, Clone)]
pub struct CallDef {
    pub funcref: Value,
    pub arglist: Vec<Expression>,
    pub pos: Position,
}

/// The allowable types to which you can perform a primitive cast.
#[derive(PartialEq, Debug, Clone)]
pub enum CastType {
    Int,
    Float,
    Str,
    Bool,
}

impl fmt::Display for CastType {
    fn fmt(&self, w: &mut fmt::Formatter) -> fmt::Result {
        write!(
            w,
            "{}",
            match self {
                CastType::Int => "int",
                CastType::Float => "float",
                CastType::Bool => "bool",
                CastType::Str => "str",
            }
        )
    }
}

/// Represents a cast of a target to a primitive type.
#[derive(PartialEq, Debug, Clone)]
pub struct CastDef {
    pub cast_type: CastType,
    pub target: Box<Expression>,
    pub pos: Position,
}

/// Encodes a select expression in the UCG AST.
#[derive(PartialEq, Debug, Clone)]
pub struct SelectDef {
    pub val: Box<Expression>,
    pub default: Option<Box<Expression>>,
    pub tuple: FieldList,
    pub pos: Position,
}

/// Adds position information to any type `T`.
#[derive(Debug, Clone)]
pub struct PositionedItem<T> {
    pub pos: Position,
    pub val: T,
}

impl<T: std::fmt::Display> std::fmt::Display for PositionedItem<T> {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
        write!(f, "{}", self.val)
    }
}

impl<T> PositionedItem<T> {
    /// Constructs a new Positioned<T> with a value, line, and column information.
    pub fn new<P: Into<Position>>(v: T, p: P) -> Self {
        Self::new_with_pos(v, p.into())
    }

    /// Constructs a new Positioned<T> with a value and a Position.
    pub fn new_with_pos(v: T, pos: Position) -> Self {
        PositionedItem { pos, val: v }
    }

    pub fn with_pos(mut self, pos: Position) -> Self {
        self.pos = pos;
        self
    }
}

impl<T: PartialEq> PartialEq for PositionedItem<T> {
    fn eq(&self, other: &Self) -> bool {
        self.val == other.val
    }
}

impl<T: Eq> Eq for PositionedItem<T> {}

impl<T: Ord> Ord for PositionedItem<T> {
    fn cmp(&self, other: &Self) -> Ordering {
        self.val.cmp(&other.val)
    }
}

impl<T: PartialOrd> PartialOrd for PositionedItem<T> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        self.val.partial_cmp(&other.val)
    }
}

impl<T: Hash> Hash for PositionedItem<T> {
    fn hash<H: Hasher>(&self, state: &mut H) {
        self.val.hash(state);
    }
}

impl<'a> From<&'a Token> for PositionedItem<String> {
    fn from(t: &'a Token) -> PositionedItem<String> {
        PositionedItem {
            pos: t.pos.clone(),
            val: t.fragment.to_string(),
        }
    }
}

impl<'a> From<&'a PositionedItem<Rc<str>>> for PositionedItem<Rc<str>> {
    fn from(t: &PositionedItem<Rc<str>>) -> PositionedItem<Rc<str>> {
        PositionedItem {
            pos: t.pos.clone(),
            val: t.val.clone(),
        }
    }
}

/// Encodes a func expression in the UCG AST..
///
/// A func is a pure function over a expression.
#[derive(PartialEq, Debug, Clone)]
pub struct FuncDef {
    pub scope: Option<Scope>,
    pub argdefs: Vec<(PositionedItem<Rc<str>>, Option<Expression>)>,
    pub fields: Box<Expression>,
    pub pos: Position,
}

/// Specifies the types of binary operations supported in
/// UCG expression.
#[derive(Debug, PartialEq, Clone)]
pub enum BinaryExprType {
    // Math
    Add,
    Sub,
    Mul,
    Div,
    Mod,
    // Boolean
    AND,
    OR,
    // Comparison
    Equal,
    GT,
    LT,
    NotEqual,
    GTEqual,
    LTEqual,
    REMatch,
    NotREMatch,
    IN,
    IS,
    // Selector operator
    DOT,
}

impl BinaryExprType {
    /// Returns the precedence level for the binary operator.
    ///
    /// Higher values bind tighter than lower values.
    pub fn precedence_level(&self) -> u32 {
        match self {
            // Equality operators are least tightly bound
            BinaryExprType::Equal => 1,
            BinaryExprType::NotEqual => 1,
            BinaryExprType::GTEqual => 1,
            BinaryExprType::LTEqual => 1,
            BinaryExprType::GT => 1,
            BinaryExprType::LT => 1,
            BinaryExprType::REMatch => 1,
            BinaryExprType::NotREMatch => 1,
            BinaryExprType::IN => 2,
            BinaryExprType::IS => 2,
            // Sum operators are next least tightly bound
            BinaryExprType::Add => 3,
            BinaryExprType::Sub => 3,
            // Product operators are next tightly bound
            BinaryExprType::Mul => 4,
            BinaryExprType::Div => 4,
            BinaryExprType::Mod => 4,
            // Boolean operators bind tighter than math
            BinaryExprType::AND => 5,
            BinaryExprType::OR => 5,
            // Dot operators are most tightly bound.
            BinaryExprType::DOT => 6,
        }
    }
}

/// Represents an expression with a left and a right side.
#[derive(Debug, PartialEq, Clone)]
pub struct BinaryOpDef {
    pub kind: BinaryExprType,
    pub left: Box<Expression>,
    pub right: Box<Expression>,
    pub pos: Position,
}

/// Encodes a tuple Copy expression in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct CopyDef {
    pub selector: Value,
    pub fields: FieldList,
    pub pos: Position,
}

/// Encodes one of two possible forms for format expression arguments.
#[derive(Debug, PartialEq, Clone)]
pub enum FormatArgs {
    List(Vec<Expression>),
    Single(Box<Expression>),
}

/// Encodes a format expression in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct FormatDef {
    pub template: String,
    pub args: FormatArgs,
    pub pos: Position,
}

/// Encodes an import statement in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct IncludeDef {
    pub pos: Position,
    pub path: Token,
    pub typ: Token,
}

/// Encodes a list expression in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct ListDef {
    pub elems: Vec<Expression>,
    pub pos: Position,
}

#[derive(Debug, PartialEq, Clone)]
pub enum FuncOpDef {
    Reduce(ReduceOpDef),
    Map(MapFilterOpDef),
    Filter(MapFilterOpDef),
}

#[derive(Debug, PartialEq, Clone)]
pub struct ReduceOpDef {
    pub func: Box<Expression>,
    pub acc: Box<Expression>,
    pub target: Box<Expression>,
    pub pos: Position,
}

/// MapFilterOpDef implements the list operations in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct MapFilterOpDef {
    pub func: Box<Expression>,
    pub target: Box<Expression>,
    pub pos: Position,
}

impl FuncOpDef {
    pub fn pos(&self) -> &Position {
        match self {
            FuncOpDef::Map(def) => &def.pos,
            FuncOpDef::Filter(def) => &def.pos,
            FuncOpDef::Reduce(def) => &def.pos,
        }
    }
}

#[derive(Debug, PartialEq, Clone)]
pub struct ModuleDef {
    pub scope: Option<Scope>,
    pub pos: Position,
    pub arg_set: FieldList,
    pub out_expr: Option<Box<Expression>>,
    pub out_constraint: Option<Box<Expression>>,
    pub arg_tuple: Option<Rc<Val>>,
    pub statements: Vec<Statement>,
}

impl ModuleDef {
    pub fn new<P: Into<Position>>(arg_set: FieldList, stmts: Vec<Statement>, pos: P) -> Self {
        ModuleDef {
            scope: None,
            pos: pos.into(),
            arg_set,
            out_expr: None,
            out_constraint: None,
            arg_tuple: None,
            statements: stmts,
        }
    }

    pub fn set_out_expr(&mut self, expr: Expression) {
        self.out_expr = Some(Box::new(expr));
    }
}

/// RangeDef defines a range with optional step.
#[derive(Debug, PartialEq, Clone)]
pub struct RangeDef {
    pub pos: Position,
    pub start: Box<Expression>,
    pub step: Option<Box<Expression>>,
    pub end: Box<Expression>,
}

/// Encodes an import expression in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct ImportDef {
    pub pos: Position,
    pub path: Token,
}

#[derive(Debug, PartialEq, Clone)]
pub struct IsDef {
    pub pos: Position,
    pub target: Box<Expression>,
    pub typ: Token,
}

#[derive(Debug, PartialEq, Clone)]
pub struct FailDef {
    pub pos: Position,
    pub message: Box<Expression>,
}

#[derive(Debug, PartialEq, Clone)]
pub struct NotDef {
    pub pos: Position,
    pub expr: Box<Expression>,
}

#[derive(Debug, PartialEq, Clone)]
pub struct DebugDef {
    pub pos: Position,
    pub expr: Box<Expression>,
}

/// Encodes a ucg expression. Expressions compute a value from.
#[derive(Debug, PartialEq, Clone)]
pub enum Expression {
    // Base Expression
    Simple(Value),
    Not(NotDef),

    // Binary expressions
    Binary(BinaryOpDef),

    // Complex Expressions
    Copy(CopyDef),
    Range(RangeDef),
    Grouped(Box<Expression>, Position),
    Format(FormatDef),
    Include(IncludeDef),
    Import(ImportDef),
    Call(CallDef),
    Cast(CastDef),
    Func(FuncDef),
    Select(SelectDef),
    FuncOp(FuncOpDef),
    Module(ModuleDef),

    // Declarative failure expressions
    Fail(FailDef),
    // Debugging assistance
    Debug(DebugDef),
}

impl Expression {
    /// Returns the position of the Expression.
    pub fn pos(&self) -> &Position {
        match self {
            &Expression::Simple(ref v) => v.pos(),
            &Expression::Binary(ref def) => &def.pos,
            &Expression::Copy(ref def) => &def.pos,
            &Expression::Range(ref def) => &def.pos,
            &Expression::Grouped(_, ref pos) => pos,
            &Expression::Format(ref def) => &def.pos,
            &Expression::Call(ref def) => &def.pos,
            &Expression::Cast(ref def) => &def.pos,
            &Expression::Func(ref def) => &def.pos,
            &Expression::Module(ref def) => &def.pos,
            &Expression::Select(ref def) => &def.pos,
            &Expression::FuncOp(ref def) => def.pos(),
            &Expression::Include(ref def) => &def.pos,
            &Expression::Import(ref def) => &def.pos,
            &Expression::Fail(ref def) => &def.pos,
            &Expression::Not(ref def) => &def.pos,
            &Expression::Debug(ref def) => &def.pos,
        }
    }
}

impl fmt::Display for Expression {
    fn fmt(&self, w: &mut fmt::Formatter) -> fmt::Result {
        match self {
            &Expression::Simple(ref v) => {
                write!(w, "{}", v.to_string())?;
            }
            &Expression::Binary(_) => {
                write!(w, "<Expr>")?;
            }
            &Expression::FuncOp(_) => {
                write!(w, "<Expr>")?;
            }
            &Expression::Copy(_) => {
                write!(w, "<Copy>")?;
            }
            &Expression::Range(_) => {
                write!(w, "<Range>")?;
            }
            &Expression::Grouped(_, _) => {
                write!(w, "(<Expr>)")?;
            }
            &Expression::Format(_) => {
                write!(w, "<Format Expr>")?;
            }
            &Expression::Call(_) => {
                write!(w, "<FuncCall>")?;
            }
            &Expression::Cast(_) => {
                write!(w, "<Cast>")?;
            }
            &Expression::Func(_) => {
                write!(w, "<Func>")?;
            }
            &Expression::Module(_) => {
                write!(w, "<Module>")?;
            }
            &Expression::Select(_) => {
                write!(w, "<Select>")?;
            }
            &Expression::Include(_) => {
                write!(w, "<Include>")?;
            }
            &Expression::Import(_) => {
                write!(w, "<Include>")?;
            }
            &Expression::Fail(_) => {
                write!(w, "<Fail>")?;
            }
            &Expression::Not(ref def) => {
                write!(w, "!{}", def.expr)?;
            }
            &Expression::Debug(ref def) => {
                write!(w, "!{}", def.expr)?;
            }
        }
        Ok(())
    }
}

/// Encodes a let statement in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub struct LetDef {
    pub pos: Position,
    pub name: Token,
    pub constraint: Option<Expression>,
    pub value: Expression,
}

/// Encodes a parsed statement in the UCG AST.
#[derive(Debug, PartialEq, Clone)]
pub enum Statement {
    // simple expression
    Expression(Expression),

    // Named bindings
    Let(LetDef),

    // Assert statement
    Assert(Position, Expression),

    // Identify an Expression for output.
    Output(Position, Token, Expression),

    // Print the expression to stdout.
    Print(Position, Token, Expression),
}

impl Statement {
    fn pos(&self) -> &Position {
        match self {
            Statement::Expression(ref e) => e.pos(),
            Statement::Let(ref def) => &def.pos,
            Statement::Assert(ref pos, _) => pos,
            Statement::Output(ref pos, _, _) => pos,
            Statement::Print(ref pos, _, _) => pos,
        }
    }
}

#[cfg(test)]
mod test;