Skip to content

Commit

Permalink
Revert some unnecesasry changes around seq
Browse files Browse the repository at this point in the history
  • Loading branch information
vzarytovskii committed Oct 14, 2024
1 parent eaee661 commit cc675be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Compiler/CodeGen/IlxGen.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6025,7 +6025,7 @@ and GenStructStateMachine cenv cgbuf eenvouter (res: LoweredStateMachine) sequel
GetImmediateInterfacesOfType SkipUnrefInterfaces.Yes g cenv.amap m templateStructTy

let ilInterfaceTys =
Seq.map (GenType cenv m eenvinner.tyenv >> InterfaceImpl.Create) interfaceTys
List.map (GenType cenv m eenvinner.tyenv >> InterfaceImpl.Create) interfaceTys

let super = g.iltyp_ValueType

Expand Down Expand Up @@ -6256,7 +6256,7 @@ and GenStructStateMachine cenv cgbuf eenvouter (res: LoweredStateMachine) sequel
methods = mkILMethods mdefs,
methodImpls = mkILMethodImpls mimpls,
nestedTypes = emptyILTypeDefs,
implements = InterruptibleLazy.FromValue(ilInterfaceTys |> Seq.toList),
implements = InterruptibleLazy.FromValue(ilInterfaceTys),
extends = Some super,
additionalFlags = ILTypeDefAdditionalFlags.None,
securityDecls = emptyILSecurityDecls
Expand Down

0 comments on commit cc675be

Please sign in to comment.