Boo.Lang.Compiler.Steps.EmitAssembly.OnArithmeticOperator C# (CSharp) Метод

OnArithmeticOperator() приватный Метод

private OnArithmeticOperator ( Boo.Lang.Compiler.Ast.BinaryExpression node ) : void
node Boo.Lang.Compiler.Ast.BinaryExpression
Результат void
        void OnArithmeticOperator(BinaryExpression node)
        {
            var type = node.ExpressionType;
            LoadOperandsWithType(type, node);
            _il.Emit(GetArithmeticOpCode(type, node.Operator));
            PushType(type);
        }
EmitAssembly