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

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

private OnExponentiation ( Boo.Lang.Compiler.Ast.BinaryExpression node ) : void
node Boo.Lang.Compiler.Ast.BinaryExpression
Результат void
        void OnExponentiation(BinaryExpression node)
        {
            var doubleType = TypeSystemServices.DoubleType;
            LoadOperandsWithType(doubleType, node);
            Call(Math_Pow);
            PushType(doubleType);
        }
EmitAssembly