Boo.Lang.Compiler.Steps.EmitAssembly.OnArithmeticOperator C# (CSharp) Method

OnArithmeticOperator() private method

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