]> git.saurik.com Git - bison.git/blobdiff - NEWS
Merge remote-tracking branch 'origin/maint'
[bison.git] / NEWS
diff --git a/NEWS b/NEWS
index 9c5d67b7e52fa246e9593fde2a6b4a95a10c2580..7b75972c4ace5457e59ee46acdc29c20c208ab9e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,74 @@ GNU Bison NEWS
 
 * Noteworthy changes in release ?.? (????-??-??) [?]
 
+** Additional yylex/yyparse arguments
+
+  The new directive %param declare additional argument to both yylex
+  and yyparse.  The %lex-param, %parse-param, and %param directives
+  support one or more arguments.  Instead of
+
+    %lex-param   {arg1_type *arg1}
+    %lex-param   {arg2_type *arg2}
+    %parse-param {arg1_type *arg1}
+    %parse-param {arg2_type *arg2}
+
+  one may now declare
+
+    %param {arg1_type *arg1} {arg2_type *arg2}
+
+** Java skeleton improvements
+
+  The constants for token names were moved to the Lexer interface.
+  Also, it is possible to add code to the parser's constructors using
+  "%code init" and "%define init_throws".
+
+** C++ skeleton improvements
+
+  The C++ parser features a syntax_error exception, which can be
+  thrown from the scanner or from user rules to raise syntax errors.
+  This facilitates reporting errors caught in sub-functions (e.g.,
+  rejecting too large integral literals from a conversion function
+  used by the scanner, or rejecting invalid combinations from a
+  factory invoked by the user actions).
+
+** Variable api.tokens.prefix
+
+  The variable api.tokens.prefix changes the way tokens are identified in
+  the generated files.  This is especially useful to avoid collisions
+  with identifiers in the target language.  For instance
+
+    %token FILE for ERROR
+    %define api.tokens.prefix "TOK_"
+    %%
+    start: FILE for ERROR;
+
+  will generate the definition of the symbols TOK_FILE, TOK_for, and
+  TOK_ERROR in the generated sources.  In particular, the scanner must
+  use these prefixed token names, although the grammar itself still
+  uses the short names (as in the sample rule given above).
+
+** Variable api.namespace
+
+  The "namespace" variable is renamed "api.namespace".  Backward
+  compatibility is ensured, but upgrading is recommended.
+
+** Variable parse.error
+
+  The variable error controls the verbosity of error messages.  The
+  use of the %error-verbose directive is deprecated in favor of
+  %define parse.error "verbose".
+
+** Semantic predicates
+
+  The new, experimental, semantic-predicate feature allows actions of
+  the form %?{ BOOLEAN-EXPRESSION }, which cause syntax errors (as for
+  YYERROR) if the expression evaluates to 0, and are evaluated immediately
+  in GLR parsers, rather than being deferred.  The result is that they
+  allow the programmer to prune possible parses based on the values of
+  runtime expressions.
+
+* Noteworthy changes in release ?.? (????-??-??) [?]
+
 ** Future changes:
 
   The next major release will drop support for generating parsers in K&R C,
@@ -78,10 +146,10 @@ GNU Bison NEWS
   The header files such as "parser.hh", "location.hh", etc. used a constant
   name for preprocessor guards, for instance:
 
-    #ifndef BISON_LOCATION_HH
-    # define BISON_LOCATION_HH
-    ...
-    #endif // !BISON_LOCATION_HH
+  #ifndef BISON_LOCATION_HH
+  # define BISON_LOCATION_HH
+  ...
+  #endif // !BISON_LOCATION_HH
 
   The inclusion guard is now computed from "PREFIX/FILE-NAME", where lower
   case characters are converted to upper case, and series of
@@ -89,10 +157,10 @@ GNU Bison NEWS
 
   With "bison -o lang++/parser.cc", "location.hh" would now include:
 
-    #ifndef YY_LANG_LOCATION_HH
-    # define YY_LANG_LOCATION_HH
-    ...
-    #endif // !YY_LANG_LOCATION_HH
+  #ifndef YY_LANG_LOCATION_HH
+  # define YY_LANG_LOCATION_HH
+  ...
+  #endif // !YY_LANG_LOCATION_HH
 
 *** C++ locations:
 
@@ -323,33 +391,33 @@ GNU Bison NEWS
   to use it.  If, for instance, your location structure has "first"
   and "last" members, instead of
 
-    # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
-      do                                                                 \
-        if (N)                                                           \
-          {                                                              \
-            (Current).first = (Rhs)[1].location.first;                   \
-            (Current).last  = (Rhs)[N].location.last;                    \
-          }                                                              \
-        else                                                             \
-          {                                                              \
-            (Current).first = (Current).last = (Rhs)[0].location.last;   \
-          }                                                              \
-      while (false)
+      # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
+        do                                                                 \
+          if (N)                                                           \
+            {                                                              \
+              (Current).first = (Rhs)[1].location.first;                   \
+              (Current).last  = (Rhs)[N].location.last;                    \
+            }                                                              \
+          else                                                             \
+            {                                                              \
+              (Current).first = (Current).last = (Rhs)[0].location.last;   \
+            }                                                              \
+        while (false)
 
   use:
 
-    # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
-      do                                                                 \
-        if (N)                                                           \
-          {                                                              \
-            (Current).first = YYRHSLOC (Rhs, 1).first;                   \
-            (Current).last  = YYRHSLOC (Rhs, N).last;                    \
-          }                                                              \
-        else                                                             \
-          {                                                              \
-            (Current).first = (Current).last = YYRHSLOC (Rhs, 0).last;   \
-          }                                                              \
-      while (false)
+      # define YYLLOC_DEFAULT(Current, Rhs, N)                             \
+        do                                                                 \
+          if (N)                                                           \
+            {                                                              \
+              (Current).first = YYRHSLOC (Rhs, 1).first;                   \
+              (Current).last  = YYRHSLOC (Rhs, N).last;                    \
+            }                                                              \
+          else                                                             \
+            {                                                              \
+              (Current).first = (Current).last = YYRHSLOC (Rhs, 0).last;   \
+            }                                                              \
+        while (false)
 
 ** YYLLOC_DEFAULT in C++:
 
@@ -1322,9 +1390,9 @@ GNU Bison NEWS
 ** Incorrect "Token not used"
   On a grammar such as
 
-    %token useless useful
-    %%
-    exp: '0' %prec useful;
+           %token useless useful
+           %%
+           exp: '0' %prec useful;
 
   where a token was used to set the precedence of the last rule,
   bison reported both "useful" and "useless" as useless tokens.
@@ -1343,9 +1411,9 @@ GNU Bison NEWS
   the user symbol is used in the reports, the graphs, and the verbose
   error messages instead of "$end", which remains being the default.
   For instance
-    %token MYEOF 0
+     %token MYEOF 0
   or
-    %token MYEOF 0 "end of file"
+     %token MYEOF 0 "end of file"
 
 ** Semantic parser
   This old option, which has been broken for ages, is removed.
@@ -1381,9 +1449,9 @@ GNU Bison NEWS
   Previous versions don't complain when there is a type clash on
   the default action if the rule has a mid-rule action, such as in:
 
-    %type <foo> bar
-    %%
-    bar: '0' {} '0';
+      %type <foo> bar
+      %%
+      bar: '0' {} '0';
 
   This is fixed.