[COMPILER]

* NEW: Add the '^=' assignment operator.


git-svn-id: svn://localhost/gambas/trunk@1837 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
Benoît Minisini 2009-01-30 01:28:35 +00:00
parent 084f682161
commit 741cd010cd

View file

@ -189,6 +189,7 @@ COMP_INFO COMP_res_info[] =
{ "\\=", RSF_ASGN, RS_BSLASH }, { "\\=", RSF_ASGN, RS_BSLASH },
{ "&=", RSF_ASGN, RS_AMP }, { "&=", RSF_ASGN, RS_AMP },
{ "&/=", RSF_ASGN, RS_FILE }, { "&/=", RSF_ASGN, RS_FILE },
{ "^=", RSF_ASGN, RS_FLEX },
{ NULL } { NULL }
}; };