| 28 | |
| 29 | #[derive(Debug, Clone, PartialEq)] |
| 30 | pub(crate) struct Function { |
| 31 | pub identifier: String, |
| 32 | pub documentation: Option<String>, |
| 33 | pub is_exported: bool, |
| 34 | pub children: Vec<Symbol>, |
| 35 | } |
| 36 | |
| 37 | impl Function { |
| 38 | pub fn as_entity( |
no outgoing calls