Rust: Include as expression in CFG nodes

This commit is contained in:
Simon Friis Vindum
2024-12-04 12:56:54 +01:00
parent f10ffa39e4
commit 2ada999728
9 changed files with 84 additions and 12 deletions

View File

@@ -448,10 +448,10 @@ class _:
"""
@annotate(CastExpr)
@annotate(CastExpr, cfg = True)
class _:
"""
A cast expression. For example:
A type cast expression. For example:
```rust
value as u64;
```