(name: string)
| 4081 | const allFieldNames = ["common", ...groupPascalNames]; |
| 4082 | const maxFieldLen = Math.max(...allFieldNames.map((n) => n.length)); |
| 4083 | const pad = (name: string) => name.padEnd(maxFieldLen); |
| 4084 | |
| 4085 | // Emit wrapper struct |
| 4086 | pushGoComment( |