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
///<summary>Compute a formatted tooltip for the given location</summary>
155
156
///
@@ -158,8 +159,13 @@ type public FSharpCheckFileResults =
158
159
/// <paramname="lineText">The text of the line where the information is being requested.</param>
159
160
/// <paramname="names">The identifiers at the location where the information is being requested.</param>
160
161
/// <paramname="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>
161
-
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
///<summary>Compute a formatted tooltip for the given location</summary>
165
171
///
@@ -168,17 +174,15 @@ type public FSharpCheckFileResults =
168
174
/// <paramname="lineText">The text of the line where the information is being requested.</param>
169
175
/// <paramname="names">The identifiers at the location where the information is being requested.</param>
170
176
/// <paramname="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>
171
-
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
///<summary>Compute a set of method overloads to show in a dialog relevant to the given code location. The resulting method overloads are returned as symbols.</summary>
194
197
///<param name="line">The line number where the information is being requested.</param>
195
198
/// <paramname="colAtEndOfNames">The column number at the end of the identifiers where the information is being requested.</param>
196
199
/// <paramname="lineText">The text of the line where the information is being requested.</param>
197
200
/// <paramname="names">The identifiers at the location where the information is being requested.</param>
198
-
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
199
-
memberGetMethodsAsSymbols:line:int * colAtEndOfNames:int * lineText:string * names:string list -> Async<FSharpSymbolUse list option>
201
+
memberGetMethodsAsSymbols:line:int * colAtEndOfNames:int * lineText:string * names:string list -> FSharpSymbolUse list option
200
202
201
203
///<summary>Resolve the names at the given location to the declaration location of the corresponding construct.</summary>
202
204
///
@@ -205,17 +207,15 @@ type public FSharpCheckFileResults =
205
207
/// <paramname="lineText">The text of the line where the information is being requested.</param>
206
208
/// <paramname="names">The identifiers at the location where the information is being requested.</param>
207
209
/// <paramname="preferFlag">If not given, then get the location of the symbol. If false, then prefer the location of the corresponding symbol in the implementation of the file (rather than the signature if present). If true, prefer the location of the corresponding symbol in the signature of the file (rather than the implementation).</param>
208
-
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
0 commit comments