@@ -170,11 +170,8 @@ let splitTypeNameRight nm =
170
170
// --------------------------------------------------------------------
171
171
172
172
/// This is used to store event, property and field maps.
173
- type LazyOrderedMultiMap < 'Key , 'Data when 'Key: equality
174
- #if ! NO_CHECKNULLS
175
- and 'Key:not null
176
- #endif
177
- >( keyf : 'Data -> 'Key , lazyItems : InterruptibleLazy < 'Data list >) =
173
+ type LazyOrderedMultiMap < 'Key , 'Data when 'Key: equality and 'Key: not null >( keyf : 'Data -> 'Key , lazyItems : InterruptibleLazy < 'Data list >)
174
+ =
178
175
179
176
let quickMap =
180
177
lazyItems
@@ -519,7 +516,11 @@ type ILAssemblyRef(data) =
519
516
520
517
let retargetable = aname.Flags = AssemblyNameFlags.Retargetable
521
518
522
- let name = match aname.Name with | null -> aname.FullName | name -> name
519
+ let name =
520
+ match aname.Name with
521
+ | null -> aname.FullName
522
+ | name -> name
523
+
523
524
ILAssemblyRef.Create( name, None, publicKey, retargetable, version, locale)
524
525
525
526
member aref.QualifiedName =
@@ -1862,7 +1863,7 @@ type ILGenericParameterDef =
1862
1863
Name: string
1863
1864
Constraints: ILTypes
1864
1865
Variance: ILGenericVariance
1865
- HasReferenceTypeConstraint: bool
1866
+ HasReferenceTypeConstraint: bool
1866
1867
HasNotNullableValueTypeConstraint: bool
1867
1868
HasDefaultConstructorConstraint: bool
1868
1869
HasAllowsRefStruct: bool
@@ -1910,7 +1911,11 @@ let inline conditionalAdd condition flagToAdd source =
1910
1911
let NoMetadataIdx = - 1
1911
1912
1912
1913
type InterfaceImpl =
1913
- { Idx: int ; Type: ILType ; mutable CustomAttrsStored: ILAttributesStored }
1914
+ {
1915
+ Idx: int
1916
+ Type: ILType
1917
+ mutable CustomAttrsStored: ILAttributesStored
1918
+ }
1914
1919
1915
1920
member x.CustomAttrs =
1916
1921
match x.CustomAttrsStored with
@@ -1919,12 +1924,16 @@ type InterfaceImpl =
1919
1924
x.CustomAttrsStored <- ILAttributesStored.Given res
1920
1925
res
1921
1926
| ILAttributesStored.Given attrs -> attrs
1922
-
1923
- static member Create ( ilType : ILType , customAttrsStored : ILAttributesStored ) =
1924
- { Idx = NoMetadataIdx; Type = ilType; CustomAttrsStored = customAttrsStored }
1925
1927
1926
- static member Create ( ilType : ILType ) = InterfaceImpl.Create( ilType, emptyILCustomAttrsStored)
1928
+ static member Create ( ilType : ILType , customAttrsStored : ILAttributesStored ) =
1929
+ {
1930
+ Idx = NoMetadataIdx
1931
+ Type = ilType
1932
+ CustomAttrsStored = customAttrsStored
1933
+ }
1927
1934
1935
+ static member Create ( ilType : ILType ) =
1936
+ InterfaceImpl.Create( ilType, emptyILCustomAttrsStored)
1928
1937
1929
1938
[<NoComparison; NoEquality; StructuredFormatDisplay( " {DebugText}" ) >]
1930
1939
type ILMethodDef
@@ -2575,17 +2584,15 @@ type ILTypeDefAdditionalFlags =
2575
2584
| CanContainExtensionMethods = 1024
2576
2585
2577
2586
let internal typeKindFlags =
2578
- ILTypeDefAdditionalFlags.Class |||
2579
- ILTypeDefAdditionalFlags.ValueType |||
2580
- ILTypeDefAdditionalFlags.Interface |||
2581
- ILTypeDefAdditionalFlags.Enum |||
2582
- ILTypeDefAdditionalFlags.Delegate
2587
+ ILTypeDefAdditionalFlags.Class
2588
+ ||| ILTypeDefAdditionalFlags.ValueType
2589
+ ||| ILTypeDefAdditionalFlags.Interface
2590
+ ||| ILTypeDefAdditionalFlags.Enum
2591
+ ||| ILTypeDefAdditionalFlags.Delegate
2583
2592
2584
- let inline internal resetTypeKind flags =
2585
- flags &&& ~~~ typeKindFlags
2593
+ let inline internal resetTypeKind flags = flags &&& ~~~ typeKindFlags
2586
2594
2587
- let (| HasFlag | _ |) ( flag : ILTypeDefAdditionalFlags ) flags =
2588
- flags &&& flag = flag
2595
+ let (| HasFlag | _ |) ( flag : ILTypeDefAdditionalFlags ) flags = flags &&& flag = flag
2589
2596
2590
2597
let inline typeKindByNames extendsName typeName =
2591
2598
match extendsName with
@@ -2676,21 +2683,24 @@ type ILTypeDef
2676
2683
2677
2684
let hasFlag flag = additionalFlags &&& flag = flag
2678
2685
2679
- new ( name,
2680
- attributes,
2681
- layout,
2682
- implements,
2683
- genericParams,
2684
- extends,
2685
- methods,
2686
- nestedTypes,
2687
- fields,
2688
- methodImpls,
2689
- events,
2690
- properties,
2691
- additionalFlags,
2692
- securityDecls,
2693
- customAttrs) =
2686
+ new
2687
+ (
2688
+ name,
2689
+ attributes,
2690
+ layout,
2691
+ implements,
2692
+ genericParams,
2693
+ extends,
2694
+ methods,
2695
+ nestedTypes,
2696
+ fields,
2697
+ methodImpls,
2698
+ events,
2699
+ properties,
2700
+ additionalFlags,
2701
+ securityDecls,
2702
+ customAttrs
2703
+ ) =
2694
2704
ILTypeDef(
2695
2705
name,
2696
2706
attributes,
@@ -2710,23 +2720,27 @@ type ILTypeDef
2710
2720
NoMetadataIdx
2711
2721
)
2712
2722
2713
- new ( name,
2714
- attributes,
2715
- layout,
2716
- implements,
2717
- genericParams,
2718
- extends,
2719
- methods,
2720
- nestedTypes,
2721
- fields,
2722
- methodImpls,
2723
- events,
2724
- properties,
2725
- securityDecls,
2726
- customAttrs) =
2723
+ new
2724
+ (
2725
+ name,
2726
+ attributes,
2727
+ layout,
2728
+ implements,
2729
+ genericParams,
2730
+ extends,
2731
+ methods,
2732
+ nestedTypes,
2733
+ fields,
2734
+ methodImpls,
2735
+ events,
2736
+ properties,
2737
+ securityDecls,
2738
+ customAttrs
2739
+ ) =
2727
2740
let additionalFlags =
2728
- ILTypeDefAdditionalFlags.CanContainExtensionMethods |||
2729
- typeKindOfFlags name extends ( int attributes)
2741
+ ILTypeDefAdditionalFlags.CanContainExtensionMethods
2742
+ ||| typeKindOfFlags name extends ( int attributes)
2743
+
2730
2744
ILTypeDef(
2731
2745
name,
2732
2746
attributes,
@@ -2955,10 +2969,10 @@ and [<NoEquality; NoComparison>] ILPreTypeDef =
2955
2969
and [<Sealed>] ILPreTypeDefImpl ( nameSpace : string list , name : string , metadataIndex : int32 , storage : ILTypeDefStored ) =
2956
2970
let stored =
2957
2971
lazy
2958
- match storage with
2959
- | ILTypeDefStored.Given td -> td
2960
- | ILTypeDefStored.Computed f -> f ()
2961
- | ILTypeDefStored.Reader f -> f metadataIndex
2972
+ match storage with
2973
+ | ILTypeDefStored.Given td -> td
2974
+ | ILTypeDefStored.Computed f -> f ()
2975
+ | ILTypeDefStored.Reader f -> f metadataIndex
2962
2976
2963
2977
interface ILPreTypeDef with
2964
2978
member _.Namespace = nameSpace
@@ -4248,25 +4262,31 @@ let mkILStorageCtorWithParamNames (preblock: ILInstr list, ty, extraParams, flds
4248
4262
| Some x -> I_ seqpoint x
4249
4263
| None -> ()
4250
4264
yield ! preblock
4251
- for ( n, (_ pnm, nm, fieldTy,_ attrs)) in List.indexed flds do
4265
+ for ( n, (_ pnm, nm, fieldTy, _ attrs)) in List.indexed flds do
4252
4266
mkLdarg0
4253
4267
mkLdarg ( uint16 ( n + 1 ))
4254
4268
mkNormalStfld ( mkILFieldSpecInTy ( ty, nm, fieldTy))
4255
4269
]
4256
4270
4257
4271
let body = mkMethodBody ( false , [], 2 , nonBranchingInstrsToCode code, tag, imports)
4258
- let fieldParams =
4272
+
4273
+ let fieldParams =
4259
4274
[
4260
- for ( pnm,_, ty, attrs) in flds do
4275
+ for ( pnm, _, ty, attrs) in flds do
4261
4276
let ilParam = mkILParamNamed ( pnm, ty)
4277
+
4262
4278
let ilParam =
4263
4279
match attrs with
4264
4280
| [] -> ilParam
4265
- | attrs -> { ilParam with CustomAttrsStored = storeILCustomAttrs ( mkILCustomAttrs attrs ) }
4281
+ | attrs ->
4282
+ { ilParam with
4283
+ CustomAttrsStored = storeILCustomAttrs ( mkILCustomAttrs attrs)
4284
+ }
4285
+
4266
4286
yield ilParam
4267
- ]
4287
+ ]
4268
4288
4269
- mkILCtor ( access, fieldParams @ extraParams , body)
4289
+ mkILCtor ( access, fieldParams @ extraParams, body)
4270
4290
4271
4291
let mkILSimpleStorageCtorWithParamNames ( baseTySpec , ty , extraParams , flds , access , tag , imports ) =
4272
4292
let preblock =
0 commit comments