/usr/share/doc/python3-pycparser/examples
#----------------------------------------------------------------- # pycparser: rewrite_ast.py # # Tiny example of rewriting a AST node # # Eli Bendersky [https://eli.thegreenplace.net/] # License: BSD #----------------------------------------------------------------- from __future__ import print_function import sys from pycparser import c_parser text = r""" void func(void) { x = 1; } """ parser = c_parser.CParser() ast = parser.parse(text) print("Before:") ast.show(offset=2) assign = ast.ext[0].body.block_items[0] assign.lvalue.name = "y" assign.rvalue.value = 2 print("After:") ast.show(offset=2)
.
Edit
..
Edit
README.rst
Edit
c-to-c.py
Edit
c_files
Edit
c_json.py
Edit
cdecl.py
Edit
dump_ast.py
Edit
explore_ast.py
Edit
func_calls.py
Edit
func_defs.py
Edit
rewrite_ast.py
Edit
serialize_ast.py
Edit
using_cpp_libc.py
Edit
using_gcc_E_libc.py
Edit