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

  if(Look == '!') {
    Match('!');
    Relation();
    NotIt();
  }
  else {
    Relation();
  }
}