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

VisitGotoCaseStatement() public method

public VisitGotoCaseStatement ( GotoCaseStatement gotoCaseStatement ) : void
gotoCaseStatement GotoCaseStatement
return void
		public virtual void VisitGotoCaseStatement(GotoCaseStatement gotoCaseStatement)
		{
			StartNode(gotoCaseStatement);
			WriteKeyword(GotoCaseStatement.GotoKeywordRole);
			WriteKeyword(GotoCaseStatement.CaseKeywordRole);
			Space();
			gotoCaseStatement.LabelExpression.AcceptVisitor(this);
			Semicolon();
			EndNode(gotoCaseStatement);
		}
		
CSharpOutputVisitor