File tree Expand file tree Collapse file tree 5 files changed +7
-10
lines changed
src/FSharp.Control.TaskSeq Expand file tree Collapse file tree 5 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ open System.Threading.Tasks
77open Microsoft.FSharp .Core .CompilerServices
88open Microsoft.FSharp .Core .LanguagePrimitives .IntrinsicOperators
99
10- #nowarn " 57 "
11- #nowarn " 1204 "
12- #nowarn " 3513 "
10+ // note: these are *not* experimental features anymore, but they forgot to switch off the flag
11+ #nowarn " 57 " // Experimental library feature, requires '--languversion:preview'.
12+ #nowarn " 1204 " // This construct is for use by compiled F# code ans should not be used directly.
1313
1414[<AutoOpen>]
1515module TaskExtensions =
Original file line number Diff line number Diff line change 11namespace FSharp.Control
22
3- #nowarn " 1204"
3+ #nowarn " 1204" // This construct is for use by compiled F# code ans should not be used directly.
44
55[<AutoOpen>]
66module TaskExtensions =
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ open System.Collections.Generic
44open System.Threading
55open System.Threading .Tasks
66
7- #nowarn " 57"
8-
97// Just for convenience
108module Internal = TaskSeqInternal
119
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ namespace FSharp.Control
33open System.Collections .Generic
44open System.Threading .Tasks
55
6- #nowarn " 1204"
7-
86[<AutoOpen>]
97module TaskSeqExtensions =
108 module TaskSeq =
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ namespace FSharp.Control
22
33open System.Diagnostics
44
5- #nowarn " 57" // note: this is *not* an experimental feature, but they forgot to switch off the flag
5+ // note: this is *not* an experimental feature, but they forgot to switch off the flag
6+ #nowarn " 57" // Experimental library feature, requires '--languversion:preview'.
67
78open System
89open System.Collections .Generic
@@ -12,7 +13,7 @@ open System.Runtime.CompilerServices
1213open System.Threading .Tasks .Sources
1314
1415open FSharp.Core .CompilerServices
15- open FSharp.Core .CompilerServices .StateMachineHelpers
16+ open FSharp.Core .CompilerServices .StateMachineHelpers // raises warning FS0057
1617open FSharp.Control
1718
1819
You can’t perform that action at this time.
0 commit comments