From 2dcc928c398f189fa6a790fd00cf5dde4ebecd23 Mon Sep 17 00:00:00 2001 From: T 'Filtered' C Date: Sat, 21 Jan 2023 07:37:41 +0000 Subject: [PATCH] Remove TODO note Probably better if we just support {a: b, [c]: d} --- rfcs/constrained-generics.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/rfcs/constrained-generics.md b/rfcs/constrained-generics.md index e47d542f..ca0438b6 100644 --- a/rfcs/constrained-generics.md +++ b/rfcs/constrained-generics.md @@ -31,8 +31,6 @@ SomethingWithAGenericTable({meow = 5}) --OK SomethingWithAGenericTable(5) --not OK ``` -> TODO: Partially constrained generics, where part of the type is known but can be expaned upon, similar to TypeScript's `extends` keyword. - ## Drawbacks This adds unusual syntax, as well as adding to the complexity of the language.