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

VisitGotoDefaultStatement() public method

public VisitGotoDefaultStatement ( GotoDefaultStatement gotoDefaultStatement ) : void
gotoDefaultStatement GotoDefaultStatement
return void
		public virtual void VisitGotoDefaultStatement(GotoDefaultStatement gotoDefaultStatement)
		{
			StartNode(gotoDefaultStatement);
			WriteKeyword(GotoDefaultStatement.GotoKeywordRole);
			WriteKeyword(GotoDefaultStatement.DefaultKeywordRole);
			Semicolon();
			EndNode(gotoDefaultStatement);
		}
		
CSharpOutputVisitor