You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
922 B
28 lines
922 B
4 months ago
|
#-----------------------------------------------------------------
|
||
|
# pycparser: dump_ast.py
|
||
|
#
|
||
|
# Basic example of parsing a file and dumping its parsed AST.
|
||
|
#
|
||
|
# Eli Bendersky [https://eli.thegreenplace.net/]
|
||
|
# License: BSD
|
||
|
#-----------------------------------------------------------------
|
||
|
from __future__ import print_function
|
||
|
import argparse
|
||
|
import sys
|
||
|
|
||
|
# This is not required if you've installed pycparser into
|
||
|
# your site-packages/ with setup.py
|
||
|
sys.path.extend(['.', '..'])
|
||
|
|
||
|
from pycparser import c_parser, c_ast, parse_file
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
argparser = argparse.ArgumentParser('Dump AST')
|
||
|
argparser.add_argument('filename', help='name of file to parse')
|
||
|
argparser.add_argument('--coord', help='show coordinates in the dump',
|
||
|
action='store_true')
|
||
|
args = argparser.parse_args()
|
||
|
|
||
|
ast = parse_file(args.filename, use_cpp=False)
|
||
|
ast.show(showcoord=args.coord)
|