mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-10-31 20:14:21 +00:00
331ec59dec
This commit gets rid of contain-it-all structs and instead opt for interface union types containing underlying concrete types with no overloading. The code is much more verbose by doing this, but the API is much nicer to use. The only disadvantage in that regard is the interface assertion being too verbose and risky for users at times.
43 lines
563 B
Bash
Executable file
43 lines
563 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
types=(
|
|
SubcommandOption
|
|
SubcommandGroupOption
|
|
StringOption
|
|
IntegerOption
|
|
BooleanOption
|
|
UserOption
|
|
ChannelOption
|
|
RoleOption
|
|
MentionableOption
|
|
)
|
|
|
|
recvs=(
|
|
s
|
|
s
|
|
s
|
|
i
|
|
b
|
|
u
|
|
c
|
|
r
|
|
m
|
|
)
|
|
|
|
for ((i = 0; i < 6; i++)); {
|
|
cat<<EOF
|
|
// MarshalJSON marshals ${types[$i]} to JSON with the "type" field.
|
|
func (${recvs[$i]} *${types[$i]}) MarshalJSON() ([]byte, error) {
|
|
type raw ${types[$i]}
|
|
return json.Marshal(struct {
|
|
Type CommandOptionType \`json:"type"\`
|
|
*raw
|
|
}{
|
|
Type: ${recvs[$i]}.Type(),
|
|
raw: (*raw)(${recvs[$i]}),
|
|
})
|
|
}
|
|
|
|
EOF
|
|
}
|