MCPcopy Create free account
hub / github.com/Houseofmvps/codesight / CallInfo

Class CallInfo

plugins/ast/python/src/lib.rs:491–496  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

489/// What an ORM field constructor (`Column(...)`, `models.CharField(...)`, ...) tells us.
490#[derive(Default)]
491struct 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.
499fn analyze_call(expression: &Expression) -> Option<CallInfo> {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected