renamed all lambdas to funs
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-07-20 19:15:27 +09:00
parent 6645962163
commit bd107a172c
6 changed files with 51 additions and 53 deletions

View File

@ -1677,7 +1677,6 @@ struct hcl_t
hcl_oop_t s_else; /* symbol */
hcl_oop_t s_fun; /* symbol */
hcl_oop_t s_if; /* symbol */
hcl_oop_t s_lambda; /* symbol */
hcl_oop_t s_or; /* symbol */
hcl_oop_t s_plus; /* symbol */
hcl_oop_t s_return; /* symbol */
@ -2038,7 +2037,7 @@ enum hcl_syncode_t
HCL_SYNCODE_ELIF,
HCL_SYNCODE_ELSE,
HCL_SYNCODE_IF,
HCL_SYNCODE_LAMBDA,
HCL_SYNCODE_FUN,
HCL_SYNCODE_OR,
HCL_SYNCODE_PLUS,
HCL_SYNCODE_RETURN,