Antlr4.Codegen.Model.SrcOp.GetContextName C# (CSharp) Метод

GetContextName() публичный Метод

public GetContextName ( ) : string
Результат string
        public virtual string GetContextName()
        {
            CodeBlockForOuterMostAlt alt = GetOuterMostAltCodeBlock();
            if (alt != null && alt.altLabel != null)
                return alt.altLabel;
            return enclosingRuleRunction.name;
        }
    }