Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit72f0e92

Browse files
dsymeKevinRansom
authored andcommitted
Assume COMPILER_PUBLIC_API (#4120)
* rename src/fsharp/vs --> src/fsharp/service* move unit tests to tests"* remove some namespace opens* remove COMPILER_PUBLIC_API* remove COMPILER_PUBLIC_API
1 parent3c4417e commit72f0e92

File tree

77 files changed

+189
-855
lines changed

Some content is hidden

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

77 files changed

+189
-855
lines changed

‎fcs/FSharp.Compiler.Service.netstandard/FSharp.Compiler.Service.netstandard.fsproj‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<TargetFramework>netstandard1.6</TargetFramework>
88
<AssemblyName>FSharp.Compiler.Service</AssemblyName>
99
<DefineConstants>$(DefineConstants);BUILDING_WITH_LKG</DefineConstants>
10-
<DefineConstants>$(DefineConstants);COMPILER_PUBLIC_API</DefineConstants>
1110
<DefineConstants>$(DefineConstants);COMPILER_SERVICE_AS_DLL</DefineConstants>
1211
<DefineConstants>$(DefineConstants);COMPILER</DefineConstants>
1312
<DefineConstants>$(DefineConstants);COMPILER_SERVICE</DefineConstants>

‎fcs/FSharp.Compiler.Service/FSharp.Compiler.Service.fsproj‎

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
<DefineConstants>$(DefineConstants);ENABLE_MONO_SUPPORT</DefineConstants>
2929
<DefineConstants>$(DefineConstants);COMPILER</DefineConstants>
3030
<DefineConstants>$(DefineConstants);COMPILER_SERVICE_AS_DLL</DefineConstants>
31-
<DefineConstants>$(DefineConstants);COMPILER_PUBLIC_API</DefineConstants>
3231
<DefineConstants>$(DefineConstants);NO_STRONG_NAMES</DefineConstants>
3332
<OtherFlags>$(OtherFlags) /warnon:1182</OtherFlags>
3433
<OtherFlags>$(OtherFlags) --times</OtherFlags>

‎src/absil/il.fsi‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@
22

33
/// The "unlinked" view of .NET metadata and code. Central to
44
/// to Abstract IL library
5-
#if COMPILER_PUBLIC_API
65
modulepublicMicrosoft.FSharp.Compiler.AbstractIL.IL
7-
#else
8-
moduleinternalMicrosoft.FSharp.Compiler.AbstractIL.IL
9-
#endif
106

117
openInternal.Utilities
128
openSystem.Collections.Generic

‎src/absil/illib.fs‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
// Copyright (c) Microsoft Corporation. All Rights Reserved. See License.txt in the project root for license information.
22

3-
#if COMPILER_PUBLIC_API
43
modulepublicMicrosoft.FSharp.Compiler.AbstractIL.Internal.Library
5-
#else
6-
moduleinternalMicrosoft.FSharp.Compiler.AbstractIL.Internal.Library
7-
#endif
84
#nowarn"1178"// The struct, record or union type 'internal_instr_extension' is not structurally comparable because the type
95

106

‎src/fsharp/AccessibilityLogic.fs‎

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@
33
/// The basic logic of private/internal/protected/InternalsVisibleTo/public accessibility
44
moduleinternalMicrosoft.FSharp.Compiler.AccessibilityLogic
55

6-
openInternal.Utilities
7-
openMicrosoft.FSharp.Compiler.AbstractIL
86
openMicrosoft.FSharp.Compiler.AbstractIL.IL
97
openMicrosoft.FSharp.Compiler
10-
openMicrosoft.FSharp.Compiler.Ast
118
openMicrosoft.FSharp.Compiler.ErrorLogger
129
openMicrosoft.FSharp.Compiler.Infos
1310
openMicrosoft.FSharp.Compiler.Tast

‎src/fsharp/AttributeChecking.fs‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,10 @@
44
/// on items from name resolution
55
moduleinternalMicrosoft.FSharp.Compiler.AttributeChecking
66

7-
openInternal.Utilities
8-
openMicrosoft.FSharp.Compiler.AbstractIL
97
openMicrosoft.FSharp.Compiler.AbstractIL.IL
108
openMicrosoft.FSharp.Compiler.AbstractIL.Internal.Library
119

1210
openMicrosoft.FSharp.Compiler
13-
openMicrosoft.FSharp.Compiler.AccessibilityLogic
14-
openMicrosoft.FSharp.Compiler.Ast
1511
openMicrosoft.FSharp.Compiler.Range
1612
openMicrosoft.FSharp.Compiler.ErrorLogger
1713
openMicrosoft.FSharp.Compiler.Infos

‎src/fsharp/AugmentWithHashCompare.fs‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
/// Generate the hash/compare functions we add to user-defined types by default.
44
moduleinternalMicrosoft.FSharp.Compiler.AugmentWithHashCompare
55

6-
openMicrosoft.FSharp.Compiler
76
openMicrosoft.FSharp.Compiler.AbstractIL
87
openMicrosoft.FSharp.Compiler.AbstractIL.IL
9-
openMicrosoft.FSharp.Compiler.AbstractIL.Internal
108
openMicrosoft.FSharp.Compiler.AbstractIL.Internal.Library
119
openMicrosoft.FSharp.Compiler.Tast
1210
openMicrosoft.FSharp.Compiler.Tastops

‎src/fsharp/AugmentWithHashCompare.fsi‎

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,7 @@
33
/// Generate the hash/compare functions we add to user-defined types by default.
44
moduleinternalMicrosoft.FSharp.Compiler.AugmentWithHashCompare
55

6-
openInternal.Utilities
7-
openMicrosoft.FSharp.Compiler.AbstractIL
8-
openMicrosoft.FSharp.Compiler.AbstractIL.Internal
96
openMicrosoft.FSharp.Compiler
10-
117
openMicrosoft.FSharp.Compiler.Tast
128
openMicrosoft.FSharp.Compiler.TcGlobals
139

‎src/fsharp/CheckFormatStrings.fs‎

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

33
moduleinternalMicrosoft.FSharp.Compiler.CheckFormatStrings
44

5-
openInternal.Utilities
65
openMicrosoft.FSharp.Compiler
76
openMicrosoft.FSharp.Compiler.AbstractIL.Internal.Library
87
openMicrosoft.FSharp.Compiler.Ast

‎src/fsharp/CheckFormatStrings.fsi‎

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,9 @@
77
88
moduleinternalMicrosoft.FSharp.Compiler.CheckFormatStrings
99

10-
openInternal.Utilities
1110
openMicrosoft.FSharp.Compiler
1211
openMicrosoft.FSharp.Compiler.Tast
1312
openMicrosoft.FSharp.Compiler.TcGlobals
14-
openMicrosoft.FSharp.Compiler.AbstractIL.Internal
1513

1614
valParseFormatString:Range.range->TcGlobals->source:string option->fmt:string->bty:TType->cty:TType->dty:TType->(TType* TType)*(Range.range* int)list
1715

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp