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

Commitef55edb

Browse files
fix build
1 parentf8e4b40 commitef55edb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

‎src/fsharp/vs/ServiceAnalysis.fs‎

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ open Microsoft.FSharp.Compiler
66
openMicrosoft.FSharp.Compiler.Ast
77
openMicrosoft.FSharp.Compiler.Range
88

9-
moduleinternalUnusedOpens=
9+
moduleUnusedOpens=
1010
/// Represents single open statement.
11-
typeprivateOpenStatement=
11+
typeOpenStatement=
1212
{/// Full namespace or module identifier as it's presented in source code.
1313
LiteralIdent:string
1414
/// All possible namespace or module identifiers, including the literal one.
@@ -18,7 +18,7 @@ module internal UnusedOpens =
1818
/// Enclosing module or namespace range (that is, the scope on in which this open statement is visible).
1919
ModuleRange:range}
2020

21-
let recprivatevisitSynModuleOrNamespaceDecls(parent:Ast.LongIdent)(decls:SynModuleDecls)(moduleRange:range):OpenStatement list=
21+
let recvisitSynModuleOrNamespaceDecls(parent:Ast.LongIdent)(decls:SynModuleDecls)(moduleRange:range):OpenStatement list=
2222
[for declin declsdo
2323
match declwith
2424
| SynModuleDecl.Open(LongIdentWithDots.LongIdentWithDots(id= longId), range)->
@@ -37,15 +37,15 @@ module internal UnusedOpens =
3737
yield! visitSynModuleOrNamespaceDecls longId decls moduleRange
3838
|_->()]
3939

40-
letprivategetOpenStatements(parsedInput:ParsedInput):OpenStatement list=
40+
letgetOpenStatements(parsedInput:ParsedInput):OpenStatement list=
4141
match parsedInputwith
4242
| ParsedInput.ImplFile(ParsedImplFileInput(modules= modules))->
4343
[for mdin modulesdo
4444
letSynModuleOrNamespace(longId= longId; decls= decls; range= moduleRange)= md
4545
yield! visitSynModuleOrNamespaceDecls longId decls moduleRange]
4646
|_->[]
4747

48-
letprivategetAutoOpenAccessPath(ent:FSharpEntity)=
48+
letgetAutoOpenAccessPath(ent:FSharpEntity)=
4949
// Some.Namespace+AutoOpenedModule+Entity
5050

5151
// HACK: I can't see a way to get the EnclosingEntity of an Entity
@@ -56,7 +56,7 @@ module internal UnusedOpens =
5656
else
5757
None)
5858

59-
letprivateentityNamespace(entOpt:FSharpEntity option)=
59+
letentityNamespace(entOpt:FSharpEntity option)=
6060
match entOptwith
6161
| Some ent->
6262
if ent.IsFSharpModulethen
@@ -77,13 +77,13 @@ module internal UnusedOpens =
7777
]
7878
| None->[]
7979

80-
letprivatesymbolIsFullyQualified(getSourceLineStr:int->string)(sym:FSharpSymbolUse)(fullName:string)=
80+
letsymbolIsFullyQualified(getSourceLineStr:int->string)(sym:FSharpSymbolUse)(fullName:string)=
8181
letlineStr= getSourceLineStr sym.RangeAlternate.StartLine
8282
match QuickParse.GetCompleteIdentifierIslandtrue lineStr sym.RangeAlternate.EndColumnwith
8383
| Some(island,_,_)-> island= fullName
8484
| None->false
8585

86-
typeprivateNamespaceUse=
86+
typeNamespaceUse=
8787
{ Ident:string
8888
Location:range}
8989

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp