Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am writing a small expression analyser parser for a project at the company where I work. The parser is supposed to check, for example, a division by zero or an undefined identifier, report the error and stop. What is the best way to do this? Assuming that my own code has no memory leaks, can I simply do this:

if ($3 == 0) {
  yyerror("Division by zero");
  return 1;
}

should I rather do:

if ($3 == 0) {
  yyerror("Division by zero");
  YYERROR;
}

is there a third better alternative?

share|improve this question

2 Answers

up vote 1 down vote accepted

If you call yyerror explicitly, how about using YYABORT? As far as I see, bison seems to perform some cleanups at exit. So, YYABORT or YYERROR will be more preferable to return 1.

share|improve this answer

There is a third option indeed: YYACCEPT

If you are trying to stop the parsing because the input was valid and without errors(Since you are making a parser to detect errors, then it's not a parser error, the input did fit in the grammar's rules).

This leaves YYERROR for grammatical errors (like receiving a string from another language)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.