Don't try to dereference values before calling methods

This commit is contained in:
Elara 2024-02-21 22:55:17 -08:00
parent e810247f13
commit ed568f81bf
1 changed files with 0 additions and 3 deletions

View File

@ -484,9 +484,6 @@ func (t *Template) execMethodCall(mc ast.MethodCall, local map[string]any) (any,
if !rval.IsValid() {
return nil, ast.PosError(mc, "%s: cannot call method on nil value", valueToString(mc))
}
for rval.Kind() == reflect.Pointer {
rval = rval.Elem()
}
// First, check for a method with the given name
mtd := rval.MethodByName(mc.Name.Value)
if mtd.IsValid() {