Start of Integer flags implementation

This commit is contained in:
Levi Behunin 2020-09-24 16:40:06 -06:00
parent 221e4c3e41
commit a0094d0b23
3 changed files with 50 additions and 3 deletions

View file

@ -464,6 +464,10 @@ public:
return operands.size();
}
NodeBlock GetOperands() const {
return operands;
}
const Node& operator[](std::size_t operand_index) const {
return operands.at(operand_index);
}