Ejemplo n.º 1
0
        // and && or || xor ^
        public override int VisitExpAndOrXor(YarnSpinnerParser.ExpAndOrXorContext context)
        {
            genericExpVisitor(context.expression(0), context.expression(1), context.op.Type);

            return(0);
        }
Ejemplo n.º 2
0
        // and && or || xor ^
        public override int VisitExpAndOrXor(YarnSpinnerParser.ExpAndOrXorContext context)
        {
            this.GenerateCodeForOperation(TokensToOperators[context.op.Type], context.op, context.Type, context.expression(0), context.expression(1));

            return(0);
        }
 /// <summary>
 /// Visit a parse tree produced by the <c>expAndOrXor</c>
 /// labeled alternative in <see cref="YarnSpinnerParser.expression"/>.
 /// <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 VisitExpAndOrXor([NotNull] YarnSpinnerParser.ExpAndOrXorContext context)
 {
     return(VisitChildren(context));
 }
 /// <summary>
 /// Exit a parse tree produced by the <c>expAndOrXor</c>
 /// labeled alternative in <see cref="YarnSpinnerParser.expression"/>.
 /// <para>The default implementation does nothing.</para>
 /// </summary>
 /// <param name="context">The parse tree.</param>
 public virtual void ExitExpAndOrXor([NotNull] YarnSpinnerParser.ExpAndOrXorContext context)
 {
 }
Ejemplo n.º 5
0
 public override Yarn.IType VisitExpAndOrXor(YarnSpinnerParser.ExpAndOrXorContext context)
 {
     Yarn.IType type = CheckOperation(context, context.expression(), CodeGenerationVisitor.TokensToOperators[context.op.Type], context.op.Text);
     context.Type = type;
     return(type);
 }
Ejemplo n.º 6
0
 public override Yarn.Type VisitExpAndOrXor(YarnSpinnerParser.ExpAndOrXorContext context)
 {
     return(CheckOperation(context, context.expression(), context.op.Text, Yarn.Type.Bool));
 }