/* Parse and Translate a Boolean Factor with Leading NOT */ void NotFactor() { if (Token == '!') { Next(); Relation(); NotIt(); } else { Relation(); } }
void NotFactor(void) { message("NotFactor"); if (Token[0]=='!') { MatchString("!"); Relation(); NotIt(); } else { Relation(); } }
void NotFactor() { if(Look == '!') { Match('!'); Relation(); NotIt(); } else { Relation(); } }