public override AstNode VisitIfStmt(StannumParser.IfStmtContext context) { if (!(Visit(context.Cond) is Expr condition)) { throw new Exception("Unrecognized expression!"); } if (!(Visit(context.Cons) is BlockStmt consequent)) { throw new Exception("Unrecognized block statement!"); } return(new IfStmt(condition, consequent)); }
/// <summary> /// Visit a parse tree produced by the <c>IfStmt</c> /// labeled alternative in <see cref="StannumParser.ifStmt_"/>. /// <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 VisitIfStmt([NotNull] StannumParser.IfStmtContext context) { return(VisitChildren(context)); }