PHP 8.0.30
Preview: rewrite_ast.py Size: 599 B
/opt/alt/python37/share/doc/alt-python37-pycparser/examples/rewrite_ast.py

#-----------------------------------------------------------------
# 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)

Directory Contents

Dirs: 1 × Files: 8

Name Size Perms Modified Actions
c_files DIR
- drwxr-xr-x 2021-10-11 07:55:49
Edit Download
1.42 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
3.05 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
5.27 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
1.08 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
1.08 KB lrw-r--r-- 2021-07-07 23:54:58
Edit Download
599 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download
744 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download
797 B lrw-r--r-- 2021-07-07 23:54:58
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).