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

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

private LoadOperandsWithType ( IType type, Boo.Lang.Compiler.Ast.BinaryExpression node ) : void
type IType
node Boo.Lang.Compiler.Ast.BinaryExpression
Результат void
        private void LoadOperandsWithType(IType type, BinaryExpression node)
        {
            LoadExpressionWithType(type, node.Left);
            LoadExpressionWithType(type, node.Right);
        }
EmitAssembly