summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/interpret.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/interpret.c b/src/core/interpret.c
index c6b66de..67ebc22 100644
--- a/src/core/interpret.c
+++ b/src/core/interpret.c
@@ -984,18 +984,16 @@ _term(Interpret *p_interpret) {
break;
*/
- /*
case TT_PARANT_AL:
{
Token *p_token = p_interpret->p_token;
_NEXT
+ _INTERPRET_ERROR("arrays not yet fully implemented", p_token);
Token *p_token_arr = token_new_array(ARRAY_SIZE);
- stack_push(p_interpret->p_stack, p_token_arr);
- _INTERPRET_ERROR("arrays not yet fully implemented", p_token_arr);
+ //stack_push(p_interpret->p_stack, p_token_arr);
}
break;
- */
case TT_PARANT_L:
{