(extPropValue any)
| 92 | } |
| 93 | |
| 94 | func extParseGoJsonIgnore(extPropValue any) (bool, error) { |
| 95 | goJsonIgnore, ok := extPropValue.(bool) |
| 96 | if !ok { |
| 97 | return false, fmt.Errorf("failed to convert type: %T", extPropValue) |
| 98 | } |
| 99 | return goJsonIgnore, nil |
| 100 | } |
| 101 | |
| 102 | func extParseEnumVarNames(extPropValue any) ([]string, error) { |
| 103 | namesI, ok := extPropValue.([]any) |
no outgoing calls
no test coverage detected