ICSharpCode.NRefactory.CSharp.CSharpOutputVisitor.VisitTypeOfExpression C# (CSharp) Method

VisitTypeOfExpression() public method

public VisitTypeOfExpression ( TypeOfExpression typeOfExpression ) : void
typeOfExpression TypeOfExpression
return void
		public virtual void VisitTypeOfExpression(TypeOfExpression typeOfExpression)
		{
			StartNode(typeOfExpression);
			
			WriteKeyword(TypeOfExpression.TypeofKeywordRole);
			LPar();
			Space(policy.SpacesWithinTypeOfParentheses);
			typeOfExpression.Type.AcceptVisitor(this);
			Space(policy.SpacesWithinTypeOfParentheses);
			RPar();
			
			EndNode(typeOfExpression);
		}
		
CSharpOutputVisitor