PP: Rationalize names of tokens.
This commit is contained in:
parent
2dcdda921f
commit
0c4b7c931a
6 changed files with 28 additions and 27 deletions
|
|
@ -674,11 +674,11 @@ int TScanContext::tokenize(TPpContext* pp, TParserToken& token)
|
|||
parseContext.error(loc, "illegal use of escape character", "\\", "");
|
||||
break;
|
||||
|
||||
case PpAtomAdd: return ADD_ASSIGN;
|
||||
case PpAtomSub: return SUB_ASSIGN;
|
||||
case PpAtomMul: return MUL_ASSIGN;
|
||||
case PpAtomDiv: return DIV_ASSIGN;
|
||||
case PpAtomMod: return MOD_ASSIGN;
|
||||
case PPAtomAddAssign: return ADD_ASSIGN;
|
||||
case PPAtomSubAssign: return SUB_ASSIGN;
|
||||
case PPAtomMulAssign: return MUL_ASSIGN;
|
||||
case PPAtomDivAssign: return DIV_ASSIGN;
|
||||
case PPAtomModAssign: return MOD_ASSIGN;
|
||||
|
||||
case PpAtomRight: return RIGHT_OP;
|
||||
case PpAtomLeft: return LEFT_OP;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue