summaryrefslogtreecommitdiff
path: root/src/texec/eval.go
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-06-26 01:18:27 -0400
committerKyle Gunger <kgunger12@gmail.com>2022-06-26 01:18:27 -0400
commit289c1fe3dd2f29e2511b6bb376582f8791179a9b (patch)
tree67c7c2e272f7564e873c8092c9333aa3a5e16c2d /src/texec/eval.go
parent6416973e373a3c61aa2b44591799385c5b1b0092 (diff)
[AST] Parentheticals
+ Add support for parentheticals + Add uint as a valid type for the evaluator
Diffstat (limited to 'src/texec/eval.go')
-rw-r--r--src/texec/eval.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/texec/eval.go b/src/texec/eval.go
index 37341a5..b0f4a47 100644
--- a/src/texec/eval.go
+++ b/src/texec/eval.go
@@ -563,6 +563,9 @@ func convertValPS(to TType, sk int, dat interface{}) interface{} {
case int:
numcv = float64(v)
goto NCV
+ case uint:
+ numcv = float64(v)
+ goto NCV
case byte:
numcv = float64(v)
goto NCV
@@ -583,6 +586,8 @@ func convertValPS(to TType, sk int, dat interface{}) interface{} {
NCV:
if equateTypePSO(to, tInt, sk) {
return int(numcv)
+ } else if equateTypePSO(to, tUint, sk) {
+ return uint(numcv)
} else if equateTypePSO(to, tFloat, sk) {
return float64(numcv)
} else if equateTypePSO(to, tByte, sk) || equateTypePSO(to, tCharp, sk) {
@@ -696,6 +701,7 @@ func isStruct(t TType, skp int) bool {
ch = ch || equateTypePSO(t, tCharp, skp)
ch = ch || equateTypePSO(t, tBool, skp)
ch = ch || equateTypePSO(t, tNull, skp)
+ ch = ch || equateTypePSO(t, tUint, skp)
return !ch
}