popGroup method

void popGroup()

Pops the latest group from the declaration stack.

Implementation

void popGroup() {
  if (_declarationStack.isNotEmpty) {
    _declarationStack.removeLast();
  }
}