| 489 | /// What an ORM field constructor (`Column(...)`, `models.CharField(...)`, ...) tells us. |
| 490 | #[derive(Default)] |
| 491 | struct CallInfo { |
| 492 | orm: Option<&'static str>, |
| 493 | flags: Vec<String>, |
| 494 | relation: Option<String>, |
| 495 | ctor_type: Option<String>, |
| 496 | } |
| 497 | |
| 498 | /// Inspect a field's right-hand-side call for ORM hints, flags, relations, and type. |
| 499 | fn analyze_call(expression: &Expression) -> Option<CallInfo> { |
nothing calls this directly
no outgoing calls
no test coverage detected