I'm creating an object pooling library. If the pool is bigger than the poolTrimSize, it starts removing from the end of the pool, then calls
spawn(poolDeleteTimer)del object. Will that line count as a reference and prevent garbage collecting, assuming there are no other references to the object?