(
name: SmolStr,
args: &'a Vec<(SmolStr, NodeID)>,
warp: bool,
compact: bool,
)
| 34 | } |
| 35 | |
| 36 | pub fn call( |
| 37 | name: SmolStr, |
| 38 | args: &'a Vec<(SmolStr, NodeID)>, |
| 39 | warp: bool, |
| 40 | compact: bool, |
| 41 | ) -> Self { |
| 42 | Self { |
| 43 | name, |
| 44 | args, |
| 45 | warp, |
| 46 | is_call: true, |
| 47 | compact, |
| 48 | } |
| 49 | } |
| 50 | } |
| 51 | |
| 52 | impl Display for Mutation<'_> { |