[xml_import] Set repeatable comment for function

This commit is contained in:
saruman9 2020-01-10 11:46:14 +03:00
parent 26cab55a64
commit 07f293cbee
No known key found for this signature in database
GPG key ID: 1769FEA6B860FF90

View file

@ -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<>();