File tree 2 files changed +23
-16
lines changed
2 files changed +23
-16
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,10 @@ typedef MC::MC_Parser::token token;
41
41
}
42
42
43
43
[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 );
45
48
return ( token::WORD );
46
49
}
47
50
Original file line number Diff line number Diff line change 10
10
class MC_Driver ;
11
11
class MC_Scanner ;
12
12
}
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
+
13
23
}
14
24
15
25
%parse-param { MC_Scanner &scanner }
27
37
#define yylex scanner.yylex
28
38
}
29
39
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
42
42
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
45
49
46
50
47
51
%%
56
60
item
57
61
: UPPER { driver.add_upper(); }
58
62
| LOWER { driver.add_lower(); }
59
- | WORD { driver.add_word( * $1 ); }
63
+ | WORD { driver.add_word( $1 ); }
60
64
| NEWLINE { driver.add_newline(); }
61
65
| CHAR { driver.add_char(); }
62
66
;
You can’t perform that action at this time.
0 commit comments