ABB.Swum.EmptyNameRule.MakeClassification C# (CSharp) Méthode

MakeClassification() protected méthode

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