minor code cleanup

This commit is contained in:
hyunghwan.chung 2018-05-07 17:28:47 +00:00
parent bd52dcf0bc
commit 204a6b16b9
2 changed files with 2 additions and 2 deletions

View File

@ -3833,7 +3833,7 @@ static int compile_method_pragma (moo_t* moo)
GET_TOKEN (moo); GET_TOKEN (moo);
switch (TOKEN_TYPE(moo)) switch (TOKEN_TYPE(moo))
{ {
case MOO_IOTOK_NUMLIT: /* TODO: allow only an integer */ case MOO_IOTOK_NUMLIT:
/*TODO: more checks the validity of the primitive number. support number with radix and so on support more extensive syntax. support primitive name, not number*/ /*TODO: more checks the validity of the primitive number. support number with radix and so on support more extensive syntax. support primitive name, not number*/
ptr = TOKEN_NAME_PTR(moo); ptr = TOKEN_NAME_PTR(moo);
end = ptr + TOKEN_NAME_LEN(moo); end = ptr + TOKEN_NAME_LEN(moo);