ABB.Swum.EmptyNameRule.MakeClassification C# (CSharp) 메소드

MakeClassification() 보호된 메소드

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.
리턴 bool
        protected override bool MakeClassification(MethodDeclarationNode node)
        {
            return node.ParsedName == null || node.ParsedName.IsEmpty();
        }