summaryrefslogtreecommitdiff
path: root/tests/javapush.at
diff options
context:
space:
mode:
authorAkim Demaille <akim.demaille@gmail.com>2019-06-19 18:25:48 +0200
committerAkim Demaille <akim.demaille@gmail.com>2019-06-20 06:57:27 +0200
commit08c05716134052c1b0f34c9b291069b7791c247c (patch)
tree44931569c05c72b00d654db49d47a8c01a7b6d3b /tests/javapush.at
parentf2b210a901f4271ef5c936355bb5dae95cd260b0 (diff)
downloadbison-08c05716134052c1b0f34c9b291069b7791c247c.tar.gz
java: honor %define parse.trace
* data/skeletons/lalr1.java: Don't generate debug code if parse.trace is not enabled.
Diffstat (limited to 'tests/javapush.at')
-rw-r--r--tests/javapush.at21
1 files changed, 15 insertions, 6 deletions
diff --git a/tests/javapush.at b/tests/javapush.at
index 8214a6d0..f2d4309d 100644
--- a/tests/javapush.at
+++ b/tests/javapush.at
@@ -43,9 +43,11 @@ AT_BANNER([[Java Push Parsing Tests]])
# Define a single copy of the trivial parser grammar.
# This is missing main(), so two versions
# are instantiated with different main() procedures.
-m4_define([AT_TRIVIAL_GRAMMAR],[[
+m4_define([AT_TRIVIAL_GRAMMAR],
+[[
%define api.parser.class {YYParser}
%define parse.error verbose
+%define parse.trace
%code imports {
import java.io.*;
@@ -213,7 +215,8 @@ AT_CLEANUP
AT_SETUP([Trivial Push Parser with %initial-action])
AT_BISON_OPTION_PUSHDEFS
-AT_DATA([[input.y]],[[%language "Java"
+AT_DATA([[input.y]],
+[[%language "Java"
%initial-action {
System.err.println("Initial action invoked");
}
@@ -327,7 +330,8 @@ AT_BISON_OPTION_PUSHDEFS
# may be incorrect and you will have
# to modify that file as well.
-AT_DATA([input],[[1 + 2 * 3 = 7
+AT_DATA([input],
+[[1 + 2 * 3 = 7
1 + 2 * -3 = -5
-1^2 = -1
@@ -343,10 +347,12 @@ AT_DATA([input],[[1 + 2 * 3 = 7
]])
# Compose pieces to build the actual .y file.
-AT_DATA([Calc.y],[[/* Infix notation calculator--calc */
+AT_DATA([Calc.y],
+[[/* Infix notation calculator--calc */
%language "Java"
%define api.parser.class {Calc}
+%define parse.trace
%code {
static class UserLexer implements Calc.Lexer
@@ -615,10 +621,12 @@ AT_CLEANUP
AT_SETUP([Calc parser with %locations %code lexer and api.push-pull both])
AT_BISON_OPTION_PUSHDEFS
-AT_DATA([Calc.y],[[/* Infix notation calculator--calc. */
+AT_DATA([Calc.y],
+[[/* Infix notation calculator--calc. */
%language "Java"
%define api.parser.class {Calc}
+%define parse.trace
%lex-param { Reader rdr }
%locations
@@ -826,7 +834,8 @@ Next token is token '\n' (14.0: 64)
# may be incorrect and you will have
# to modify that file as well.
-AT_DATA([input],[[1 + 2 * 3 = 7
+AT_DATA([input],
+[[1 + 2 * 3 = 7
1 + 2 * -3 = -5
-1^2 = -1