enhanced parse_primary_ident() in lib/awk/parse.c

also fixed a memory leak in the function
changed name of some data types
This commit is contained in:
2011-05-30 09:15:52 +00:00
parent 6364077743
commit ed207769ff
5 changed files with 477 additions and 525 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.h 480 2011-05-25 14:00:19Z hyunghwan.chung $
* $Id: awk.h 485 2011-05-29 15:15:52Z hyunghwan.chung $
*
Copyright 2006-2011 Chung, Hyung-Hwan.
This file is part of QSE.
@ -1050,6 +1050,7 @@ enum qse_awk_val_type_t
QSE_AWK_VAL_REX = 4, /**< regular expression */
QSE_AWK_VAL_MAP = 5, /**< map */
QSE_AWK_VAL_REF = 6 /**< reference to other types */
};