File: parsetok.h

package info (click to toggle)
python3-typed-ast 1.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,728 kB
  • sloc: ansic: 31,662; python: 4,185; makefile: 4
file content (73 lines) | stat: -rw-r--r-- 1,845 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73

/* Parser-tokenizer link interface */

#ifndef Ta27_PARSETOK_H
#define Ta27_PARSETOK_H
#ifdef __cplusplus
extern "C" {
#endif

typedef struct {
    int error;
    PyObject *filename;
    int lineno;
    int offset;
    char *text;
    int token;
    int expected;
} perrdetail;

#if 0
#define PyPARSE_YIELD_IS_KEYWORD	0x0001
#endif

#define PyPARSE_DONT_IMPLY_DEDENT	0x0002

#if 0
#define PyPARSE_WITH_IS_KEYWORD		0x0003
#endif

#define PyPARSE_PRINT_IS_FUNCTION       0x0004
#define PyPARSE_UNICODE_LITERALS        0x0008

#define PyPARSE_IGNORE_COOKIE 0x0010


node *Ta27Parser_ParseString(const char *, grammar *, int,
                             perrdetail *);
node *Ta27Parser_ParseFile (FILE *, const char *, grammar *, int,
                            char *, char *, perrdetail *);

node *Ta27Parser_ParseStringFlags(const char *, grammar *, int,
                                  perrdetail *, int);
node *Ta27Parser_ParseFileFlags(FILE *, const char *, grammar *,
       			 int, char *, char *,
       			 perrdetail *, int);
node *Ta27Parser_ParseFileFlagsEx(FILE *, const char *, grammar *,
       			 int, char *, char *,
       			 perrdetail *, int *);

node *Ta27Parser_ParseStringFlagsFilename(const char *,
       		      const char *,
       		      grammar *, int,
                perrdetail *, int);
node *Ta27Parser_ParseStringFlagsFilenameEx(const char *,
					      const char *,
					      grammar *, int,
                                              perrdetail *, int *);

node *Ta27Parser_ParseStringObject(
    const char *s,
    PyObject *filename,
    grammar *g,
    int start,
    perrdetail *err_ret,
    int *flags);

/* Note that he following function is defined in pythonrun.c not parsetok.c. */
PyAPI_FUNC(void) PyParser_SetError(perrdetail *);

#ifdef __cplusplus
}
#endif
#endif /* !Ta27_PARSETOK_H */