ABB.Swum.DefaultBaseVerbRule.InClass C# (CSharp) Method

InClass() public method

Determines whether the given node meets the conditions of this rule. Since this is a default rule, it returns True for any MethodDeclarationNode.
public InClass ( ProgramElementNode node ) : bool
node ABB.Swum.Nodes.ProgramElementNode The node to test.
return bool
        public override bool InClass(ProgramElementNode node)
        {
            return (node is MethodDeclarationNode);
        }