ABB.Swum.EmptyNameRule.MakeClassification C# (CSharp) Method

MakeClassification() protected method

Determines whether the given MethodDeclarationNode meets the conditions for this rule. This method assumes that the name is parsed, preamble is stripped, and digits and prepositions are tagged.
protected MakeClassification ( MethodDeclarationNode node ) : bool
node ABB.Swum.Nodes.MethodDeclarationNode The MethodDeclarationNode to test.
return bool
        protected override bool MakeClassification(MethodDeclarationNode node)
        {
            return node.ParsedName == null || node.ParsedName.IsEmpty();
        }