ArchiMetrics.Analysis.Metrics.HalsteadAnalyzer.Visit C# (CSharp) Method

Visit() public method

Called when the walker visits a node. This method may be overridden if subclasses want to handle the node. Overrides should call back into this base method if they want the children of this node to be visited.
public Visit ( Microsoft.CodeAnalysis.SyntaxNode node ) : void
node Microsoft.CodeAnalysis.SyntaxNode The current node that the walker is visiting.
return void
		public override void Visit(SyntaxNode node)
		{
			var blockSyntax = node as BlockSyntax;
			if (blockSyntax != null)
			{
				VisitBlock(blockSyntax);
			}

			base.Visit(node);
		}