internal override GatherVisitorBase GetGatherVisitor (BaseRefactoringContext context)
		{
			return new GatherVisitor (context);
		}
			public GatherVisitor (BaseRefactoringContext ctx)
				: base (ctx)
			{
			}
Example #3
0
		StaticVisitor(BaseRefactoringContext context)
		{
			this.context = context;
		}
Example #4
0
		public static bool UsesNotStaticMember(BaseRefactoringContext context, AstNode node)
		{
			var visitor = new StaticVisitor(context);
			node.AcceptVisitor(visitor);
			return visitor.UsesNonStaticMember;
		}
 public GatherVisitor(BaseRefactoringContext ctx) : base(ctx)
 {
 }
 protected override IGatherVisitor CreateVisitor(BaseRefactoringContext context)
 {
     return(new GatherVisitor(context));
 }
Example #7
0
 public GatherVisitor(BaseRefactoringContext ctx, LocalDeclarationSpaceVisitor visitor) : base(ctx)
 {
     declarationsSpaceVisitor = visitor;
 }
Example #8
0
 public GatherVisitor(BaseRefactoringContext context) : base(context)
 {
     CallFinder = new VirtualCallFinderVisitor(context);
 }
Example #9
0
 public VirtualCallFinderVisitor(BaseRefactoringContext context) : base(context)
 {
     this.context = context;
 }