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

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

private FlushAssignmentOperand ( IType elementType, LocalBuilder temp ) : void
elementType IType
temp System.Reflection.Emit.LocalBuilder
Результат void
        private void FlushAssignmentOperand(IType elementType, LocalBuilder temp)
        {
            if (temp != null)
                LoadLocal(temp, elementType);
            else
                PushVoid();
        }
EmitAssembly