initialize the starting location.
+2002-02-08 Robert Anisko <robert@lrde.epita.fr>
+
+ * data/bison.c++: Correct error recovery. Make the user able to
+ initialize the starting location.
+
2002-02-07 Akim Demaille <akim@epita.fr>
* tests/input.at: New.
2002-02-07 Akim Demaille <akim@epita.fr>
* tests/input.at: New.
#include "stack.hh"
#include "location.hh"
#include "stack.hh"
#include "location.hh"
/* Enabling traces. */
#ifndef YYDEBUG
/* Enabling traces. */
#ifndef YYDEBUG
/* Using locations. */
#define YYLSP_NEEDED b4_locations_flag
/* Using locations. */
#define YYLSP_NEEDED b4_locations_flag
// FIXME: This should be defined in traits, not here.
typedef b4_stype yystype;
// FIXME: This should be defined in traits, not here.
typedef b4_stype yystype;
typedef Stack< SemanticType > SemanticStack;
typedef Stack< LocationType > LocationStack;
typedef Stack< SemanticType > SemanticStack;
typedef Stack< LocationType > LocationStack;
+#if YYLSP_NEEDED
+ b4_name (bool debug,
+ LocationType initlocation) : debug_ (debug),
+ initlocation_ (initlocation)
+#else
b4_name (bool debug) : debug_ (debug)
b4_name (bool debug) : debug_ (debug)
/* @$ and $$. */
SemanticType value;
LocationType location;
/* @$ and $$. */
SemanticType value;
LocationType location;
+
+ /* Initial location. */
+ LocationType initlocation_;
/* Start. */
state_ = 0;
looka_ = empty_;
/* Start. */
state_ = 0;
looka_ = empty_;
+#if YYLSP_NEEDED
+ location = initlocation_;
+#endif
YYDPRINTF ((stderr, "Starting parse\n"));
/* New state. */
YYDPRINTF ((stderr, "Starting parse\n"));
/* New state. */
semantic_stack_.push (value);
location_stack_.push (location);
semantic_stack_.push (value);
location_stack_.push (location);
+
+ /* Count tokens shifted since error; after three, turn off error
+ status. */
+ if (errstatus)
+ --errstatus;
+
state_ = n_;
goto yynewstate;
state_ = n_;
goto yynewstate;
else
#endif
message = "parse error";
else
#endif
message = "parse error";
goto yyerrlab1;
/* Error raised explicitly by an action. */
goto yyerrlab1;
/* Error raised explicitly by an action. */