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
{{ message }}
This repository was archived by the owner on Dec 23, 2024. It is now read-only.
/// If text has been used from a captured name resolution from the typecheck, then
148
-
/// callback to the client to check if the text has changed. If it has, then give up
149
-
/// and assume that we're going to repeat the operation later on.
150
-
/// </param>
151
-
/// <param name="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
152
-
memberGetDeclarationListSymbols:parsedFileResults:FSharpParseFileResults option * line: int * lineText:string * partialName: PartialLongName * ?getAllEntities:(unit -> AssemblySymbol list)* ?hasTextChangedSinceLastTypecheck:(obj * range -> bool)* ?userOpName: string -> Async<FSharpSymbolUse list list>
142
+
memberGetDeclarationListSymbols:parsedFileResults:FSharpParseFileResults option * line: int * lineText:string * partialName: PartialLongName * ?getAllEntities:(unit -> AssemblySymbol list)-> FSharpSymbolUse list list
153
143
154
144
///<summary>Compute a formatted tooltip for the given location</summary>
155
145
///
@@ -158,8 +148,7 @@ type public FSharpCheckFileResults =
158
148
/// <param name="lineText">The text of the line where the information is being requested.</param>
159
149
/// <param name="names">The identifiers at the location where the information is being requested.</param>
160
150
/// <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>
161
-
/// <param name="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
154
///
@@ -168,35 +157,30 @@ type public FSharpCheckFileResults =
168
157
/// <param name="lineText">The text of the line where the information is being requested.</param>
169
158
/// <param name="names">The identifiers at the location where the information is being requested.</param>
170
159
/// <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>
171
-
/// <param name="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
179
///<param name="line">The line number where the information is being requested.</param>
195
180
/// <param name="colAtEndOfNames">The column number at the end of the identifiers where the information is being requested.</param>
196
181
/// <param name="lineText">The text of the line where the information is being requested.</param>
197
182
/// <param name="names">The identifiers at the location where the information is being requested.</param>
198
-
/// <param name="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 * ?userOpName: string -> Async<FSharpSymbolUse list option>
183
+
memberGetMethodsAsSymbols:line:int * colAtEndOfNames:int * lineText:string * names:string list -> FSharpSymbolUse list option
200
184
201
185
///<summary>Resolve the names at the given location to the declaration location of the corresponding construct.</summary>
202
186
///
@@ -205,17 +189,15 @@ type public FSharpCheckFileResults =
205
189
/// <param name="lineText">The text of the line where the information is being requested.</param>
206
190
/// <param name="names">The identifiers at the location where the information is being requested.</param>
207
191
/// <param name="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
-
/// <param name="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
0 commit comments