diff --git a/src/protocol/ast.rs b/src/protocol/ast.rs index d252810ebdbe8cd7fc9266f18c237d2cb10fc5e3..1c85a558741dd335dee6f3e89d60059b29e3ae9f 100644 --- a/src/protocol/ast.rs +++ b/src/protocol/ast.rs @@ -404,8 +404,7 @@ impl ParserTypeVariant { #[derive(Debug, Clone)] pub struct ParserTypeElement { - // TODO: @cleanup, do we ever need the span of a user-defined type after - // constructing it? + // TODO: @Fix span pub full_span: InputSpan, // full span of type, including any polymorphic arguments pub variant: ParserTypeVariant, } @@ -1667,10 +1666,6 @@ pub enum UnaryOperator { Negative, BitwiseNot, LogicalNot, - PreIncrement, - PreDecrement, - PostIncrement, - PostDecrement, } #[derive(Debug, Clone)]