Skip to content

Commit 336b120

Browse files
committed
Add a comment and move Activity.fs/fsi to Utilities/
1 parent 26ab7f5 commit 336b120

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

src/Compiler/FSharp.Compiler.Service.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@
9393
<Link>FSStrings.resx</Link>
9494
<LogicalName>FSStrings.resources</LogicalName>
9595
</EmbeddedResource>
96+
<Compile Include="Utilities\Activity.fsi" />
97+
<Compile Include="Utilities\Activity.fs" />
9698
<Compile Include="Utilities\sformat.fsi" />
9799
<Compile Include="Utilities\sformat.fs" />
98100
<Compile Include="Utilities\sr.fsi" />
@@ -133,8 +135,6 @@
133135
<Compile Include="Utilities\range.fsi" />
134136
<Compile Include="Utilities\range.fs" />
135137
<EmbeddedText Include="Facilities\UtilsStrings.txt" />
136-
<Compile Include="Facilities\Activity.fsi" />
137-
<Compile Include="Facilities\Activity.fs" />
138138
<Compile Include="Facilities\LanguageFeatures.fsi" />
139139
<Compile Include="Facilities\LanguageFeatures.fs" />
140140
<Compile Include="Facilities\DiagnosticOptions.fsi" />

src/Compiler/Facilities/BuildGraph.fsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ type NodeCodeBuilder =
4444

4545
member Combine: x1: NodeCode<unit> * x2: NodeCode<'T> -> NodeCode<'T>
4646

47-
/// A limited form 'use' for establishing the compilation globals. (Note
48-
/// that a proper generic 'use' could be implemented but has not currently been necessary)
47+
/// A limited form 'use' for establishing the compilation globals.
4948
member Using: CompilationGlobalsScope * (CompilationGlobalsScope -> NodeCode<'T>) -> NodeCode<'T>
5049

50+
/// A generic 'use' that disposes of the IDisposable at the end of the computation.
5151
member Using: IDisposable * (IDisposable -> NodeCode<'T>) -> NodeCode<'T>
5252

5353
/// Specifies code that can be run as part of the build graph.
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ namespace FSharp.Compiler.Diagnostics
44

55
open System
66
open System.Diagnostics
7-
open Internal.Utilities.Library
87

98
[<RequireQualifiedAccess>]
109
module Activity =

0 commit comments

Comments
 (0)