Initial commit of OpenSPARC T2 architecture model.
[OpenSPARC-T2-SAM] / sam-t2 / devtools / v8plus / include / python2.4 / parsetok.h
CommitLineData
920dae64
AT
1
2/* Parser-tokenizer link interface */
3
4#ifndef Py_PARSETOK_H
5#define Py_PARSETOK_H
6#ifdef __cplusplus
7extern "C" {
8#endif
9
10typedef struct {
11 int error;
12 const char *filename;
13 int lineno;
14 int offset;
15 char *text;
16 int token;
17 int expected;
18} perrdetail;
19
20#if 0
21#define PyPARSE_YIELD_IS_KEYWORD 0x0001
22#endif
23
24#define PyPARSE_DONT_IMPLY_DEDENT 0x0002
25
26PyAPI_FUNC(node *) PyParser_ParseString(const char *, grammar *, int,
27 perrdetail *);
28PyAPI_FUNC(node *) PyParser_ParseFile (FILE *, const char *, grammar *, int,
29 char *, char *, perrdetail *);
30
31PyAPI_FUNC(node *) PyParser_ParseStringFlags(const char *, grammar *, int,
32 perrdetail *, int);
33PyAPI_FUNC(node *) PyParser_ParseFileFlags(FILE *, const char *, grammar *,
34 int, char *, char *,
35 perrdetail *, int);
36
37PyAPI_FUNC(node *) PyParser_ParseStringFlagsFilename(const char *,
38 const char *,
39 grammar *, int,
40 perrdetail *, int);
41
42/* Note that he following function is defined in pythonrun.c not parsetok.c. */
43PyAPI_FUNC(void) PyParser_SetError(perrdetail *);
44
45#ifdef __cplusplus
46}
47#endif
48#endif /* !Py_PARSETOK_H */