Boo.Lang.Compiler.Steps.EmitAssembly.OnArithmeticOperator C# (CSharp) Méthode

OnArithmeticOperator() private méthode

private OnArithmeticOperator ( Boo.Lang.Compiler.Ast.BinaryExpression node ) : void
node Boo.Lang.Compiler.Ast.BinaryExpression
Résultat void
        void OnArithmeticOperator(BinaryExpression node)
        {
            var type = node.ExpressionType;
            LoadOperandsWithType(type, node);
            _il.Emit(GetArithmeticOpCode(type, node.Operator));
            PushType(type);
        }
EmitAssembly