ICSharpCode.NRefactory.CSharp.TextWriterTokenWriter.StartNode C# (CSharp) Method

StartNode() public method

public StartNode ( AstNode node ) : void
node AstNode
return void
		public override void StartNode(AstNode node)
		{
			// Write out the indentation, so that overrides of this method
			// can rely use the current output length to identify the position of the node
			// in the output.
			WriteIndentation();
		}