Skip to content

Commit e675523

Browse files
committed
Merge pull request #498 from dsyme/integrate-oct-06
Integrate visualfsharp --> fsharp master
2 parents 99b20e7 + fb9c68d commit e675523

File tree

470 files changed

+1260
-59738
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

470 files changed

+1260
-59738
lines changed

.gitignore

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -112,29 +112,16 @@ build.ok
112112
*.userprefs
113113
extras
114114
ossreadme*.txt
115-
tests/fsharp/typecheck/sigs/*.exe
116-
tests/fsharp/typecheck/sigs/*.diff
117-
tests/fsharp/typecheck/sigs/*.err
118-
tests/fsharp/typecheck/sigs/*.vsdiff
119-
tests/fsharp/typecheck/sigs/*.dll
120-
tests/fsharp/typecheck/sigs/*.vserr
121115
src/fsharp/FSharp.LanguageService.Compiler/illex.*
122116
src/fsharp/FSharp.LanguageService.Compiler/ilpars.*
123117
src/fsharp/FSharp.LanguageService.Compiler/lex.*
124118
src/fsharp/FSharp.LanguageService.Compiler/pars.*
125119
src/fsharp/FSharp.LanguageService.Compiler/pplex.fs
126120
src/fsharp/FSharp.LanguageService.Compiler/pppars.fs
127121
src/fsharp/FSharp.LanguageService.Compiler/pppars.fsi
128-
tests/fsharp/typecheck/sigs/*.dll
129-
tests/fsharp/typecheck/sigs/*.exe
130-
tests/fsharp/typeProviders/builtin/SqlDataConnection/DataDirectory/
131-
tests/fsharp/typeProviders/builtin/SqlDataConnection/ExampleResolutionFolder/
132-
tests/fsharp/typeProviders/builtin/SqlEntityConnection/DataDirectory/
133122
vsintegration/src/unittests/Unittests.fsi
134123
tests/fsharpqa/Source/CodeGen/EmittedIL/StaticInit/StaticInit_Module01.dll
135124
tests/fsharpqa/Source/CodeGen/EmittedIL/StaticInit/StaticInit_Module01.pdb
136-
tests/fsharp/typeProviders/helloWorld/bincompat1/
137-
tests/fsharp/typeProviders/helloWorld/bincompat2/
138125
tests/XFSharpQA_Failures.log.*
139126
vsintegration/src/vs/FsPkgs/FSharp.Project/FS/FSharp.ProjectSystem.FSharp.fsi
140127
vsintegration/src/vs/FsPkgs/FSharp.Project/FS/ctofiles/
@@ -143,6 +130,7 @@ tests/fsharpqa/Source/CodeGen/EmittedIL/ComputationExpressions/ComputationExprLi
143130
packages
144131
FSharp.Core.Nuget/*.nupkg
145132
*.csproj.user
133+
*.sln.DotSettings.user
146134

147135
*.ide
148136
*.log
@@ -152,3 +140,5 @@ FSharp.Core.Nuget/*.nupkg
152140
FSharp.Compiler.Tools.Nuget/*.nupkg
153141
FSharp.Core.Nuget/*.nupkg
154142
*.orig
143+
*.mdf
144+
*.ldf

CHANGES.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
4.0.0.4
2+
* Integrate Microsoft\visualfsharp to 2d413fb94. See CHANGELOG.md for changes from Microsoft\visualfsharp
3+
14
4.0.0.3
25
* Fix build problems
36

src/absil/ildiag.fsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
/// Diagnostics from the AbsIL toolkit. You can reset the diagnostics
44
/// stream to point elsewhere, or turn it
5-
/// off altogether by setting it to 'None'. The logging channel initally
5+
/// off altogether by setting it to 'None'. The logging channel initially
66
/// points to stderr. All functions call flush() automatically.
77
///
88
/// REVIEW: review if we should just switch to System.Diagnostics

src/absil/illib.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ type LazyWithContext<'T,'ctxt> =
767767
match x.funcOrException with
768768
| null -> x.value
769769
| _ ->
770-
// Enter the lock in case another thread is in the process of evaluting the result
770+
// Enter the lock in case another thread is in the process of evaluating the result
771771
System.Threading.Monitor.Enter(x);
772772
try
773773
x.UnsynchronizedForce(ctxt)

0 commit comments

Comments
 (0)