Indicates that an existing node has been updated
| 44 | |
| 45 | @dataclass(frozen=True) |
| 46 | class Update: |
| 47 | """Indicates that an existing node has been updated""" |
| 48 | |
| 49 | source: exp.Expr |
| 50 | target: exp.Expr |
| 51 | |
| 52 | |
| 53 | @dataclass(frozen=True) |
no outgoing calls
searching dependent graphs…