From 357eb1a27aea6e6dc429dec3654f5fae40a0b525 Mon Sep 17 00:00:00 2001 From: dzaima Date: Tue, 20 Aug 2024 00:17:29 +0300 Subject: [PATCH] expanded comment of supported things in the native compiler --- src/opt/comp.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/opt/comp.c b/src/opt/comp.c index a8f9289b..76abf447 100644 --- a/src/opt/comp.c +++ b/src/opt/comp.c @@ -3,7 +3,11 @@ #include "../ns.h" #include "../utils/mut.h" // minimal compiler, capable of running mlochbaum/BQN/src/bootstrap/boot2.bqn -// supports •-values, 1-modifiers, value and function class variables +// supports: +// parentheses, ⟨…⟩ literals, •-values +// non-destructuring variable assignment +// function, 1-modifier, and 2-modifier invocation +// value and function class variables, namespace .-access // input must be either an immediate expression, or a block potentially containing 𝕨 or 𝕩 // goal is to either error, or compile correctly