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
7
7
open Microsoft.FSharp .Core .CompilerServices
8
8
open Microsoft.FSharp .Core .LanguagePrimitives .IntrinsicOperators
9
9
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.
13
13
14
14
[<AutoOpen>]
15
15
module TaskExtensions =
Original file line number Diff line number Diff line change 1
1
namespace FSharp.Control
2
2
3
- #nowarn " 1204"
3
+ #nowarn " 1204" // This construct is for use by compiled F# code ans should not be used directly.
4
4
5
5
[<AutoOpen>]
6
6
module TaskExtensions =
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ open System.Collections.Generic
4
4
open System.Threading
5
5
open System.Threading .Tasks
6
6
7
- #nowarn " 57"
8
-
9
7
// Just for convenience
10
8
module Internal = TaskSeqInternal
11
9
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ namespace FSharp.Control
3
3
open System.Collections .Generic
4
4
open System.Threading .Tasks
5
5
6
- #nowarn " 1204"
7
-
8
6
[<AutoOpen>]
9
7
module TaskSeqExtensions =
10
8
module TaskSeq =
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ namespace FSharp.Control
2
2
3
3
open System.Diagnostics
4
4
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'.
6
7
7
8
open System
8
9
open System.Collections .Generic
@@ -12,7 +13,7 @@ open System.Runtime.CompilerServices
12
13
open System.Threading .Tasks .Sources
13
14
14
15
open FSharp.Core .CompilerServices
15
- open FSharp.Core .CompilerServices .StateMachineHelpers
16
+ open FSharp.Core .CompilerServices .StateMachineHelpers // raises warning FS0057
16
17
open FSharp.Control
17
18
18
19
You can’t perform that action at this time.
0 commit comments