This commit is contained in:
Jeff Carr 2025-03-26 10:27:45 -05:00
parent 255f08f81f
commit 2269ac2c27
1 changed files with 4 additions and 0 deletions

View File

@ -194,7 +194,10 @@ func getInceptionMsg(fmtmsg *FormatMsg) {
newmsg.MaxVarname = fmtmsg.MaxVarname newmsg.MaxVarname = fmtmsg.MaxVarname
newmsg.MaxVartype = fmtmsg.MaxVartype newmsg.MaxVartype = fmtmsg.MaxVartype
newmsg.Header = line newmsg.Header = line
getInceptionEnum(newmsg)
fmtmsg.Enums = append(fmtmsg.Enums, newmsg) fmtmsg.Enums = append(fmtmsg.Enums, newmsg)
// log.Info("got here:", line)
// os.Exit(-1)
continue continue
} }
if strings.HasPrefix(line, "message ") { if strings.HasPrefix(line, "message ") {
@ -203,6 +206,7 @@ func getInceptionMsg(fmtmsg *FormatMsg) {
newmsg.MaxVarname = fmtmsg.MaxVarname newmsg.MaxVarname = fmtmsg.MaxVarname
newmsg.MaxVartype = fmtmsg.MaxVartype newmsg.MaxVartype = fmtmsg.MaxVartype
newmsg.Header = line newmsg.Header = line
getInceptionMsg(newmsg)
fmtmsg.InceptionMsgs = append(fmtmsg.InceptionMsgs, newmsg) fmtmsg.InceptionMsgs = append(fmtmsg.InceptionMsgs, newmsg)
continue continue
} }