interim commit

This commit is contained in:
2009-08-11 01:11:16 +00:00
parent 9eb2c2da4c
commit 876cd7bec9
6 changed files with 90 additions and 66 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: Awk.hpp 250 2009-08-10 03:29:59Z hyunghwan.chung $
* $Id: Awk.hpp 251 2009-08-10 07:11:16Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -880,6 +880,16 @@ public:
*/
OPT_NCMPONSTR = QSE_AWK_NCMPONSTR,
/**
* Enables the strict naming rule.
* - a parameter name can not be the same as the owning
* function name.
* - a local variable name can not be the same as the
* owning function name.
*/
OPT_STRICTNAMING = QSE_AWK_STRICTNAMING,
/** Enables 'include' */
OPT_INCLUDE = QSE_AWK_INCLUDE
};

View File

@ -1,5 +1,5 @@
/*
* $Id: awk.h 250 2009-08-10 03:29:59Z hyunghwan.chung $
* $Id: awk.h 251 2009-08-10 07:11:16Z hyunghwan.chung $
*
Copyright 2006-2009 Chung, Hyung-Hwan.
@ -600,8 +600,9 @@ enum qse_awk_option_t
/**
* enables the strict naming rule.
* - a parameter can not be the same as the owning function name.
* - a local variable can not be the same as the owning function name.
* - a parameter name can not be the same as the owning function name.
* - a local variable name can not be the same as the owning
* function name.
*/
QSE_AWK_STRICTNAMING = (1 << 15),