adding code to support class attribute list. work in progress
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-10-05 00:05:52 +09:00
parent f4d223f646
commit 3f350dd38a
8 changed files with 190 additions and 43 deletions

View File

@ -110,7 +110,6 @@ static const char* synerrstr[] =
"invalid radix for a numeric literal",
"sudden end of input",
"sudden end of expression",
"( expected",
") expected",
"] expected",
@ -139,7 +138,6 @@ static const char* synerrstr[] =
"if body too big",
"block too big",
"block too deep",
"name expected",
"argument name list expected",
"argument name expected",
"duplicate argument name",
@ -155,6 +153,7 @@ static const char* synerrstr[] =
"disallowed argument name",
"disallowed",
"invalid class definition",
"invalid function definition",
"elif without if",
"else without if",