@@ -195,9 +195,10 @@ void new_scopet::print_rec(std::ostream &out, unsigned indent) const
195
195
class Parser // NOLINT(readability/identifiers)
196
196
{
197
197
public:
198
- explicit Parser (cpp_parsert &_cpp_parser)
198
+ Parser (cpp_parsert &_cpp_parser, message_handlert &message_handler )
199
199
: lex(_cpp_parser.token_buffer),
200
- parser(_cpp_parser),
200
+ parse_tree (_cpp_parser.parse_tree),
201
+ message_handler(message_handler),
201
202
max_errors(10 ),
202
203
cpp11(
203
204
config.cpp.cpp_standard == configt::cppt::cpp_standardt::CPP11 ||
@@ -212,7 +213,8 @@ class Parser // NOLINT(readability/identifiers)
212
213
213
214
protected:
214
215
cpp_token_buffert &lex;
215
- cpp_parsert &parser;
216
+ cpp_parse_treet &parse_tree;
217
+ message_handlert &message_handler;
216
218
217
219
// scopes
218
220
new_scopet root_scope;
@@ -517,8 +519,9 @@ bool Parser::SyntaxError()
517
519
518
520
message+=" '" ;
519
521
520
- parser.log .error ().source_location = source_location;
521
- parser.log .error () << message << messaget::eom;
522
+ messaget log {message_handler};
523
+ log .error ().source_location = source_location;
524
+ log .error () << message << messaget::eom;
522
525
}
523
526
524
527
return ++number_of_errors < max_errors;
@@ -8381,7 +8384,7 @@ bool Parser::operator()()
8381
8384
8382
8385
while (rProgram (item))
8383
8386
{
8384
- parser. parse_tree .items .push_back (item);
8387
+ parse_tree.items .push_back (item);
8385
8388
item.clear ();
8386
8389
}
8387
8390
@@ -8392,8 +8395,8 @@ bool Parser::operator()()
8392
8395
return number_of_errors!=0 ;
8393
8396
}
8394
8397
8395
- bool cpp_parse ()
8398
+ bool cpp_parse (cpp_parsert &cpp_parser, message_handlert &message_handler )
8396
8399
{
8397
- Parser parser (cpp_parser);
8400
+ Parser parser (cpp_parser, message_handler );
8398
8401
return parser ();
8399
8402
}
0 commit comments