mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 10:49:34 +02:00
[xml_import] Set repeatable comment for function
This commit is contained in:
parent
26cab55a64
commit
07f293cbee
1 changed files with 2 additions and 1 deletions
|
@ -167,7 +167,8 @@ class FunctionsXmlMgr {
|
||||||
|
|
||||||
String regularComment = getElementText(parser, "REGULAR_CMT");
|
String regularComment = getElementText(parser, "REGULAR_CMT");
|
||||||
func.setComment(regularComment);
|
func.setComment(regularComment);
|
||||||
getElementText(parser, "REPEATABLE_CMT");
|
String repeatableComment = getElementText(parser, "REPEATABLE_CMT");
|
||||||
|
func.setRepeatableComment(repeatableComment);
|
||||||
String typeInfoComment = getElementText(parser, "TYPEINFO_CMT");
|
String typeInfoComment = getElementText(parser, "TYPEINFO_CMT");
|
||||||
List<Variable> stackParams = new ArrayList<>();
|
List<Variable> stackParams = new ArrayList<>();
|
||||||
List<Variable> stackVariables = new ArrayList<>();
|
List<Variable> stackVariables = new ArrayList<>();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue