Skip to content

Latest commit

 

History

History
5 lines (4 loc) · 388 Bytes

README.md

File metadata and controls

5 lines (4 loc) · 388 Bytes

Program-Analysis-using-Ast2json

  1. Extracting assignments statments, loop conditions and branch conditions for basic python programs using abstract syntax tree dumpedinto json format.
  2. Building control flow graph from the given python program.
  3. Uisng Reaching definitions and Live variable analysis, detecting and deleting dead statments, variables from the given python program.