diff --git a/libconlang/src/ast.rs b/libconlang/src/ast.rs index 0320aeb..3ad85eb 100644 --- a/libconlang/src/ast.rs +++ b/libconlang/src/ast.rs @@ -65,7 +65,6 @@ pub struct Const { pub name: Identifier, pub ty: Box, pub init: Box, - // TODO: Type path in const } /// Stores a `static` variable @@ -75,7 +74,6 @@ pub struct Static { pub name: Identifier, pub ty: Box, pub init: Box, - // TODO: Type path in static } /// Stores a collection of [Items](Item) @@ -157,9 +155,9 @@ pub enum VariantKind { pub struct Impl { pub target: Ty, pub body: Vec, - // TODO: `impl` { } } +/// TODO: `impl` Trait for { } #[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)] pub enum ImplKind { Type(Box),