| 536 | /// Function call: name(args...) |
| 537 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 538 | pub struct FunctionCall { |
| 539 | pub name: String, |
| 540 | pub distinct: DistinctQualifier, |
| 541 | pub arguments: Vec<Expression>, |
| 542 | pub location: Location, |
| 543 | } |
| 544 | |
| 545 | /// Property access: object.property |
| 546 | #[derive(Debug, Clone, Serialize, Deserialize)] |
no outgoing calls