Antlr4.Runtime.Atn.ATNConfig.AppendContext C# (CSharp) Method

AppendContext() public method

public AppendContext ( PredictionContext context, PredictionContextCache contextCache ) : Antlr4.Runtime.Atn.ATNConfig
context PredictionContext
contextCache PredictionContextCache
return Antlr4.Runtime.Atn.ATNConfig
        public virtual Antlr4.Runtime.Atn.ATNConfig AppendContext(PredictionContext context, PredictionContextCache contextCache)
        {
            PredictionContext appendedContext = Context.AppendContext(context, contextCache);
            Antlr4.Runtime.Atn.ATNConfig result = Transform(State, appendedContext, false);
            return result;
        }

Same methods

ATNConfig::AppendContext ( int context, PredictionContextCache contextCache ) : Antlr4.Runtime.Atn.ATNConfig