📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-22 08:53:34
📂
/ (Root)
/
opt
/
alt
/
python38
/
share
/
doc
/
alt-python38-pycparser
/
examples
📍 /opt/alt/python38/share/doc/alt-python38-pycparser/examples
🔄 Refresh
✏️
Editing: rewrite_ast.py
Read Only
#----------------------------------------------------------------- # pycparser: func_write.py # # Tiny example of rewriting a AST node # # Copyright (C) 2014, Akira Hayakawa # 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)
💾 Save Changes
❌ Cancel