This commit is contained in:
Mike Schwörer 2023-07-24 18:50:14 +02:00
parent edeae23bf1
commit f826633e6e
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 8 additions and 4 deletions

View File

@ -3,8 +3,10 @@ package ginext
import ( import (
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"gogs.mikescher.com/BlackForestBytes/goext/langext" "gogs.mikescher.com/BlackForestBytes/goext/langext"
"gogs.mikescher.com/BlackForestBytes/goext/rext"
"net/http" "net/http"
"reflect" "reflect"
"regexp"
"runtime" "runtime"
"strings" "strings"
) )
@ -137,8 +139,10 @@ func nameOfFunction(f any) string {
fname = fname[:len(fname)-len("-fm")] fname = fname[:len(fname)-len("-fm")]
} }
if strings.HasSuffix(fname, ".func1") { suffix := rext.W(regexp.MustCompile("\\.func[0-9]+$"))
fname = fname[:len(fname)-len(".func1")]
if match, ok := suffix.MatchFirst(fname); ok {
fname = fname[:len(fname)-match.FullMatch().Length()]
} }
return fname return fname

View File

@ -1,5 +1,5 @@
package goext package goext
const GoextVersion = "0.0.205" const GoextVersion = "0.0.206"
const GoextVersionTimestamp = "2023-07-24T18:47:48+0200" const GoextVersionTimestamp = "2023-07-24T18:50:14+0200"