| 1068 | /// A reference to an operator. |
| 1069 | #[derive(Debug, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)] |
| 1070 | pub struct Op { |
| 1071 | /// Any namespaces that preceded the operator. |
| 1072 | pub namespace: Option<Vec<Ident>>, |
| 1073 | /// The operator itself. |
| 1074 | pub op: String, |
| 1075 | } |
| 1076 | |
| 1077 | impl AstDisplay for Op { |
| 1078 | fn fmt<W: fmt::Write>(&self, f: &mut AstFormatter<W>) { |
no outgoing calls
no test coverage detected