8 lines
267 B
Smarty
8 lines
267 B
Smarty
{{ block "UnmarshalText" . -}}
|
|
pval, perr := {{.ValName}}.ParseString()
|
|
if perr != nil {
|
|
return {{.Value}}, fmt.Errorf("read [%v]:%w", []string{ {{- .Keys "i" -}} }, perr)
|
|
}
|
|
|
|
return {{.Value}}, {{.Value}}.UnmarshalText([]byte(pval))
|
|
{{- end }} |