added #pragma qc(on) and qc(off) to turn on/off double-quoted string comment

This commit is contained in:
hyunghwan.chung
2017-11-26 06:45:59 +00:00
parent 76b975a152
commit a817083543
3 changed files with 64 additions and 16 deletions

View File

@ -458,8 +458,15 @@ struct moo_initv_t
int flags;
};
enum moo_pragma_flag_t
{
MOO_PRAGMA_QC = (1 << 0),
};
struct moo_compiler_t
{
int pragma_flags;
/* input handler */
moo_ioimpl_t impl;