upgrade to go 1.25 & port helpers

Removed ExprID and ExprEnum in favour of generics.
This commit is contained in:
Elijah Duffy
2026-01-28 11:18:11 -08:00
parent 78de94c919
commit 6ab100cc46
6 changed files with 383 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ import (
// normalized for compatibility with the Jet QRM.
func DestName(destTypeStruct any, path ...string) string {
v := reflect.ValueOf(destTypeStruct)
for v.Kind() == reflect.Ptr {
for v.Kind() == reflect.Pointer {
v = v.Elem()
}