simple-graph-query 3.0.1 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2541 @@
1
+ {
2
+ "sgqVersion": "3.2.0",
3
+ "identifier": {
4
+ "bare": {
5
+ "head": {
6
+ "ranges": [
7
+ {
8
+ "from": "a",
9
+ "to": "z"
10
+ },
11
+ {
12
+ "from": "A",
13
+ "to": "Z"
14
+ }
15
+ ],
16
+ "chars": [
17
+ "_",
18
+ "$",
19
+ "/"
20
+ ]
21
+ },
22
+ "rest": {
23
+ "ranges": [
24
+ {
25
+ "from": "a",
26
+ "to": "z"
27
+ },
28
+ {
29
+ "from": "A",
30
+ "to": "Z"
31
+ },
32
+ {
33
+ "from": "0",
34
+ "to": "9"
35
+ }
36
+ ],
37
+ "chars": [
38
+ "_",
39
+ "$",
40
+ "/"
41
+ ]
42
+ },
43
+ "minLength": 1
44
+ },
45
+ "quoted": {
46
+ "delimiter": "`",
47
+ "escape": "\\",
48
+ "mustEscape": [
49
+ "`",
50
+ "\\"
51
+ ],
52
+ "escapeDecodes": {},
53
+ "minLength": 1
54
+ },
55
+ "reserved": [
56
+ "/",
57
+ "Int",
58
+ "abstract",
59
+ "all",
60
+ "and",
61
+ "as",
62
+ "assert",
63
+ "bind",
64
+ "but",
65
+ "check",
66
+ "checked",
67
+ "consistent",
68
+ "disj",
69
+ "else",
70
+ "eval",
71
+ "exactly",
72
+ "example",
73
+ "expect",
74
+ "extends",
75
+ "for",
76
+ "forge_error",
77
+ "fun",
78
+ "func",
79
+ "iden",
80
+ "iff",
81
+ "implies",
82
+ "in",
83
+ "inconsistent",
84
+ "inst",
85
+ "is",
86
+ "let",
87
+ "lone",
88
+ "necessary",
89
+ "ni",
90
+ "no",
91
+ "none",
92
+ "not",
93
+ "one",
94
+ "open",
95
+ "option",
96
+ "or",
97
+ "pfunc",
98
+ "pred",
99
+ "run",
100
+ "sat",
101
+ "set",
102
+ "sexpr",
103
+ "sig",
104
+ "some",
105
+ "sufficient",
106
+ "suite",
107
+ "sum",
108
+ "test",
109
+ "theorem",
110
+ "this",
111
+ "two",
112
+ "univ",
113
+ "unsat",
114
+ "var",
115
+ "wheat",
116
+ "with",
117
+ "xor"
118
+ ]
119
+ },
120
+ "string": {
121
+ "delimiter": "\"",
122
+ "escape": "\\",
123
+ "mustEscape": [
124
+ "\"",
125
+ "\\"
126
+ ],
127
+ "escapeDecodes": {
128
+ "0": "\u0000",
129
+ "n": "\n",
130
+ "t": "\t",
131
+ "r": "\r"
132
+ },
133
+ "minLength": 0
134
+ },
135
+ "number": {
136
+ "digits": {
137
+ "ranges": [
138
+ {
139
+ "from": "0",
140
+ "to": "9"
141
+ }
142
+ ],
143
+ "chars": []
144
+ },
145
+ "decimalPoint": "."
146
+ },
147
+ "builtins": {
148
+ "binary": [
149
+ "add",
150
+ "subtract",
151
+ "multiply",
152
+ "divide",
153
+ "remainder"
154
+ ],
155
+ "unary": [
156
+ "abs",
157
+ "sign",
158
+ "floor",
159
+ "ceil"
160
+ ],
161
+ "set": [
162
+ "min",
163
+ "max",
164
+ "sum"
165
+ ]
166
+ },
167
+ "constructs": [
168
+ {
169
+ "id": "let",
170
+ "precedence": 0,
171
+ "fixity": "binder",
172
+ "evaluates": false,
173
+ "associativity": null,
174
+ "template": [
175
+ {
176
+ "item": "operator"
177
+ },
178
+ {
179
+ "item": "binders",
180
+ "style": "bound",
181
+ "level": 0
182
+ },
183
+ {
184
+ "item": "body",
185
+ "level": 0
186
+ }
187
+ ],
188
+ "kinds": {
189
+ "yields": null,
190
+ "operands": [],
191
+ "inner": null
192
+ },
193
+ "arity": {
194
+ "yields": null,
195
+ "slots": [],
196
+ "requires": null
197
+ },
198
+ "operators": [
199
+ {
200
+ "id": "let",
201
+ "spellings": [
202
+ "let"
203
+ ],
204
+ "evaluates": false,
205
+ "kinds": {
206
+ "yields": null,
207
+ "operands": [],
208
+ "inner": null
209
+ },
210
+ "arity": {
211
+ "yields": null,
212
+ "slots": [],
213
+ "requires": null
214
+ }
215
+ }
216
+ ],
217
+ "parts": {
218
+ "bind": [
219
+ "="
220
+ ],
221
+ "separator": [
222
+ ","
223
+ ],
224
+ "bar": [
225
+ "|"
226
+ ],
227
+ "blockOpen": [
228
+ "{"
229
+ ],
230
+ "blockClose": [
231
+ "}"
232
+ ]
233
+ }
234
+ },
235
+ {
236
+ "id": "bind",
237
+ "precedence": 0,
238
+ "fixity": "binder",
239
+ "evaluates": false,
240
+ "associativity": null,
241
+ "template": [
242
+ {
243
+ "item": "operator"
244
+ },
245
+ {
246
+ "item": "binders",
247
+ "style": "bound",
248
+ "level": 0
249
+ },
250
+ {
251
+ "item": "body",
252
+ "level": 0
253
+ }
254
+ ],
255
+ "kinds": {
256
+ "yields": null,
257
+ "operands": [],
258
+ "inner": null
259
+ },
260
+ "arity": {
261
+ "yields": null,
262
+ "slots": [],
263
+ "requires": null
264
+ },
265
+ "operators": [
266
+ {
267
+ "id": "bind",
268
+ "spellings": [
269
+ "bind"
270
+ ],
271
+ "evaluates": false,
272
+ "kinds": {
273
+ "yields": null,
274
+ "operands": [],
275
+ "inner": null
276
+ },
277
+ "arity": {
278
+ "yields": null,
279
+ "slots": [],
280
+ "requires": null
281
+ }
282
+ }
283
+ ],
284
+ "parts": {
285
+ "bind": [
286
+ "="
287
+ ],
288
+ "separator": [
289
+ ","
290
+ ],
291
+ "bar": [
292
+ "|"
293
+ ],
294
+ "blockOpen": [
295
+ "{"
296
+ ],
297
+ "blockClose": [
298
+ "}"
299
+ ]
300
+ }
301
+ },
302
+ {
303
+ "id": "quantifier",
304
+ "precedence": 0,
305
+ "fixity": "quantifier",
306
+ "evaluates": true,
307
+ "associativity": null,
308
+ "template": [
309
+ {
310
+ "item": "operator"
311
+ },
312
+ {
313
+ "item": "part",
314
+ "role": "disjoint",
315
+ "optional": true
316
+ },
317
+ {
318
+ "item": "binders",
319
+ "style": "typed",
320
+ "level": 0
321
+ },
322
+ {
323
+ "item": "body",
324
+ "level": 0
325
+ }
326
+ ],
327
+ "kinds": {
328
+ "yields": "boolean",
329
+ "operands": [],
330
+ "inner": "boolean"
331
+ },
332
+ "arity": {
333
+ "yields": null,
334
+ "slots": [],
335
+ "requires": null
336
+ },
337
+ "operators": [
338
+ {
339
+ "id": "all",
340
+ "spellings": [
341
+ "all"
342
+ ],
343
+ "evaluates": true,
344
+ "kinds": {
345
+ "yields": "boolean",
346
+ "operands": [],
347
+ "inner": "boolean"
348
+ },
349
+ "arity": {
350
+ "yields": null,
351
+ "slots": [],
352
+ "requires": null
353
+ }
354
+ },
355
+ {
356
+ "id": "no",
357
+ "spellings": [
358
+ "no"
359
+ ],
360
+ "evaluates": true,
361
+ "kinds": {
362
+ "yields": "boolean",
363
+ "operands": [],
364
+ "inner": "boolean"
365
+ },
366
+ "arity": {
367
+ "yields": null,
368
+ "slots": [],
369
+ "requires": null
370
+ }
371
+ },
372
+ {
373
+ "id": "sum",
374
+ "spellings": [
375
+ "sum"
376
+ ],
377
+ "evaluates": true,
378
+ "kinds": {
379
+ "yields": "number",
380
+ "operands": [],
381
+ "inner": "number"
382
+ },
383
+ "arity": {
384
+ "yields": null,
385
+ "slots": [],
386
+ "requires": null
387
+ }
388
+ },
389
+ {
390
+ "id": "lone",
391
+ "spellings": [
392
+ "lone"
393
+ ],
394
+ "evaluates": true,
395
+ "kinds": {
396
+ "yields": "boolean",
397
+ "operands": [],
398
+ "inner": "boolean"
399
+ },
400
+ "arity": {
401
+ "yields": null,
402
+ "slots": [],
403
+ "requires": null
404
+ }
405
+ },
406
+ {
407
+ "id": "some",
408
+ "spellings": [
409
+ "some"
410
+ ],
411
+ "evaluates": true,
412
+ "kinds": {
413
+ "yields": "boolean",
414
+ "operands": [],
415
+ "inner": "boolean"
416
+ },
417
+ "arity": {
418
+ "yields": null,
419
+ "slots": [],
420
+ "requires": null
421
+ }
422
+ },
423
+ {
424
+ "id": "one",
425
+ "spellings": [
426
+ "one"
427
+ ],
428
+ "evaluates": true,
429
+ "kinds": {
430
+ "yields": "boolean",
431
+ "operands": [],
432
+ "inner": "boolean"
433
+ },
434
+ "arity": {
435
+ "yields": null,
436
+ "slots": [],
437
+ "requires": null
438
+ }
439
+ },
440
+ {
441
+ "id": "two",
442
+ "spellings": [
443
+ "two"
444
+ ],
445
+ "evaluates": true,
446
+ "kinds": {
447
+ "yields": "boolean",
448
+ "operands": [],
449
+ "inner": "boolean"
450
+ },
451
+ "arity": {
452
+ "yields": null,
453
+ "slots": [],
454
+ "requires": null
455
+ }
456
+ }
457
+ ],
458
+ "parts": {
459
+ "disjoint": [
460
+ "disj"
461
+ ],
462
+ "colon": [
463
+ ":"
464
+ ],
465
+ "separator": [
466
+ ","
467
+ ],
468
+ "domainMultiplicity": [
469
+ "set"
470
+ ],
471
+ "bar": [
472
+ "|"
473
+ ],
474
+ "blockOpen": [
475
+ "{"
476
+ ],
477
+ "blockClose": [
478
+ "}"
479
+ ]
480
+ }
481
+ },
482
+ {
483
+ "id": "or",
484
+ "precedence": 1,
485
+ "fixity": "infix",
486
+ "evaluates": true,
487
+ "associativity": "left",
488
+ "template": [
489
+ {
490
+ "item": "operand",
491
+ "level": 1
492
+ },
493
+ {
494
+ "item": "operator"
495
+ },
496
+ {
497
+ "item": "operand",
498
+ "level": 2
499
+ }
500
+ ],
501
+ "kinds": {
502
+ "yields": "boolean",
503
+ "operands": [
504
+ "boolean",
505
+ "boolean"
506
+ ],
507
+ "inner": null
508
+ },
509
+ "arity": {
510
+ "yields": null,
511
+ "slots": [
512
+ null,
513
+ null
514
+ ],
515
+ "requires": null
516
+ },
517
+ "operators": [
518
+ {
519
+ "id": "or",
520
+ "spellings": [
521
+ "||",
522
+ "or"
523
+ ],
524
+ "evaluates": true,
525
+ "kinds": {
526
+ "yields": "boolean",
527
+ "operands": [
528
+ "boolean",
529
+ "boolean"
530
+ ],
531
+ "inner": null
532
+ },
533
+ "arity": {
534
+ "yields": null,
535
+ "slots": [
536
+ null,
537
+ null
538
+ ],
539
+ "requires": null
540
+ }
541
+ }
542
+ ],
543
+ "parts": {}
544
+ },
545
+ {
546
+ "id": "xor",
547
+ "precedence": 2,
548
+ "fixity": "infix",
549
+ "evaluates": true,
550
+ "associativity": "left",
551
+ "template": [
552
+ {
553
+ "item": "operand",
554
+ "level": 2
555
+ },
556
+ {
557
+ "item": "operator"
558
+ },
559
+ {
560
+ "item": "operand",
561
+ "level": 3
562
+ }
563
+ ],
564
+ "kinds": {
565
+ "yields": "boolean",
566
+ "operands": [
567
+ "boolean",
568
+ "boolean"
569
+ ],
570
+ "inner": null
571
+ },
572
+ "arity": {
573
+ "yields": null,
574
+ "slots": [
575
+ null,
576
+ null
577
+ ],
578
+ "requires": null
579
+ },
580
+ "operators": [
581
+ {
582
+ "id": "xor",
583
+ "spellings": [
584
+ "xor"
585
+ ],
586
+ "evaluates": true,
587
+ "kinds": {
588
+ "yields": "boolean",
589
+ "operands": [
590
+ "boolean",
591
+ "boolean"
592
+ ],
593
+ "inner": null
594
+ },
595
+ "arity": {
596
+ "yields": null,
597
+ "slots": [
598
+ null,
599
+ null
600
+ ],
601
+ "requires": null
602
+ }
603
+ }
604
+ ],
605
+ "parts": {}
606
+ },
607
+ {
608
+ "id": "iff",
609
+ "precedence": 3,
610
+ "fixity": "infix",
611
+ "evaluates": true,
612
+ "associativity": "left",
613
+ "template": [
614
+ {
615
+ "item": "operand",
616
+ "level": 3
617
+ },
618
+ {
619
+ "item": "operator"
620
+ },
621
+ {
622
+ "item": "operand",
623
+ "level": 4
624
+ }
625
+ ],
626
+ "kinds": {
627
+ "yields": "boolean",
628
+ "operands": [
629
+ "boolean",
630
+ "boolean"
631
+ ],
632
+ "inner": null
633
+ },
634
+ "arity": {
635
+ "yields": null,
636
+ "slots": [
637
+ null,
638
+ null
639
+ ],
640
+ "requires": null
641
+ },
642
+ "operators": [
643
+ {
644
+ "id": "iff",
645
+ "spellings": [
646
+ "<=>",
647
+ "iff"
648
+ ],
649
+ "evaluates": true,
650
+ "kinds": {
651
+ "yields": "boolean",
652
+ "operands": [
653
+ "boolean",
654
+ "boolean"
655
+ ],
656
+ "inner": null
657
+ },
658
+ "arity": {
659
+ "yields": null,
660
+ "slots": [
661
+ null,
662
+ null
663
+ ],
664
+ "requires": null
665
+ }
666
+ }
667
+ ],
668
+ "parts": {}
669
+ },
670
+ {
671
+ "id": "implies",
672
+ "precedence": 4,
673
+ "fixity": "infix",
674
+ "evaluates": true,
675
+ "associativity": "right",
676
+ "template": [
677
+ {
678
+ "item": "operand",
679
+ "level": 5
680
+ },
681
+ {
682
+ "item": "operator"
683
+ },
684
+ {
685
+ "item": "operand",
686
+ "level": 4
687
+ },
688
+ {
689
+ "item": "optional",
690
+ "items": [
691
+ {
692
+ "item": "part",
693
+ "role": "else",
694
+ "optional": false
695
+ },
696
+ {
697
+ "item": "operand",
698
+ "level": 4
699
+ }
700
+ ]
701
+ }
702
+ ],
703
+ "kinds": {
704
+ "yields": "boolean",
705
+ "operands": [
706
+ "boolean",
707
+ "boolean",
708
+ "boolean"
709
+ ],
710
+ "inner": null
711
+ },
712
+ "arity": {
713
+ "yields": null,
714
+ "slots": [
715
+ null,
716
+ null,
717
+ null
718
+ ],
719
+ "requires": null
720
+ },
721
+ "operators": [
722
+ {
723
+ "id": "implies",
724
+ "spellings": [
725
+ "implies",
726
+ "=>"
727
+ ],
728
+ "evaluates": true,
729
+ "kinds": {
730
+ "yields": "boolean",
731
+ "operands": [
732
+ "boolean",
733
+ "boolean",
734
+ "boolean"
735
+ ],
736
+ "inner": null
737
+ },
738
+ "arity": {
739
+ "yields": null,
740
+ "slots": [
741
+ null,
742
+ null,
743
+ null
744
+ ],
745
+ "requires": null
746
+ }
747
+ }
748
+ ],
749
+ "parts": {
750
+ "else": [
751
+ "else"
752
+ ]
753
+ }
754
+ },
755
+ {
756
+ "id": "and",
757
+ "precedence": 5,
758
+ "fixity": "infix",
759
+ "evaluates": true,
760
+ "associativity": "left",
761
+ "template": [
762
+ {
763
+ "item": "operand",
764
+ "level": 5
765
+ },
766
+ {
767
+ "item": "operator"
768
+ },
769
+ {
770
+ "item": "operand",
771
+ "level": 6
772
+ }
773
+ ],
774
+ "kinds": {
775
+ "yields": "boolean",
776
+ "operands": [
777
+ "boolean",
778
+ "boolean"
779
+ ],
780
+ "inner": null
781
+ },
782
+ "arity": {
783
+ "yields": null,
784
+ "slots": [
785
+ null,
786
+ null
787
+ ],
788
+ "requires": null
789
+ },
790
+ "operators": [
791
+ {
792
+ "id": "and",
793
+ "spellings": [
794
+ "&&",
795
+ "and"
796
+ ],
797
+ "evaluates": true,
798
+ "kinds": {
799
+ "yields": "boolean",
800
+ "operands": [
801
+ "boolean",
802
+ "boolean"
803
+ ],
804
+ "inner": null
805
+ },
806
+ "arity": {
807
+ "yields": null,
808
+ "slots": [
809
+ null,
810
+ null
811
+ ],
812
+ "requires": null
813
+ }
814
+ }
815
+ ],
816
+ "parts": {}
817
+ },
818
+ {
819
+ "id": "not",
820
+ "precedence": 6,
821
+ "fixity": "prefix",
822
+ "evaluates": true,
823
+ "associativity": null,
824
+ "template": [
825
+ {
826
+ "item": "operator"
827
+ },
828
+ {
829
+ "item": "operand",
830
+ "level": 6
831
+ }
832
+ ],
833
+ "kinds": {
834
+ "yields": "boolean",
835
+ "operands": [
836
+ "boolean"
837
+ ],
838
+ "inner": null
839
+ },
840
+ "arity": {
841
+ "yields": null,
842
+ "slots": [
843
+ null
844
+ ],
845
+ "requires": null
846
+ },
847
+ "operators": [
848
+ {
849
+ "id": "not",
850
+ "spellings": [
851
+ "!",
852
+ "not"
853
+ ],
854
+ "evaluates": true,
855
+ "kinds": {
856
+ "yields": "boolean",
857
+ "operands": [
858
+ "boolean"
859
+ ],
860
+ "inner": null
861
+ },
862
+ "arity": {
863
+ "yields": null,
864
+ "slots": [
865
+ null
866
+ ],
867
+ "requires": null
868
+ }
869
+ }
870
+ ],
871
+ "parts": {}
872
+ },
873
+ {
874
+ "id": "comparison",
875
+ "precedence": 7,
876
+ "fixity": "infix",
877
+ "evaluates": true,
878
+ "associativity": "left",
879
+ "template": [
880
+ {
881
+ "item": "operand",
882
+ "level": 7
883
+ },
884
+ {
885
+ "item": "part",
886
+ "role": "negation",
887
+ "optional": true
888
+ },
889
+ {
890
+ "item": "operator"
891
+ },
892
+ {
893
+ "item": "operand",
894
+ "level": 8
895
+ }
896
+ ],
897
+ "kinds": {
898
+ "yields": "boolean",
899
+ "operands": [
900
+ "any",
901
+ "any"
902
+ ],
903
+ "inner": null
904
+ },
905
+ "arity": {
906
+ "yields": null,
907
+ "slots": [
908
+ null,
909
+ null
910
+ ],
911
+ "requires": "equal"
912
+ },
913
+ "operators": [
914
+ {
915
+ "id": "subset",
916
+ "spellings": [
917
+ "in"
918
+ ],
919
+ "evaluates": true,
920
+ "kinds": {
921
+ "yields": "boolean",
922
+ "operands": [
923
+ "any",
924
+ "any"
925
+ ],
926
+ "inner": null
927
+ },
928
+ "arity": {
929
+ "yields": null,
930
+ "slots": [
931
+ null,
932
+ null
933
+ ],
934
+ "requires": "equal"
935
+ }
936
+ },
937
+ {
938
+ "id": "equal",
939
+ "spellings": [
940
+ "="
941
+ ],
942
+ "evaluates": true,
943
+ "kinds": {
944
+ "yields": "boolean",
945
+ "operands": [
946
+ "any",
947
+ "any"
948
+ ],
949
+ "inner": null
950
+ },
951
+ "arity": {
952
+ "yields": null,
953
+ "slots": [
954
+ null,
955
+ null
956
+ ],
957
+ "requires": "equal"
958
+ }
959
+ },
960
+ {
961
+ "id": "lessThan",
962
+ "spellings": [
963
+ "<"
964
+ ],
965
+ "evaluates": true,
966
+ "kinds": {
967
+ "yields": "boolean",
968
+ "operands": [
969
+ "number",
970
+ "number"
971
+ ],
972
+ "inner": null
973
+ },
974
+ "arity": {
975
+ "yields": null,
976
+ "slots": [
977
+ null,
978
+ null
979
+ ],
980
+ "requires": "equal"
981
+ }
982
+ },
983
+ {
984
+ "id": "greaterThan",
985
+ "spellings": [
986
+ ">"
987
+ ],
988
+ "evaluates": true,
989
+ "kinds": {
990
+ "yields": "boolean",
991
+ "operands": [
992
+ "number",
993
+ "number"
994
+ ],
995
+ "inner": null
996
+ },
997
+ "arity": {
998
+ "yields": null,
999
+ "slots": [
1000
+ null,
1001
+ null
1002
+ ],
1003
+ "requires": "equal"
1004
+ }
1005
+ },
1006
+ {
1007
+ "id": "atMost",
1008
+ "spellings": [
1009
+ "<=",
1010
+ "=<"
1011
+ ],
1012
+ "evaluates": true,
1013
+ "kinds": {
1014
+ "yields": "boolean",
1015
+ "operands": [
1016
+ "number",
1017
+ "number"
1018
+ ],
1019
+ "inner": null
1020
+ },
1021
+ "arity": {
1022
+ "yields": null,
1023
+ "slots": [
1024
+ null,
1025
+ null
1026
+ ],
1027
+ "requires": "equal"
1028
+ }
1029
+ },
1030
+ {
1031
+ "id": "atLeast",
1032
+ "spellings": [
1033
+ ">="
1034
+ ],
1035
+ "evaluates": true,
1036
+ "kinds": {
1037
+ "yields": "boolean",
1038
+ "operands": [
1039
+ "number",
1040
+ "number"
1041
+ ],
1042
+ "inner": null
1043
+ },
1044
+ "arity": {
1045
+ "yields": null,
1046
+ "slots": [
1047
+ null,
1048
+ null
1049
+ ],
1050
+ "requires": "equal"
1051
+ }
1052
+ },
1053
+ {
1054
+ "id": "contains",
1055
+ "spellings": [
1056
+ "ni"
1057
+ ],
1058
+ "evaluates": true,
1059
+ "kinds": {
1060
+ "yields": "boolean",
1061
+ "operands": [
1062
+ "any",
1063
+ "any"
1064
+ ],
1065
+ "inner": null
1066
+ },
1067
+ "arity": {
1068
+ "yields": null,
1069
+ "slots": [
1070
+ null,
1071
+ null
1072
+ ],
1073
+ "requires": "equal"
1074
+ }
1075
+ },
1076
+ {
1077
+ "id": "is",
1078
+ "spellings": [
1079
+ "is"
1080
+ ],
1081
+ "evaluates": false,
1082
+ "kinds": {
1083
+ "yields": "boolean",
1084
+ "operands": [
1085
+ "any",
1086
+ "any"
1087
+ ],
1088
+ "inner": null
1089
+ },
1090
+ "arity": {
1091
+ "yields": null,
1092
+ "slots": [
1093
+ null,
1094
+ null
1095
+ ],
1096
+ "requires": "equal"
1097
+ }
1098
+ }
1099
+ ],
1100
+ "parts": {
1101
+ "negation": [
1102
+ "!",
1103
+ "not"
1104
+ ]
1105
+ }
1106
+ },
1107
+ {
1108
+ "id": "multiplicityTest",
1109
+ "precedence": 8,
1110
+ "fixity": "prefix",
1111
+ "evaluates": true,
1112
+ "associativity": null,
1113
+ "template": [
1114
+ {
1115
+ "item": "operator"
1116
+ },
1117
+ {
1118
+ "item": "operand",
1119
+ "level": 9
1120
+ }
1121
+ ],
1122
+ "kinds": {
1123
+ "yields": "boolean",
1124
+ "operands": [
1125
+ "relation"
1126
+ ],
1127
+ "inner": null
1128
+ },
1129
+ "arity": {
1130
+ "yields": null,
1131
+ "slots": [
1132
+ null
1133
+ ],
1134
+ "requires": null
1135
+ },
1136
+ "operators": [
1137
+ {
1138
+ "id": "empty",
1139
+ "spellings": [
1140
+ "no"
1141
+ ],
1142
+ "evaluates": true,
1143
+ "kinds": {
1144
+ "yields": "boolean",
1145
+ "operands": [
1146
+ "relation"
1147
+ ],
1148
+ "inner": null
1149
+ },
1150
+ "arity": {
1151
+ "yields": null,
1152
+ "slots": [
1153
+ null
1154
+ ],
1155
+ "requires": null
1156
+ }
1157
+ },
1158
+ {
1159
+ "id": "nonEmpty",
1160
+ "spellings": [
1161
+ "some"
1162
+ ],
1163
+ "evaluates": true,
1164
+ "kinds": {
1165
+ "yields": "boolean",
1166
+ "operands": [
1167
+ "relation"
1168
+ ],
1169
+ "inner": null
1170
+ },
1171
+ "arity": {
1172
+ "yields": null,
1173
+ "slots": [
1174
+ null
1175
+ ],
1176
+ "requires": null
1177
+ }
1178
+ },
1179
+ {
1180
+ "id": "atMostOne",
1181
+ "spellings": [
1182
+ "lone"
1183
+ ],
1184
+ "evaluates": true,
1185
+ "kinds": {
1186
+ "yields": "boolean",
1187
+ "operands": [
1188
+ "relation"
1189
+ ],
1190
+ "inner": null
1191
+ },
1192
+ "arity": {
1193
+ "yields": null,
1194
+ "slots": [
1195
+ null
1196
+ ],
1197
+ "requires": null
1198
+ }
1199
+ },
1200
+ {
1201
+ "id": "exactlyOne",
1202
+ "spellings": [
1203
+ "one"
1204
+ ],
1205
+ "evaluates": true,
1206
+ "kinds": {
1207
+ "yields": "boolean",
1208
+ "operands": [
1209
+ "relation"
1210
+ ],
1211
+ "inner": null
1212
+ },
1213
+ "arity": {
1214
+ "yields": null,
1215
+ "slots": [
1216
+ null
1217
+ ],
1218
+ "requires": null
1219
+ }
1220
+ },
1221
+ {
1222
+ "id": "exactlyTwo",
1223
+ "spellings": [
1224
+ "two"
1225
+ ],
1226
+ "evaluates": true,
1227
+ "kinds": {
1228
+ "yields": "boolean",
1229
+ "operands": [
1230
+ "relation"
1231
+ ],
1232
+ "inner": null
1233
+ },
1234
+ "arity": {
1235
+ "yields": null,
1236
+ "slots": [
1237
+ null
1238
+ ],
1239
+ "requires": null
1240
+ }
1241
+ },
1242
+ {
1243
+ "id": "any",
1244
+ "spellings": [
1245
+ "set"
1246
+ ],
1247
+ "evaluates": true,
1248
+ "kinds": {
1249
+ "yields": "operand",
1250
+ "operands": [
1251
+ "relation"
1252
+ ],
1253
+ "inner": null
1254
+ },
1255
+ "arity": {
1256
+ "yields": {
1257
+ "rule": "slot",
1258
+ "index": 0
1259
+ },
1260
+ "slots": [
1261
+ null
1262
+ ],
1263
+ "requires": null
1264
+ }
1265
+ }
1266
+ ],
1267
+ "parts": {}
1268
+ },
1269
+ {
1270
+ "id": "unionDifference",
1271
+ "precedence": 9,
1272
+ "fixity": "infix",
1273
+ "evaluates": true,
1274
+ "associativity": "left",
1275
+ "template": [
1276
+ {
1277
+ "item": "operand",
1278
+ "level": 9
1279
+ },
1280
+ {
1281
+ "item": "operator"
1282
+ },
1283
+ {
1284
+ "item": "operand",
1285
+ "level": 11
1286
+ }
1287
+ ],
1288
+ "kinds": {
1289
+ "yields": "relation",
1290
+ "operands": [
1291
+ "relation",
1292
+ "relation"
1293
+ ],
1294
+ "inner": null
1295
+ },
1296
+ "arity": {
1297
+ "yields": {
1298
+ "rule": "slot",
1299
+ "index": 0
1300
+ },
1301
+ "slots": [
1302
+ null,
1303
+ null
1304
+ ],
1305
+ "requires": "equal"
1306
+ },
1307
+ "operators": [
1308
+ {
1309
+ "id": "union",
1310
+ "spellings": [
1311
+ "+"
1312
+ ],
1313
+ "evaluates": true,
1314
+ "kinds": {
1315
+ "yields": "relation",
1316
+ "operands": [
1317
+ "relation",
1318
+ "relation"
1319
+ ],
1320
+ "inner": null
1321
+ },
1322
+ "arity": {
1323
+ "yields": {
1324
+ "rule": "slot",
1325
+ "index": 0
1326
+ },
1327
+ "slots": [
1328
+ null,
1329
+ null
1330
+ ],
1331
+ "requires": "equal"
1332
+ }
1333
+ },
1334
+ {
1335
+ "id": "difference",
1336
+ "spellings": [
1337
+ "-"
1338
+ ],
1339
+ "evaluates": true,
1340
+ "kinds": {
1341
+ "yields": "relation",
1342
+ "operands": [
1343
+ "relation",
1344
+ "relation"
1345
+ ],
1346
+ "inner": null
1347
+ },
1348
+ "arity": {
1349
+ "yields": {
1350
+ "rule": "slot",
1351
+ "index": 0
1352
+ },
1353
+ "slots": [
1354
+ null,
1355
+ null
1356
+ ],
1357
+ "requires": "equal"
1358
+ }
1359
+ }
1360
+ ],
1361
+ "parts": {}
1362
+ },
1363
+ {
1364
+ "id": "cardinality",
1365
+ "precedence": 10,
1366
+ "fixity": "prefix",
1367
+ "evaluates": true,
1368
+ "associativity": null,
1369
+ "template": [
1370
+ {
1371
+ "item": "operator"
1372
+ },
1373
+ {
1374
+ "item": "operand",
1375
+ "level": 10
1376
+ }
1377
+ ],
1378
+ "kinds": {
1379
+ "yields": "number",
1380
+ "operands": [
1381
+ "relation"
1382
+ ],
1383
+ "inner": null
1384
+ },
1385
+ "arity": {
1386
+ "yields": null,
1387
+ "slots": [
1388
+ null
1389
+ ],
1390
+ "requires": null
1391
+ },
1392
+ "operators": [
1393
+ {
1394
+ "id": "cardinality",
1395
+ "spellings": [
1396
+ "#"
1397
+ ],
1398
+ "evaluates": true,
1399
+ "kinds": {
1400
+ "yields": "number",
1401
+ "operands": [
1402
+ "relation"
1403
+ ],
1404
+ "inner": null
1405
+ },
1406
+ "arity": {
1407
+ "yields": null,
1408
+ "slots": [
1409
+ null
1410
+ ],
1411
+ "requires": null
1412
+ }
1413
+ }
1414
+ ],
1415
+ "parts": {}
1416
+ },
1417
+ {
1418
+ "id": "override",
1419
+ "precedence": 11,
1420
+ "fixity": "infix",
1421
+ "evaluates": true,
1422
+ "associativity": "left",
1423
+ "template": [
1424
+ {
1425
+ "item": "operand",
1426
+ "level": 11
1427
+ },
1428
+ {
1429
+ "item": "operator"
1430
+ },
1431
+ {
1432
+ "item": "operand",
1433
+ "level": 12
1434
+ }
1435
+ ],
1436
+ "kinds": {
1437
+ "yields": "relation",
1438
+ "operands": [
1439
+ "relation",
1440
+ "relation"
1441
+ ],
1442
+ "inner": null
1443
+ },
1444
+ "arity": {
1445
+ "yields": {
1446
+ "rule": "slot",
1447
+ "index": 0
1448
+ },
1449
+ "slots": [
1450
+ null,
1451
+ null
1452
+ ],
1453
+ "requires": "equal"
1454
+ },
1455
+ "operators": [
1456
+ {
1457
+ "id": "override",
1458
+ "spellings": [
1459
+ "++"
1460
+ ],
1461
+ "evaluates": true,
1462
+ "kinds": {
1463
+ "yields": "relation",
1464
+ "operands": [
1465
+ "relation",
1466
+ "relation"
1467
+ ],
1468
+ "inner": null
1469
+ },
1470
+ "arity": {
1471
+ "yields": {
1472
+ "rule": "slot",
1473
+ "index": 0
1474
+ },
1475
+ "slots": [
1476
+ null,
1477
+ null
1478
+ ],
1479
+ "requires": "equal"
1480
+ }
1481
+ }
1482
+ ],
1483
+ "parts": {}
1484
+ },
1485
+ {
1486
+ "id": "intersection",
1487
+ "precedence": 12,
1488
+ "fixity": "infix",
1489
+ "evaluates": true,
1490
+ "associativity": "left",
1491
+ "template": [
1492
+ {
1493
+ "item": "operand",
1494
+ "level": 12
1495
+ },
1496
+ {
1497
+ "item": "operator"
1498
+ },
1499
+ {
1500
+ "item": "operand",
1501
+ "level": 13
1502
+ }
1503
+ ],
1504
+ "kinds": {
1505
+ "yields": "relation",
1506
+ "operands": [
1507
+ "relation",
1508
+ "relation"
1509
+ ],
1510
+ "inner": null
1511
+ },
1512
+ "arity": {
1513
+ "yields": {
1514
+ "rule": "slot",
1515
+ "index": 0
1516
+ },
1517
+ "slots": [
1518
+ null,
1519
+ null
1520
+ ],
1521
+ "requires": "equal"
1522
+ },
1523
+ "operators": [
1524
+ {
1525
+ "id": "intersection",
1526
+ "spellings": [
1527
+ "&"
1528
+ ],
1529
+ "evaluates": true,
1530
+ "kinds": {
1531
+ "yields": "relation",
1532
+ "operands": [
1533
+ "relation",
1534
+ "relation"
1535
+ ],
1536
+ "inner": null
1537
+ },
1538
+ "arity": {
1539
+ "yields": {
1540
+ "rule": "slot",
1541
+ "index": 0
1542
+ },
1543
+ "slots": [
1544
+ null,
1545
+ null
1546
+ ],
1547
+ "requires": "equal"
1548
+ }
1549
+ }
1550
+ ],
1551
+ "parts": {}
1552
+ },
1553
+ {
1554
+ "id": "product",
1555
+ "precedence": 13,
1556
+ "fixity": "infix",
1557
+ "evaluates": true,
1558
+ "associativity": "left",
1559
+ "template": [
1560
+ {
1561
+ "item": "operand",
1562
+ "level": 13
1563
+ },
1564
+ {
1565
+ "item": "part",
1566
+ "role": "multiplicity",
1567
+ "optional": true
1568
+ },
1569
+ {
1570
+ "item": "operator"
1571
+ },
1572
+ {
1573
+ "item": "part",
1574
+ "role": "multiplicity",
1575
+ "optional": true
1576
+ },
1577
+ {
1578
+ "item": "operand",
1579
+ "level": 14
1580
+ }
1581
+ ],
1582
+ "kinds": {
1583
+ "yields": "relation",
1584
+ "operands": [
1585
+ "relation",
1586
+ "relation"
1587
+ ],
1588
+ "inner": null
1589
+ },
1590
+ "arity": {
1591
+ "yields": {
1592
+ "rule": "sum"
1593
+ },
1594
+ "slots": [
1595
+ null,
1596
+ null
1597
+ ],
1598
+ "requires": null
1599
+ },
1600
+ "operators": [
1601
+ {
1602
+ "id": "product",
1603
+ "spellings": [
1604
+ "->"
1605
+ ],
1606
+ "evaluates": true,
1607
+ "kinds": {
1608
+ "yields": "relation",
1609
+ "operands": [
1610
+ "relation",
1611
+ "relation"
1612
+ ],
1613
+ "inner": null
1614
+ },
1615
+ "arity": {
1616
+ "yields": {
1617
+ "rule": "sum"
1618
+ },
1619
+ "slots": [
1620
+ null,
1621
+ null
1622
+ ],
1623
+ "requires": null
1624
+ }
1625
+ }
1626
+ ],
1627
+ "parts": {
1628
+ "multiplicity": [
1629
+ "lone",
1630
+ "some",
1631
+ "one",
1632
+ "two",
1633
+ "set"
1634
+ ]
1635
+ }
1636
+ },
1637
+ {
1638
+ "id": "restriction",
1639
+ "precedence": 14,
1640
+ "fixity": "infix",
1641
+ "evaluates": true,
1642
+ "associativity": "left",
1643
+ "template": [
1644
+ {
1645
+ "item": "operand",
1646
+ "level": 14
1647
+ },
1648
+ {
1649
+ "item": "operator"
1650
+ },
1651
+ {
1652
+ "item": "operand",
1653
+ "level": 15
1654
+ }
1655
+ ],
1656
+ "kinds": {
1657
+ "yields": "relation",
1658
+ "operands": [
1659
+ "relation",
1660
+ "relation"
1661
+ ],
1662
+ "inner": null
1663
+ },
1664
+ "arity": {
1665
+ "yields": null,
1666
+ "slots": [
1667
+ null,
1668
+ null
1669
+ ],
1670
+ "requires": null
1671
+ },
1672
+ "operators": [
1673
+ {
1674
+ "id": "domainRestriction",
1675
+ "spellings": [
1676
+ "<:"
1677
+ ],
1678
+ "evaluates": true,
1679
+ "kinds": {
1680
+ "yields": "relation",
1681
+ "operands": [
1682
+ "relation",
1683
+ "relation"
1684
+ ],
1685
+ "inner": null
1686
+ },
1687
+ "arity": {
1688
+ "yields": {
1689
+ "rule": "slot",
1690
+ "index": 1
1691
+ },
1692
+ "slots": [
1693
+ 1,
1694
+ null
1695
+ ],
1696
+ "requires": null
1697
+ }
1698
+ },
1699
+ {
1700
+ "id": "rangeRestriction",
1701
+ "spellings": [
1702
+ ":>"
1703
+ ],
1704
+ "evaluates": true,
1705
+ "kinds": {
1706
+ "yields": "relation",
1707
+ "operands": [
1708
+ "relation",
1709
+ "relation"
1710
+ ],
1711
+ "inner": null
1712
+ },
1713
+ "arity": {
1714
+ "yields": {
1715
+ "rule": "slot",
1716
+ "index": 0
1717
+ },
1718
+ "slots": [
1719
+ null,
1720
+ 1
1721
+ ],
1722
+ "requires": null
1723
+ }
1724
+ }
1725
+ ],
1726
+ "parts": {}
1727
+ },
1728
+ {
1729
+ "id": "application",
1730
+ "precedence": 15,
1731
+ "fixity": "bracket",
1732
+ "evaluates": true,
1733
+ "associativity": null,
1734
+ "template": [
1735
+ {
1736
+ "item": "operand",
1737
+ "level": 15
1738
+ },
1739
+ {
1740
+ "item": "part",
1741
+ "role": "open",
1742
+ "optional": false
1743
+ },
1744
+ {
1745
+ "item": "list",
1746
+ "level": 0,
1747
+ "role": "separator"
1748
+ },
1749
+ {
1750
+ "item": "part",
1751
+ "role": "close",
1752
+ "optional": false
1753
+ }
1754
+ ],
1755
+ "kinds": {
1756
+ "yields": null,
1757
+ "operands": [
1758
+ null
1759
+ ],
1760
+ "inner": null
1761
+ },
1762
+ "arity": {
1763
+ "yields": {
1764
+ "rule": "boxJoin"
1765
+ },
1766
+ "slots": [
1767
+ null
1768
+ ],
1769
+ "requires": null
1770
+ },
1771
+ "operators": [],
1772
+ "parts": {
1773
+ "open": [
1774
+ "["
1775
+ ],
1776
+ "close": [
1777
+ "]"
1778
+ ],
1779
+ "separator": [
1780
+ ","
1781
+ ]
1782
+ }
1783
+ },
1784
+ {
1785
+ "id": "join",
1786
+ "precedence": 16,
1787
+ "fixity": "infix",
1788
+ "evaluates": true,
1789
+ "associativity": "left",
1790
+ "template": [
1791
+ {
1792
+ "item": "operand",
1793
+ "level": 16
1794
+ },
1795
+ {
1796
+ "item": "operator"
1797
+ },
1798
+ {
1799
+ "item": "operand",
1800
+ "level": 17
1801
+ }
1802
+ ],
1803
+ "kinds": {
1804
+ "yields": "relation",
1805
+ "operands": [
1806
+ "relation",
1807
+ "relation"
1808
+ ],
1809
+ "inner": null
1810
+ },
1811
+ "arity": {
1812
+ "yields": {
1813
+ "rule": "join"
1814
+ },
1815
+ "slots": [
1816
+ null,
1817
+ null
1818
+ ],
1819
+ "requires": null
1820
+ },
1821
+ "operators": [
1822
+ {
1823
+ "id": "join",
1824
+ "spellings": [
1825
+ "."
1826
+ ],
1827
+ "evaluates": true,
1828
+ "kinds": {
1829
+ "yields": "relation",
1830
+ "operands": [
1831
+ "relation",
1832
+ "relation"
1833
+ ],
1834
+ "inner": null
1835
+ },
1836
+ "arity": {
1837
+ "yields": {
1838
+ "rule": "join"
1839
+ },
1840
+ "slots": [
1841
+ null,
1842
+ null
1843
+ ],
1844
+ "requires": null
1845
+ }
1846
+ }
1847
+ ],
1848
+ "parts": {}
1849
+ },
1850
+ {
1851
+ "id": "appliedName",
1852
+ "precedence": 16,
1853
+ "fixity": "bracket",
1854
+ "evaluates": false,
1855
+ "associativity": null,
1856
+ "template": [
1857
+ {
1858
+ "item": "name",
1859
+ "qualified": false
1860
+ },
1861
+ {
1862
+ "item": "part",
1863
+ "role": "open",
1864
+ "optional": false
1865
+ },
1866
+ {
1867
+ "item": "list",
1868
+ "level": 0,
1869
+ "role": "separator"
1870
+ },
1871
+ {
1872
+ "item": "part",
1873
+ "role": "close",
1874
+ "optional": false
1875
+ }
1876
+ ],
1877
+ "kinds": {
1878
+ "yields": null,
1879
+ "operands": [],
1880
+ "inner": null
1881
+ },
1882
+ "arity": {
1883
+ "yields": null,
1884
+ "slots": [],
1885
+ "requires": null
1886
+ },
1887
+ "operators": [],
1888
+ "parts": {
1889
+ "open": [
1890
+ "["
1891
+ ],
1892
+ "close": [
1893
+ "]"
1894
+ ],
1895
+ "separator": [
1896
+ ","
1897
+ ]
1898
+ }
1899
+ },
1900
+ {
1901
+ "id": "unaryPrefix",
1902
+ "precedence": 17,
1903
+ "fixity": "prefix",
1904
+ "evaluates": true,
1905
+ "associativity": null,
1906
+ "template": [
1907
+ {
1908
+ "item": "operator"
1909
+ },
1910
+ {
1911
+ "item": "operand",
1912
+ "level": 17
1913
+ }
1914
+ ],
1915
+ "kinds": {
1916
+ "yields": "relation",
1917
+ "operands": [
1918
+ "relation"
1919
+ ],
1920
+ "inner": null
1921
+ },
1922
+ "arity": {
1923
+ "yields": null,
1924
+ "slots": [
1925
+ null
1926
+ ],
1927
+ "requires": null
1928
+ },
1929
+ "operators": [
1930
+ {
1931
+ "id": "transpose",
1932
+ "spellings": [
1933
+ "~"
1934
+ ],
1935
+ "evaluates": true,
1936
+ "kinds": {
1937
+ "yields": "relation",
1938
+ "operands": [
1939
+ "relation"
1940
+ ],
1941
+ "inner": null
1942
+ },
1943
+ "arity": {
1944
+ "yields": {
1945
+ "rule": "fixed",
1946
+ "width": 2
1947
+ },
1948
+ "slots": [
1949
+ 2
1950
+ ],
1951
+ "requires": null
1952
+ }
1953
+ },
1954
+ {
1955
+ "id": "transitiveClosure",
1956
+ "spellings": [
1957
+ "^"
1958
+ ],
1959
+ "evaluates": true,
1960
+ "kinds": {
1961
+ "yields": "relation",
1962
+ "operands": [
1963
+ "relation"
1964
+ ],
1965
+ "inner": null
1966
+ },
1967
+ "arity": {
1968
+ "yields": {
1969
+ "rule": "fixed",
1970
+ "width": 2
1971
+ },
1972
+ "slots": [
1973
+ 2
1974
+ ],
1975
+ "requires": null
1976
+ }
1977
+ },
1978
+ {
1979
+ "id": "reflexiveTransitiveClosure",
1980
+ "spellings": [
1981
+ "*"
1982
+ ],
1983
+ "evaluates": true,
1984
+ "kinds": {
1985
+ "yields": "relation",
1986
+ "operands": [
1987
+ "relation"
1988
+ ],
1989
+ "inner": null
1990
+ },
1991
+ "arity": {
1992
+ "yields": {
1993
+ "rule": "fixed",
1994
+ "width": 2
1995
+ },
1996
+ "slots": [
1997
+ 2
1998
+ ],
1999
+ "requires": null
2000
+ }
2001
+ },
2002
+ {
2003
+ "id": "label",
2004
+ "spellings": [
2005
+ "@:"
2006
+ ],
2007
+ "evaluates": true,
2008
+ "kinds": {
2009
+ "yields": "string",
2010
+ "operands": [
2011
+ "relation"
2012
+ ],
2013
+ "inner": null
2014
+ },
2015
+ "arity": {
2016
+ "yields": null,
2017
+ "slots": [
2018
+ null
2019
+ ],
2020
+ "requires": null
2021
+ }
2022
+ },
2023
+ {
2024
+ "id": "labelString",
2025
+ "spellings": [
2026
+ "@str:"
2027
+ ],
2028
+ "evaluates": true,
2029
+ "kinds": {
2030
+ "yields": "string",
2031
+ "operands": [
2032
+ "relation"
2033
+ ],
2034
+ "inner": null
2035
+ },
2036
+ "arity": {
2037
+ "yields": null,
2038
+ "slots": [
2039
+ null
2040
+ ],
2041
+ "requires": null
2042
+ }
2043
+ },
2044
+ {
2045
+ "id": "labelBoolean",
2046
+ "spellings": [
2047
+ "@bool:"
2048
+ ],
2049
+ "evaluates": true,
2050
+ "kinds": {
2051
+ "yields": "boolean",
2052
+ "operands": [
2053
+ "relation"
2054
+ ],
2055
+ "inner": null
2056
+ },
2057
+ "arity": {
2058
+ "yields": null,
2059
+ "slots": [
2060
+ null
2061
+ ],
2062
+ "requires": null
2063
+ }
2064
+ },
2065
+ {
2066
+ "id": "labelNumber",
2067
+ "spellings": [
2068
+ "@num:"
2069
+ ],
2070
+ "evaluates": true,
2071
+ "kinds": {
2072
+ "yields": "number",
2073
+ "operands": [
2074
+ "relation"
2075
+ ],
2076
+ "inner": null
2077
+ },
2078
+ "arity": {
2079
+ "yields": null,
2080
+ "slots": [
2081
+ null
2082
+ ],
2083
+ "requires": null
2084
+ }
2085
+ }
2086
+ ],
2087
+ "parts": {}
2088
+ },
2089
+ {
2090
+ "id": "constant",
2091
+ "precedence": 18,
2092
+ "fixity": "atom",
2093
+ "evaluates": true,
2094
+ "associativity": null,
2095
+ "template": [
2096
+ {
2097
+ "item": "constant"
2098
+ }
2099
+ ],
2100
+ "kinds": {
2101
+ "yields": null,
2102
+ "operands": [],
2103
+ "inner": null
2104
+ },
2105
+ "arity": {
2106
+ "yields": null,
2107
+ "slots": [],
2108
+ "requires": null
2109
+ },
2110
+ "operators": [
2111
+ {
2112
+ "id": "emptySet",
2113
+ "spellings": [
2114
+ "none"
2115
+ ],
2116
+ "evaluates": true,
2117
+ "kinds": {
2118
+ "yields": "relation",
2119
+ "operands": [],
2120
+ "inner": null
2121
+ },
2122
+ "arity": {
2123
+ "yields": {
2124
+ "rule": "fixed",
2125
+ "width": 1
2126
+ },
2127
+ "slots": [],
2128
+ "requires": null
2129
+ }
2130
+ },
2131
+ {
2132
+ "id": "universe",
2133
+ "spellings": [
2134
+ "univ"
2135
+ ],
2136
+ "evaluates": true,
2137
+ "kinds": {
2138
+ "yields": "relation",
2139
+ "operands": [],
2140
+ "inner": null
2141
+ },
2142
+ "arity": {
2143
+ "yields": {
2144
+ "rule": "fixed",
2145
+ "width": 1
2146
+ },
2147
+ "slots": [],
2148
+ "requires": null
2149
+ }
2150
+ },
2151
+ {
2152
+ "id": "identity",
2153
+ "spellings": [
2154
+ "iden"
2155
+ ],
2156
+ "evaluates": true,
2157
+ "kinds": {
2158
+ "yields": "relation",
2159
+ "operands": [],
2160
+ "inner": null
2161
+ },
2162
+ "arity": {
2163
+ "yields": {
2164
+ "rule": "fixed",
2165
+ "width": 2
2166
+ },
2167
+ "slots": [],
2168
+ "requires": null
2169
+ }
2170
+ }
2171
+ ],
2172
+ "parts": {
2173
+ "negation": [
2174
+ "-"
2175
+ ]
2176
+ }
2177
+ },
2178
+ {
2179
+ "id": "name",
2180
+ "precedence": 18,
2181
+ "fixity": "atom",
2182
+ "evaluates": true,
2183
+ "associativity": null,
2184
+ "template": [
2185
+ {
2186
+ "item": "name",
2187
+ "qualified": true
2188
+ }
2189
+ ],
2190
+ "kinds": {
2191
+ "yields": "relation",
2192
+ "operands": [],
2193
+ "inner": null
2194
+ },
2195
+ "arity": {
2196
+ "yields": null,
2197
+ "slots": [],
2198
+ "requires": null
2199
+ },
2200
+ "operators": [],
2201
+ "parts": {}
2202
+ },
2203
+ {
2204
+ "id": "atName",
2205
+ "precedence": 18,
2206
+ "fixity": "prefix",
2207
+ "evaluates": false,
2208
+ "associativity": null,
2209
+ "template": [
2210
+ {
2211
+ "item": "operator"
2212
+ },
2213
+ {
2214
+ "item": "name",
2215
+ "qualified": false
2216
+ }
2217
+ ],
2218
+ "kinds": {
2219
+ "yields": null,
2220
+ "operands": [],
2221
+ "inner": null
2222
+ },
2223
+ "arity": {
2224
+ "yields": null,
2225
+ "slots": [],
2226
+ "requires": null
2227
+ },
2228
+ "operators": [
2229
+ {
2230
+ "id": "atName",
2231
+ "spellings": [
2232
+ "@"
2233
+ ],
2234
+ "evaluates": false,
2235
+ "kinds": {
2236
+ "yields": null,
2237
+ "operands": [],
2238
+ "inner": null
2239
+ },
2240
+ "arity": {
2241
+ "yields": null,
2242
+ "slots": [],
2243
+ "requires": null
2244
+ }
2245
+ }
2246
+ ],
2247
+ "parts": {}
2248
+ },
2249
+ {
2250
+ "id": "atomLiteral",
2251
+ "precedence": 18,
2252
+ "fixity": "prefix",
2253
+ "evaluates": true,
2254
+ "associativity": null,
2255
+ "template": [
2256
+ {
2257
+ "item": "operator"
2258
+ },
2259
+ {
2260
+ "item": "name",
2261
+ "qualified": false
2262
+ }
2263
+ ],
2264
+ "kinds": {
2265
+ "yields": "relation",
2266
+ "operands": [],
2267
+ "inner": null
2268
+ },
2269
+ "arity": {
2270
+ "yields": {
2271
+ "rule": "fixed",
2272
+ "width": 1
2273
+ },
2274
+ "slots": [],
2275
+ "requires": null
2276
+ },
2277
+ "operators": [
2278
+ {
2279
+ "id": "atomLiteral",
2280
+ "spellings": [
2281
+ "`"
2282
+ ],
2283
+ "evaluates": true,
2284
+ "kinds": {
2285
+ "yields": "relation",
2286
+ "operands": [],
2287
+ "inner": null
2288
+ },
2289
+ "arity": {
2290
+ "yields": {
2291
+ "rule": "fixed",
2292
+ "width": 1
2293
+ },
2294
+ "slots": [],
2295
+ "requires": null
2296
+ }
2297
+ }
2298
+ ],
2299
+ "parts": {}
2300
+ },
2301
+ {
2302
+ "id": "this",
2303
+ "precedence": 18,
2304
+ "fixity": "atom",
2305
+ "evaluates": false,
2306
+ "associativity": null,
2307
+ "template": [
2308
+ {
2309
+ "item": "operator"
2310
+ }
2311
+ ],
2312
+ "kinds": {
2313
+ "yields": null,
2314
+ "operands": [],
2315
+ "inner": null
2316
+ },
2317
+ "arity": {
2318
+ "yields": null,
2319
+ "slots": [],
2320
+ "requires": null
2321
+ },
2322
+ "operators": [
2323
+ {
2324
+ "id": "this",
2325
+ "spellings": [
2326
+ "this"
2327
+ ],
2328
+ "evaluates": false,
2329
+ "kinds": {
2330
+ "yields": null,
2331
+ "operands": [],
2332
+ "inner": null
2333
+ },
2334
+ "arity": {
2335
+ "yields": null,
2336
+ "slots": [],
2337
+ "requires": null
2338
+ }
2339
+ }
2340
+ ],
2341
+ "parts": {}
2342
+ },
2343
+ {
2344
+ "id": "comprehension",
2345
+ "precedence": 18,
2346
+ "fixity": "comprehension",
2347
+ "evaluates": true,
2348
+ "associativity": null,
2349
+ "template": [
2350
+ {
2351
+ "item": "part",
2352
+ "role": "open",
2353
+ "optional": false
2354
+ },
2355
+ {
2356
+ "item": "binders",
2357
+ "style": "typed",
2358
+ "level": 0
2359
+ },
2360
+ {
2361
+ "item": "body",
2362
+ "level": 0
2363
+ },
2364
+ {
2365
+ "item": "part",
2366
+ "role": "close",
2367
+ "optional": false
2368
+ }
2369
+ ],
2370
+ "kinds": {
2371
+ "yields": "relation",
2372
+ "operands": [],
2373
+ "inner": "boolean"
2374
+ },
2375
+ "arity": {
2376
+ "yields": {
2377
+ "rule": "binders"
2378
+ },
2379
+ "slots": [],
2380
+ "requires": null
2381
+ },
2382
+ "operators": [],
2383
+ "parts": {
2384
+ "open": [
2385
+ "{"
2386
+ ],
2387
+ "close": [
2388
+ "}"
2389
+ ],
2390
+ "bar": [
2391
+ "|"
2392
+ ],
2393
+ "colon": [
2394
+ ":"
2395
+ ],
2396
+ "separator": [
2397
+ ","
2398
+ ],
2399
+ "disjoint": [
2400
+ "disj"
2401
+ ],
2402
+ "domainMultiplicity": [
2403
+ "set"
2404
+ ]
2405
+ }
2406
+ },
2407
+ {
2408
+ "id": "grouping",
2409
+ "precedence": 18,
2410
+ "fixity": "bracket",
2411
+ "evaluates": true,
2412
+ "associativity": null,
2413
+ "template": [
2414
+ {
2415
+ "item": "part",
2416
+ "role": "open",
2417
+ "optional": false
2418
+ },
2419
+ {
2420
+ "item": "operand",
2421
+ "level": 0
2422
+ },
2423
+ {
2424
+ "item": "part",
2425
+ "role": "close",
2426
+ "optional": false
2427
+ }
2428
+ ],
2429
+ "kinds": {
2430
+ "yields": "operand",
2431
+ "operands": [
2432
+ "operand"
2433
+ ],
2434
+ "inner": null
2435
+ },
2436
+ "arity": {
2437
+ "yields": {
2438
+ "rule": "slot",
2439
+ "index": 0
2440
+ },
2441
+ "slots": [
2442
+ null
2443
+ ],
2444
+ "requires": null
2445
+ },
2446
+ "operators": [],
2447
+ "parts": {
2448
+ "open": [
2449
+ "("
2450
+ ],
2451
+ "close": [
2452
+ ")"
2453
+ ]
2454
+ }
2455
+ },
2456
+ {
2457
+ "id": "block",
2458
+ "precedence": 18,
2459
+ "fixity": "bracket",
2460
+ "evaluates": true,
2461
+ "associativity": null,
2462
+ "template": [
2463
+ {
2464
+ "item": "part",
2465
+ "role": "open",
2466
+ "optional": false
2467
+ },
2468
+ {
2469
+ "item": "repeat",
2470
+ "level": 0
2471
+ },
2472
+ {
2473
+ "item": "part",
2474
+ "role": "close",
2475
+ "optional": false
2476
+ }
2477
+ ],
2478
+ "kinds": {
2479
+ "yields": "boolean",
2480
+ "operands": [],
2481
+ "inner": "boolean"
2482
+ },
2483
+ "arity": {
2484
+ "yields": null,
2485
+ "slots": [],
2486
+ "requires": null
2487
+ },
2488
+ "operators": [],
2489
+ "parts": {
2490
+ "open": [
2491
+ "{"
2492
+ ],
2493
+ "close": [
2494
+ "}"
2495
+ ]
2496
+ }
2497
+ },
2498
+ {
2499
+ "id": "sexpr",
2500
+ "precedence": 18,
2501
+ "fixity": "atom",
2502
+ "evaluates": false,
2503
+ "associativity": null,
2504
+ "template": [
2505
+ {
2506
+ "item": "operator"
2507
+ }
2508
+ ],
2509
+ "kinds": {
2510
+ "yields": null,
2511
+ "operands": [],
2512
+ "inner": null
2513
+ },
2514
+ "arity": {
2515
+ "yields": null,
2516
+ "slots": [],
2517
+ "requires": null
2518
+ },
2519
+ "operators": [
2520
+ {
2521
+ "id": "sexpr",
2522
+ "spellings": [
2523
+ "sexpr"
2524
+ ],
2525
+ "evaluates": false,
2526
+ "kinds": {
2527
+ "yields": null,
2528
+ "operands": [],
2529
+ "inner": null
2530
+ },
2531
+ "arity": {
2532
+ "yields": null,
2533
+ "slots": [],
2534
+ "requires": null
2535
+ }
2536
+ }
2537
+ ],
2538
+ "parts": {}
2539
+ }
2540
+ ]
2541
+ }