Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Mark Result and MaybeResult [[nodiscard]] (#7083) | Thomas Lively | 2024-11-15 | 1 | -8/+8 |
| | | | | | | Since these types may be carrying errors that need to be handled or propagated, it is always an error not to use them in some way. Adding the [[nodiscard]] attribute caused the compiler to find a few instances where we were incorrectly ignoring results. Fix these places. | ||||
* | LocalGraph::canMoveSet (#7039) | Alon Zakai | 2024-11-11 | 1 | -0/+347 |
This new API lets us ask if a set can be safely moved to a new position. The new position must be the location of an expression from a particular class (this allows us to populate the IR once and then query any of those locations). |