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
This unifies tooltip/completion/parameter completion so each one can be
queried as symbols. The symbol information is used by the F# language
binding to display extra information and render tooltips and
completions semantically.
| Params.ItemIsTypeWithStaticArguments g _->[item]// we pretend that provided-types-with-static-args are method-like in order to get ParamInfo for them
///<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>
232
+
///<param name="line">The line number where the information is being requested.</param>
233
+
/// <param name="colAtEndOfNames">The column number at the end of the identifiers where the information is being requested.</param>
234
+
/// <param name="lineText">The text of the line where the information is being requested.</param>
235
+
/// <param name="names">The identifiers at the location where the information is being requested.</param>
236
+
memberGetMethodsAsSymbols:line:int * colAtEndOfNames:int * lineText:string * names:string list -> Async<FSharpSymbolUse list option>
237
+
231
238
///<summary>Resolve the names at the given location to the declaration location of the corresponding construct.</summary>
232
239
///
233
240
///<param name="line">The line number where the information is being requested.</param>
0 commit comments