implemented the while expression handling. break and continue yet to be implemented

This commit is contained in:
hyunghwan.chung
2017-01-25 13:57:14 +00:00
parent 6209b13410
commit b7a19a3b14
4 changed files with 165 additions and 21 deletions

View File

@ -331,7 +331,11 @@ struct moo_iotok_t
MOO_IOTOK_IF,
MOO_IOTOK_ELSE,
MOO_IOTOK_ELSIF
MOO_IOTOK_ELSIF,
MOO_IOTOK_WHILE,
MOO_IOTOK_BREAK,
MOO_IOTOK_CONTINUE
} type;
moo_oocs_t name;