decRef method
void
decRef()
Implementation
void decRef() {
_refCnt--;
if (_refCnt < 0) {
_logWarn('BUG: refCnt for scope $name went negative');
_refCnt = 0;
}
}
void decRef() {
_refCnt--;
if (_refCnt < 0) {
_logWarn('BUG: refCnt for scope $name went negative');
_refCnt = 0;
}
}