File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -788,7 +788,7 @@ let FlatEnvPacks g fclassM topValS declist (reqdItemsMap: Zmap<BindingGroupShari
788
788
dprintf " tlr: packEnv unpack =%s \n " ( showL ( listL bindingL unpack))
789
789
790
790
// result
791
- ( fc, { ep_ etps = [] // Zset.elements env.reqdTypars
791
+ ( fc, { ep_ etps = Zset.elements env.reqdTypars
792
792
ep_ aenvs = aenvs
793
793
ep_ pack = pack
794
794
ep_ unpack = unpack}), carrierMaps
@@ -999,7 +999,6 @@ module Pass4_RewriteAssembly =
999
999
fBind
1000
1000
1001
1001
let fHatNewBinding ( shortRecBinds : Bindings ) ( TBind ( f , b , letSeqPtOpt )) =
1002
- printfn $" fHatNewBinding: f:{f} b:{b}"
1003
1002
let wf = Zmap.force f penv.arityM ( " fHatNewBinding - arityM" , nameOfVal)
1004
1003
let fHat = Zmap.force f penv.fHatM ( " fHatNewBinding - fHatM" , nameOfVal)
1005
1004
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ let mkTyparTy (tp:Typar) =
196
196
197
197
// For fresh type variables clear the StaticReq when copying because the requirement will be re-established through the
198
198
// process of type inference.
199
- let copyTypar clearStaticReq ( tp : Typar ) =
199
+ let copyTypar clearStaticReq ( tp : Typar ) =
200
200
let optData = tp.typar_ opt_ data |> Option.map ( fun tg -> { typar_ il_ name = tg.typar_ il_ name; typar_ xmldoc = tg.typar_ xmldoc; typar_ constraints = tg.typar_ constraints; typar_ attribs = tg.typar_ attribs; typar_ is_ contravariant = tg.typar_ is_ contravariant })
201
201
let flags = if clearStaticReq then tp.typar_ flags.WithStaticReq( TyparStaticReq.None) else tp.typar_ flags
202
202
Typar.New { typar_ id = tp.typar_ id
You can’t perform that action at this time.
0 commit comments