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
/// Provides an efficient way to find the position in the AST corresponding to a given script position.
252
+
/// </summary>
253
+
publicclassFindAstPostitionVisitor:AstVisitor2
254
+
{
255
+
privateIScriptPositionsearchPosition;
256
+
257
+
/// <summary>
258
+
/// Contains the position in the AST corresponding to the provided <see cref="IScriptPosition"/> upon completion of the <see cref="Ast.Visit(AstVisitor)"/> method.
259
+
/// </summary>
260
+
publicAstAstPosition{get;privateset;}
261
+
262
+
/// <summary>
263
+
/// Initializes a new instance of the <see cref="FindAstPostitionVisitor"/> class with the postition to search for.
264
+
/// </summary>
265
+
/// <param name="position">The script position to search for.</param>
0 commit comments