When generating a new type, the parameter type was not correctly duplicated in the new AST. This is fixed by making copyNode recursive if needed. The out of order processing of generic types has also been fixed. Fixes #1488
34 lines
500 B
Go
34 lines
500 B
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/netip"
|
|
)
|
|
|
|
type Slice[T any] struct {
|
|
x []T
|
|
}
|
|
|
|
type IPPrefixSlice struct {
|
|
x Slice[netip.Prefix]
|
|
}
|
|
|
|
func (v Slice[T]) MarshalJSON() ([]byte, error) { return json.Marshal(v.x) }
|
|
|
|
// MarshalJSON implements json.Marshaler.
|
|
func (v IPPrefixSlice) MarshalJSON() ([]byte, error) {
|
|
return v.x.MarshalJSON()
|
|
}
|
|
|
|
func main() {
|
|
t := IPPrefixSlice{}
|
|
fmt.Println(t)
|
|
b, e := t.MarshalJSON()
|
|
fmt.Println(string(b), e)
|
|
}
|
|
|
|
// Output:
|
|
// {{[]}}
|
|
// null <nil>
|