prevent unhashable panic

This commit is contained in:
2023-03-14 00:07:18 +00:00
parent cf25d392be
commit 406eafb8a4
7 changed files with 53 additions and 23 deletions

View File

@@ -16,6 +16,8 @@ func typeof(val any) string {
return "function"
case ArMap:
return "map"
case ArArray:
return "array"
case accessVariable:
return "variable"
}