You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/fsharp/vs/service.fs
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ module internal Params =
92
92
letinitial= ParamOfRecdField g denv f
93
93
letdescription=if isGenerated i f then initial.Description else NicePrint.stringOfParamData denv (ParamData(false,false, NotOptional, Some f.rfield_id, ReflectedArgInfo.None, f.rfield_type))
Copy file name to clipboardExpand all lines: src/fsharp/vs/service.fsi
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ type FSharpMethodGroupItemParameter =
41
41
type FSharpMethodGroupItem =
42
42
43
43
/// The formatted description text for the method (or other item)
44
-
memberDescription:ToolTipText
44
+
memberDescription:FSharpToolTipText
45
45
46
46
/// The formatted type text for the method (or other item)
47
47
memberTypeText:string
@@ -212,7 +212,7 @@ type FSharpCheckFileResults =
212
212
/// <param name="lineText">The text of the line where the information is being requested.</param>
213
213
/// <param name="names">The identifiers at the location where the information is being requested.</param>
214
214
/// <param name="tokenTag">Used to discriminate between 'identifiers', 'strings' and others. For strings, an attempt is made to give a tooltip for a #r "..." location. Use a value from FSharpTokenInfo.Tag, or FSharpTokenTag.Identifier, unless you have other information available.</param>
///<summary>Compute the Visual Studio F1-help key identifier for the given location, based on name resolution results</summary>
218
218
///
@@ -282,10 +282,10 @@ type FSharpCheckFileResults =
282
282
member GetDeclarations : ParsedFileResultsOpt:FSharpParseFileResults option * line: Line0 * colAtEndOfPartialName: int * lineText:string * qualifyingNames: string list * partialName: string * ?hasTextChangedSinceLastTypecheck:(obj * Range01 -> bool)-> Async<FSharpDeclarationListInfo>
283
283
284
284
[<Obsolete("This member has been replaced by GetToolTipTextAlternate, which accepts a 1-based line number rather than a 0-based line number. See https://github.com/fsharp/FSharp.Compiler.Service/issues/64")>]
285
-
member GetToolTipText : line:Line0 * colAtEndOfNames:int * lineText:string * names:string list * tokenTag:int ->ToolTipText
285
+
member GetToolTipText : line:Line0 * colAtEndOfNames:int * lineText:string * names:string list * tokenTag:int ->FSharpToolTipText
286
286
287
287
[<Obsolete("This method has been renamed to GetToolTipText")>]
288
-
member GetDataTipText : line:Line0 * colAtEndOfNames:int * lineText:string * names:string list * tokenTag:int ->ToolTipText
288
+
member GetDataTipText : line:Line0 * colAtEndOfNames:int * lineText:string * names:string list * tokenTag:int ->FSharpToolTipText
289
289
290
290
[<Obsolete("This member has been replaced by GetF1KeywordAlternate, which accepts a 1-based line number rather than a 0-based line number. See https://github.com/fsharp/FSharp.Compiler.Service/issues/64")>]
291
291
member GetF1Keyword : line:Line0 * colAtEndOfNames:int * lineText:string * names:string list -> string option
0 commit comments