From eee9e99aedb28db0256ec8b0fa8dbb52ffdf65de Mon Sep 17 00:00:00 2001 From: John Date: Tue, 16 Apr 2024 23:46:24 -0500 Subject: [PATCH] cl-ast: add todo about slice and array type-expressions --- cl-ast/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/cl-ast/src/lib.rs b/cl-ast/src/lib.rs index ce05dce..6887005 100644 --- a/cl-ast/src/lib.rs +++ b/cl-ast/src/lib.rs @@ -232,6 +232,7 @@ pub enum TyKind { Tuple(TyTuple), Ref(TyRef), Fn(TyFn), + // TODO: slice, array types } /// A tuple of [Ty]pes