ida_rename_multi_local_variables
Rename multiple local variables simultaneously within a specific function in the IDA database, enhancing code clarity and analysis efficiency.
Instructions
Rename multiple local variables within a function at once in the IDA database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
function_name | Yes | ||
rename_pairs_old2new | Yes |
Input Schema (JSON Schema)
{
"properties": {
"function_name": {
"title": "Function Name",
"type": "string"
},
"rename_pairs_old2new": {
"items": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"title": "Rename Pairs Old2New",
"type": "array"
}
},
"required": [
"function_name",
"rename_pairs_old2new"
],
"title": "RenameMultiLocalVariables",
"type": "object"
}