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