Skip to content

Commit 40b5d5a

Browse files
committedMay 23, 2014
Going "variant"
1 parent 9ccbb7c commit 40b5d5a

File tree

2 files changed

+23
-16
lines changed

2 files changed

+23
-16
lines changed
 

‎mc_lexer.l

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,10 @@ typedef MC::MC_Parser::token token;
4141
}
4242

4343
[a-zA-Z]+ {
44-
yylval->sval = STOKEN( yytext );
44+
// Section 10.1.5.1 of the 3.0.2 Bison Manual says the following should work
45+
// yylval.build( yytext );
46+
// But it doesn't.
47+
yylval->build<std::string>( yytext );
4548
return( token::WORD );
4649
}
4750

‎mc_parser.yy

+19-15
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
class MC_Driver;
1111
class MC_Scanner;
1212
}
13+
14+
// The following definitions is missing when %locations isn't used
15+
# ifndef YY_NULLPTR
16+
# if defined __cplusplus && 201103L <= __cplusplus
17+
# define YY_NULLPTR nullptr
18+
# else
19+
# define YY_NULLPTR 0
20+
# endif
21+
# endif
22+
1323
}
1424

1525
%parse-param { MC_Scanner &scanner }
@@ -27,21 +37,15 @@
2737
#define yylex scanner.yylex
2838
}
2939

30-
/* token types */
31-
%union {
32-
std::string *sval;
33-
}
34-
35-
%token END 0 "end of file"
36-
%token UPPER
37-
%token LOWER
38-
%token <sval> WORD
39-
%token NEWLINE
40-
%token CHAR
41-
40+
%define api.value.type variant
41+
%define parse.assert
4242

43-
/* destructor rule for <sval> objects */
44-
%destructor { if ($$) { delete ($$); ($$) = nullptr; } } <sval>
43+
%token END 0 "end of file"
44+
%token UPPER
45+
%token LOWER
46+
%token <std::string> WORD
47+
%token NEWLINE
48+
%token CHAR
4549

4650

4751
%%
@@ -56,7 +60,7 @@ list
5660
item
5761
: UPPER { driver.add_upper(); }
5862
| LOWER { driver.add_lower(); }
59-
| WORD { driver.add_word( *$1 ); }
63+
| WORD { driver.add_word( $1 ); }
6064
| NEWLINE { driver.add_newline(); }
6165
| CHAR { driver.add_char(); }
6266
;

0 commit comments

Comments
 (0)
Please sign in to comment.