16
16
17
17
#include " statement_list_parse_tree.h"
18
18
19
+ class statement_list_parsert ;
19
20
// / Defined in statement_list_y.tab.cpp. Main function for the parse process
20
21
// / generated by bison, performs all necessary steps to fill the parse tree.
21
- int yystatement_listparse ();
22
+ int yystatement_listparse (statement_list_parsert & );
22
23
23
24
// / Responsible for starting the parse process and to translate the result into
24
25
// / a statement_list_parse_treet. This parser works by using the expression
@@ -34,6 +35,12 @@ int yystatement_listparse();
34
35
class statement_list_parsert : public parsert
35
36
{
36
37
public:
38
+ // / Constructor
39
+ explicit statement_list_parsert (message_handlert &message_handler)
40
+ : parsert(message_handler)
41
+ {
42
+ }
43
+
37
44
// / Starts the parsing process and saves the result inside of this instance's
38
45
// / parse tree.
39
46
// / \return False if successful.
@@ -71,9 +78,6 @@ class statement_list_parsert : public parsert
71
78
statement_list_parse_treet parse_tree;
72
79
};
73
80
74
- // / Instance of the parser, used by other modules.
75
- extern statement_list_parsert statement_list_parser;
76
-
77
81
// / Forwards any errors that are encountered during the parse process. This
78
82
// / function gets called by the generated files of flex and bison.
79
83
// / \param error: Error message.
@@ -82,6 +86,6 @@ int yystatement_listerror(const std::string &error);
82
86
83
87
// / Defined in scanner.l. This function initialises the scanner by setting
84
88
// / debug flags (if present) and its initial state.
85
- void statement_list_scanner_init ();
89
+ void statement_list_scanner_init (statement_list_parsert & );
86
90
87
91
#endif // CPROVER_STATEMENT_LIST_STATEMENT_LIST_PARSER_H
0 commit comments