batchDepth top-level property

int batchDepth
getter/setter pair

Current nesting depth of `startBatch`/`endBatch` calls.

Example:

startBatch();
assert(batchDepth > 0);
endBatch();

Implementation

int batchDepth = 0;