| 149 | /// An analyzed WIT function. |
| 150 | #[derive(Debug, Clone)] |
| 151 | pub struct AnalyzedFunction { |
| 152 | pub name: String, |
| 153 | pub go_name: GoIdentifier, |
| 154 | pub parameters: Vec<Parameter>, |
| 155 | pub return_type: Option<GoType>, |
| 156 | } |
nothing calls this directly
no outgoing calls
no test coverage detected