Antlr4.Runtime.RuleDependencyAttribute.RuleDependencyAttribute C# (CSharp) Method

RuleDependencyAttribute() public method

public RuleDependencyAttribute ( Type recognizer, int rule, int version ) : System
recognizer System.Type
rule int
version int
return System
        public RuleDependencyAttribute(Type recognizer, int rule, int version)
        {
            this._recognizer = recognizer;
            this._rule = rule;
            this._version = version;
            this._dependents = Dependents.Parents | Dependents.Self;
        }

Same methods

RuleDependencyAttribute::RuleDependencyAttribute ( Type recognizer, int rule, int version, Dependents dependents ) : System
RuleDependencyAttribute