From 3f8c2b626703ab439012edcf43811fcf1a0b9d03 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 26 Feb 2024 15:20:33 -0600 Subject: [PATCH] ast: remove done TODOs --- libconlang/src/ast.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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),