@@ -135,6 +135,14 @@ type NodeOutTable<'Data, 'Node> =
135
135
Table = Table<_>. Create nm
136
136
}
137
137
138
+ // Small glossary for future generations:
139
+ // o... - output
140
+ // i... - input
141
+ // os - output stream
142
+ // is - input stream
143
+ // tab - table
144
+ // osgn - output stream graph nodes
145
+
138
146
[<NoEquality; NoComparison>]
139
147
type WriterState =
140
148
{
@@ -1937,7 +1945,7 @@ let u_tcref st =
1937
1945
match tag with
1938
1946
| 0 -> u_ local_ item_ ref st.ientities st |> ERefLocal
1939
1947
| 1 -> u_ nleref st |> ERefNonLocal
1940
- | _ -> ufailwith st " u_item_ref "
1948
+ | _ -> ufailwith st " u_tcref "
1941
1949
1942
1950
let u_ucref st =
1943
1951
let a , b = u_ tup2 u_ tcref u_ string st
@@ -2027,7 +2035,7 @@ let u_vref st =
2027
2035
match tag with
2028
2036
| 0 -> u_ local_ item_ ref st.ivals st |> VRefLocal
2029
2037
| 1 -> u_ nonlocal_ val_ ref st |> VRefNonLocal
2030
- | _ -> ufailwith st " u_item_ref "
2038
+ | _ -> ufailwith st " u_vref "
2031
2039
2032
2040
let u_vrefs = u_ list u_ vref
2033
2041
@@ -3206,7 +3214,7 @@ and u_parentref st =
3206
3214
match tag with
3207
3215
| 0 -> ParentNone
3208
3216
| 1 -> u_ tcref st |> Parent
3209
- | _ -> ufailwith st " u_attribkind "
3217
+ | _ -> ufailwith st " u_parentref "
3210
3218
3211
3219
and u_attribkind st =
3212
3220
let tag = u_ byte st
@@ -3496,7 +3504,7 @@ and u_lval_op_kind st =
3496
3504
| 1 -> LByrefGet
3497
3505
| 2 -> LSet
3498
3506
| 3 -> LByrefSet
3499
- | _ -> ufailwith st " uval_op_kind "
3507
+ | _ -> ufailwith st " ulval_op_kind "
3500
3508
3501
3509
and p_op x st =
3502
3510
match x with
0 commit comments