|
PCART
v1.4
Automated Repair of Python API Parameter Compatibility Issues
|
Function definition node visitor 函数定义节点遍历器 More...
Public Member Functions | |
| def | __init__ (self) |
| Initialize the function definition node container 初始化函数定义节点容器 More... | |
| def | functionNodes (self) |
| Return collected function definition nodes 返回收集到的函数定义节点 More... | |
| def | visit_FunctionDef (self, node) |
| Visit a FunctionDef node and record it 访问FunctionDef节点并记录 More... | |
Function definition node visitor 函数定义节点遍历器
Inherits from ast.NodeVisitor
Definition at line 22 of file extractDef.py.
| def __init__ | ( | self | ) |
Initialize the function definition node container 初始化函数定义节点容器
Definition at line 25 of file extractDef.py.
| def functionNodes | ( | self | ) |
Return collected function definition nodes 返回收集到的函数定义节点
Definition at line 31 of file extractDef.py.
| def visit_FunctionDef | ( | self, | |
| node | |||
| ) |
Visit a FunctionDef node and record it 访问FunctionDef节点并记录
| node | The FunctionDef AST node |
Definition at line 38 of file extractDef.py.