| 545 | /// Property access: object.property |
| 546 | #[derive(Debug, Clone, Serialize, Deserialize)] |
| 547 | pub struct PropertyAccess { |
| 548 | pub object: String, |
| 549 | pub property: String, |
| 550 | pub location: Location, |
| 551 | } |
| 552 | |
| 553 | /// Variable: $name |
| 554 | #[derive(Debug, Clone, Serialize, Deserialize)] |
no outgoing calls
no test coverage detected