| 7 | |
| 8 | #[derive(Debug, Clone, PartialEq)] |
| 9 | pub struct ExtendEntityInference { |
| 10 | pub variable: String, |
| 11 | pub attributes: Attributes, |
| 12 | } |
| 13 | |
| 14 | pub fn parse_extend_entity_inference(input: &str) -> IResult<&str, ExtendEntityInference> { |
| 15 | map( |
no outgoing calls