Antlr4.Codegen.Model.ElementFrequenciesVisitor.EnterElement C# (CSharp) Method

EnterElement() protected method

protected EnterElement ( GrammarAST tree ) : void
tree GrammarAST
return void
        protected override void EnterElement(GrammarAST tree)
        {
            frequencies.Push(new FrequencySet<string>());
            minFrequencies.Push(new FrequencySet<string>());
        }