/// <summary>
 /// Visit a parse tree produced by <see cref="LanguageParser.bool"/>.
 /// <para>
 /// The default implementation returns the result of calling <see cref="AbstractParseTreeVisitor{Result}.VisitChildren(IRuleNode)"/>
 /// on <paramref name="context"/>.
 /// </para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 /// <return>The visitor result.</return>
 public virtual Result VisitBool([NotNull] LanguageParser.BoolContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by <see cref="LanguageParser.bool"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitBool([NotNull] LanguageParser.BoolContext context)
 {
 }
Beispiel #3
0
    //******************************************************************************************************

    //--------------------------------------------------------------------------------------------------------------------

    //******************************************************************************************************

    public override void EnterBool([NotNull] LanguageParser.BoolContext context)
    {
        string boolstring = context.BOOL().ToString();

        stack.Push(boolstring == "true");
    }