Exceptions raised during renaming in rotating file handlers are now passed to handleE...
[python.git] / Parser / parser.h
blob95ec2477d89aa0276fdb567aa1329d1439a1af61
1 #ifndef Py_PARSER_H
2 #define Py_PARSER_H
3 #ifdef __cplusplus
4 extern "C" {
5 #endif
8 /* Parser interface */
10 #define MAXSTACK 500
12 typedef struct {
13 int s_state; /* State in current DFA */
14 dfa *s_dfa; /* Current DFA */
15 struct _node *s_parent; /* Where to add next node */
16 } stackentry;
18 typedef struct {
19 stackentry *s_top; /* Top entry */
20 stackentry s_base[MAXSTACK];/* Array of stack entries */
21 /* NB The stack grows down */
22 } stack;
24 typedef struct {
25 stack p_stack; /* Stack of parser states */
26 grammar *p_grammar; /* Grammar to use */
27 node *p_tree; /* Top of parse tree */
28 #if 0 /* future keyword */
29 int p_generators; /* 1 if yield is a keyword */
30 #endif
31 } parser_state;
33 parser_state *PyParser_New(grammar *g, int start);
34 void PyParser_Delete(parser_state *ps);
35 int PyParser_AddToken(parser_state *ps, int type, char *str, int lineno,
36 int *expected_ret);
37 void PyGrammar_AddAccelerators(grammar *g);
39 #ifdef __cplusplus
41 #endif
42 #endif /* !Py_PARSER_H */