| 153 | /// Getter and setter for expression end for End instruction. |
| 154 | bool isExprLast() const noexcept { return Data.EndFlags.IsExprLast; } |
| 155 | void setExprLast(bool Last = true) noexcept { |
| 156 | Data.EndFlags.IsExprLast = Last; |
| 157 | } |
| 158 | |
| 159 | /// Getter and setter for the try block end for End instruction. |
| 160 | bool isTryBlockLast() const noexcept { return Data.EndFlags.IsTryBlockLast; } |