From 8aae70da64c7af5a1c29b857619adcb26549937d Mon Sep 17 00:00:00 2001 From: Riley Smith Date: Wed, 13 Nov 2024 17:51:37 -0800 Subject: [PATCH] fix complication error --- lab-4/parser.bison | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab-4/parser.bison b/lab-4/parser.bison index 8407f70..e214068 100644 --- a/lab-4/parser.bison +++ b/lab-4/parser.bison @@ -127,7 +127,7 @@ mathmaticalexpr : type_expr | container_expr | type_expr container_expr ; -container_expr : TOKEN_LEFT_PARENTHESIS op_parms TOKEN_RIGHT_PARENTHESIS +container_expr : TOKEN_LEFT_PARENTHESIS op_parms_list TOKEN_RIGHT_PARENTHESIS ; booleanexpr : mathmaticalexpr TOKEN_LESS_THAN term | mathmaticalexpr TOKEN_GREATER_THAN term