Nil Ptr cause panic 指针未做nil判断会导致panic file: filter/parser.go line: 19 to 22 Test: ```golang type T struct { A string `json:"a,select(test)"` } func TestNil(t *testing.T) { var a *T var el = map[string]any{ "a": a, // a: nil ptr } fmt.Println(filter.Select("test", el)) } ```