Skip to content

Commit 047ae5e

Browse files
committed
Make visitor internal
1 parent 7ef643b commit 047ae5e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Engine/FindAstPositionVisitor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ namespace Microsoft.Windows.PowerShell.ScriptAnalyzer
99
/// Provides an efficient way to find the position in the AST corresponding to a given script position.
1010
/// </summary>
1111
#if !(PSV3 || PSV4)
12-
public class FindAstPostitionVisitor : AstVisitor2
12+
internal class FindAstPostitionVisitor : AstVisitor2
1313
#else
14-
public class FindAstPostitionVisitor : AstVisitor
14+
internal class FindAstPostitionVisitor : AstVisitor
1515
#endif
1616
{
1717
private IScriptPosition searchPosition;

0 commit comments

Comments
 (0)