20
20
21
21
#include < util/unicode.h>
22
22
23
- int yyjsonlex ();
24
- extern char *yyjsontext;
25
- extern int yyjsonleng; // really an int, not a size_t
23
+ int yyjsonlex (void *);
24
+ char *yyjsonget_text (void *);
25
+ #define yyjsontext yyjsonget_text (scanner)
26
+ int yyjsonget_leng(void *); // really an int, not a size_t
27
+ #define yyjsonleng yyjsonget_leng (scanner)
26
28
27
- static std::string convert_TOK_STRING ()
29
+ static std::string convert_TOK_STRING(void *scanner )
28
30
{
29
31
PRECONDITION (yyjsontext[0 ]==' "' );
30
32
std::size_t len=yyjsonleng;
@@ -70,19 +72,23 @@ static std::string convert_TOK_STRING()
70
72
return result;
71
73
}
72
74
73
- static std::string convert_TOK_NUMBER ()
75
+ static std::string convert_TOK_NUMBER (void *scanner )
74
76
{
75
77
return yyjsontext;
76
78
}
77
79
78
- int yyjsonerror (const std::string &error)
80
+ int yyjsonerror (json_parsert &json_parser, void *scanner, const std::string &error)
79
81
{
80
82
json_parser.parse_error (error, yyjsontext);
81
83
return 0 ;
82
84
}
83
85
84
86
%}
85
87
88
+ %parse-param {json_parsert &json_parser}
89
+ %parse-param {void *scanner}
90
+ %lex-param {void *scanner}
91
+
86
92
%token TOK_STRING
87
93
%token TOK_NUMBER
88
94
%token TOK_TRUE
@@ -109,7 +115,7 @@ key_value_pair:
109
115
TOK_STRING
110
116
{
111
117
// we abuse the 'value' to temporarily store the key
112
- json_parser.top().value=convert_TOK_STRING();
118
+ json_parser.top().value=convert_TOK_STRING(scanner );
113
119
}
114
120
' :' value
115
121
{
@@ -139,9 +145,9 @@ array_value:
139
145
;
140
146
141
147
value : TOK_STRING
142
- { json_parser.push(json_stringt(convert_TOK_STRING())); }
148
+ { json_parser.push(json_stringt(convert_TOK_STRING(scanner ))); }
143
149
| TOK_NUMBER
144
- { json_parser.push(json_numbert(convert_TOK_NUMBER())); }
150
+ { json_parser.push(json_numbert(convert_TOK_NUMBER(scanner ))); }
145
151
| object
146
152
| array
147
153
| TOK_TRUE
0 commit comments