Searched defs:DefStack (Results 1 – 1 of 1) sorted by relevance
702 struct DefStack { struct705 bool empty() const { return Stack.empty() || top() == bottom(); } in empty()709 struct Iterator {746 iterator top() const { return Iterator(*this, true); } in top()747 iterator bottom() const { return Iterator(*this, false); } in bottom()750 void push(Def DA) { Stack.push_back(DA); } in push()758 using StorageType = std::vector<value_type>;767 StorageType Stack;