-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathevaluator.go
1420 lines (1252 loc) · 37 KB
/
evaluator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Package evaluator contains the core of our interpreter, which walks
// the AST produced by the parser and evaluates the user-submitted program.
package evaluator
import (
"bytes"
"context"
"errors"
"fmt"
"math"
"os"
"os/exec"
"path/filepath"
"regexp"
"strings"
"unicode"
"github.com/skx/monkey/ast"
"github.com/skx/monkey/object"
)
// pre-defined object including Null, True and False
var (
NULL = &object.Null{}
TRUE = &object.Boolean{Value: true}
FALSE = &object.Boolean{Value: false}
PRAGMAS = make(map[string]int)
)
// The built-in functions / standard-library methods are stored here.
var builtins = map[string]*object.Builtin{}
// Eval is our core function for evaluating nodes.
func Eval(node ast.Node, env *object.Environment) object.Object {
return EvalContext(context.Background(), node, env)
}
// EvalContext is our core function for evaluating nodes.
// The context.Context provided can be used to cancel a running script instance.
func EvalContext(ctx context.Context, node ast.Node, env *object.Environment) object.Object {
//
// We test our context at every iteration of our main-loop.
//
select {
case <-ctx.Done():
return &object.Error{Message: ctx.Err().Error()}
default:
// nop
}
switch node := node.(type) {
// Statements
case *ast.Program:
return evalProgram(ctx, node, env)
case *ast.ExpressionStatement:
return EvalContext(ctx, node.Expression, env)
// Expressions
case *ast.IntegerLiteral:
return &object.Integer{Value: node.Value}
case *ast.FloatLiteral:
return &object.Float{Value: node.Value}
case *ast.Boolean:
return nativeBoolToBooleanObject(node.Value)
case *ast.NullLiteral:
return NULL
case *ast.PrefixExpression:
right := EvalContext(ctx, node.Right, env)
if isError(right) {
return right
}
return evalPrefixExpression(node.Operator, right)
case *ast.PostfixExpression:
return evalPostfixExpression(env, node.Operator, node)
case *ast.InfixExpression:
left := EvalContext(ctx, node.Left, env)
if isError(left) {
return left
}
right := EvalContext(ctx, node.Right, env)
if isError(right) {
return right
}
res := evalInfixExpression(node.Operator, left, right, env)
if isError(res) {
fmt.Printf("Error: %s\n", res.Inspect())
if PRAGMAS["strict"] == 1 {
os.Exit(1)
}
}
return (res)
case *ast.BlockStatement:
return evalBlockStatement(ctx, node, env)
case *ast.IfExpression:
return evalIfExpression(ctx, node, env)
case *ast.TernaryExpression:
return evalTernaryExpression(ctx, node, env)
case *ast.ForLoopExpression:
return evalForLoopExpression(ctx, node, env)
case *ast.ForeachStatement:
return evalForeachExpression(ctx, node, env)
case *ast.ReturnStatement:
val := EvalContext(ctx, node.ReturnValue, env)
if isError(val) {
return val
}
return &object.ReturnValue{Value: val}
case *ast.LetStatement:
val := EvalContext(ctx, node.Value, env)
if isError(val) {
return val
}
env.Set(node.Name.Value, val)
return val
case *ast.ConstStatement:
val := EvalContext(ctx, node.Value, env)
if isError(val) {
return val
}
env.SetConst(node.Name.Value, val)
return val
case *ast.Identifier:
return evalIdentifier(node, env)
case *ast.FunctionLiteral:
params := node.Parameters
body := node.Body
defaults := node.Defaults
return &object.Function{Parameters: params, Env: env, Body: body, Defaults: defaults}
case *ast.FunctionDefineLiteral:
params := node.Parameters
body := node.Body
defaults := node.Defaults
env.Set(node.TokenLiteral(), &object.Function{Parameters: params, Env: env, Body: body, Defaults: defaults})
return NULL
case *ast.ObjectCallExpression:
res := evalObjectCallExpression(ctx, node, env)
if isError(res) {
fmt.Fprintf(os.Stderr, "Error calling object-method %s\n", res.Inspect())
if PRAGMAS["strict"] == 1 {
os.Exit(1)
}
}
return res
case *ast.CallExpression:
function := EvalContext(ctx, node.Function, env)
if isError(function) {
return function
}
args := evalExpression(ctx, node.Arguments, env)
if len(args) == 1 && isError(args[0]) {
return args[0]
}
res := applyFunction(ctx, env, function, args)
if isError(res) {
fmt.Fprintf(os.Stderr, "Error calling `%s` : %s\n", node.Function, res.Inspect())
if PRAGMAS["strict"] == 1 {
os.Exit(1)
}
return res
}
return res
case *ast.ArrayLiteral:
elements := evalExpression(ctx, node.Elements, env)
if len(elements) == 1 && isError(elements[0]) {
return elements[0]
}
return &object.Array{Elements: elements}
case *ast.StringLiteral:
return &object.String{Value: node.Value}
case *ast.RegexpLiteral:
return &object.Regexp{Value: node.Value, Flags: node.Flags}
case *ast.BacktickLiteral:
return backTickOperation(node.Value)
case *ast.IndexExpression:
left := EvalContext(ctx, node.Left, env)
if isError(left) {
return left
}
index := EvalContext(ctx, node.Index, env)
if isError(index) {
return index
}
return evalIndexExpression(left, index)
case *ast.AssignStatement:
return evalAssignStatement(ctx, node, env)
case *ast.HashLiteral:
return evalHashLiteral(ctx, node, env)
case *ast.SwitchExpression:
return evalSwitchStatement(ctx, node, env)
}
return nil
}
// eval block statement
func evalBlockStatement(ctx context.Context, block *ast.BlockStatement, env *object.Environment) object.Object {
var result object.Object
for _, statement := range block.Statements {
result = EvalContext(ctx, statement, env)
if result != nil {
rt := result.Type()
if rt == object.RETURN_VALUE_OBJ || rt == object.ERROR_OBJ {
return result
}
}
}
return result
}
// for performance, using single instance of boolean
func nativeBoolToBooleanObject(input bool) *object.Boolean {
if input {
return TRUE
}
return FALSE
}
// eval prefix expression
func evalPrefixExpression(operator string, right object.Object) object.Object {
switch operator {
case "!":
return evalBangOperatorExpression(right)
case "-":
return evalMinusPrefixOperatorExpression(right)
default:
return newError("unknown operator: %s%s", operator, right.Type())
}
}
func evalPostfixExpression(env *object.Environment, operator string, node *ast.PostfixExpression) object.Object {
switch operator {
case "++":
val, ok := env.Get(node.Token.Literal)
if !ok {
return newError("%s is unknown", node.Token.Literal)
}
switch arg := val.(type) {
case *object.Integer:
v := arg.Value
env.Set(node.Token.Literal, &object.Integer{Value: v + 1})
return arg
default:
return newError("%s is not an int", node.Token.Literal)
}
case "--":
val, ok := env.Get(node.Token.Literal)
if !ok {
return newError("%s is unknown", node.Token.Literal)
}
switch arg := val.(type) {
case *object.Integer:
v := arg.Value
env.Set(node.Token.Literal, &object.Integer{Value: v - 1})
return arg
default:
return newError("%s is not an int", node.Token.Literal)
}
default:
return newError("unknown operator: %s", operator)
}
}
func evalBangOperatorExpression(right object.Object) object.Object {
switch right {
case TRUE:
return FALSE
case FALSE:
return TRUE
case NULL:
return TRUE
default:
return FALSE
}
}
func evalMinusPrefixOperatorExpression(right object.Object) object.Object {
// Found by fuzzing
if right == nil {
return newError("null operand %v", right)
}
switch obj := right.(type) {
case *object.Integer:
return &object.Integer{Value: -obj.Value}
case *object.Float:
return &object.Float{Value: -obj.Value}
default:
return newError("unknown operator: -%s", right.Type())
}
}
func evalInfixExpression(operator string, left, right object.Object, env *object.Environment) object.Object {
// Found by fuzzing
if left == nil || right == nil {
return newError("null operand %v %v", left, right)
}
switch {
case left.Type() == object.INTEGER_OBJ && right.Type() == object.INTEGER_OBJ:
return evalIntegerInfixExpression(operator, left, right)
case left.Type() == object.FLOAT_OBJ && right.Type() == object.FLOAT_OBJ:
return evalFloatInfixExpression(operator, left, right)
case left.Type() == object.FLOAT_OBJ && right.Type() == object.INTEGER_OBJ:
return evalFloatIntegerInfixExpression(operator, left, right)
case left.Type() == object.INTEGER_OBJ && right.Type() == object.FLOAT_OBJ:
return evalIntegerFloatInfixExpression(operator, left, right)
case left.Type() == object.STRING_OBJ && right.Type() == object.STRING_OBJ:
return evalStringInfixExpression(operator, left, right)
case operator == "&&":
return nativeBoolToBooleanObject(objectToNativeBoolean(left) && objectToNativeBoolean(right))
case operator == "||":
return nativeBoolToBooleanObject(objectToNativeBoolean(left) || objectToNativeBoolean(right))
case operator == "!~":
return notMatches(left, right)
case operator == "~=":
return matches(left, right, env)
case operator == "==":
return nativeBoolToBooleanObject(left == right)
case operator == "!=":
return nativeBoolToBooleanObject(left != right)
case left.Type() == object.BOOLEAN_OBJ && right.Type() == object.BOOLEAN_OBJ:
return evalBooleanInfixExpression(operator, left, right)
case left.Type() != right.Type():
return newError("type mismatch: %s %s %s",
left.Type(), operator, right.Type())
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func matches(left, right object.Object, env *object.Environment) object.Object {
str := left.Inspect()
if right.Type() != object.REGEXP_OBJ {
return newError("regexp required for regexp-match, given %s", right.Type())
}
val := right.(*object.Regexp).Value
if right.(*object.Regexp).Flags != "" {
val = "(?" + right.(*object.Regexp).Flags + ")" + val
}
// Compile the regular expression.
r, err := regexp.Compile(val)
// Ensure it compiled
if err != nil {
return newError("error compiling regexp '%s': %s", right.Inspect(), err)
}
res := r.FindStringSubmatch(str)
// Do we have any captures?
if len(res) > 1 {
for i := 1; i < len(res); i++ {
env.Set(fmt.Sprintf("$%d", i), &object.String{Value: res[i]})
}
}
// Test if it matched
if len(res) > 0 {
return TRUE
}
return FALSE
}
func notMatches(left, right object.Object) object.Object {
str := left.Inspect()
if right.Type() != object.REGEXP_OBJ {
return newError("regexp required for regexp-match, given %s", right.Type())
}
val := right.(*object.Regexp).Value
if right.(*object.Regexp).Flags != "" {
val = "(?" + right.(*object.Regexp).Flags + ")" + val
}
// Compile the regular expression.
r, err := regexp.Compile(val)
// Ensure it compiled
if err != nil {
return newError("error compiling regexp '%s': %s", right.Inspect(), err)
}
// Test if it matched
if r.MatchString(str) {
return FALSE
}
return TRUE
}
// boolean operations
func evalBooleanInfixExpression(operator string, left, right object.Object) object.Object {
// convert the bools to strings.
l := &object.String{Value: string(left.Inspect())}
r := &object.String{Value: string(right.Inspect())}
switch operator {
case "<":
return evalStringInfixExpression(operator, l, r)
case "<=":
return evalStringInfixExpression(operator, l, r)
case ">":
return evalStringInfixExpression(operator, l, r)
case ">=":
return evalStringInfixExpression(operator, l, r)
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func evalIntegerInfixExpression(operator string, left, right object.Object) object.Object {
// Found by fuzzing
if left == nil || right == nil {
return newError("null operand %v %v", left, right)
}
leftVal := left.(*object.Integer).Value
rightVal := right.(*object.Integer).Value
switch operator {
case "+":
return &object.Integer{Value: leftVal + rightVal}
case "+=":
return &object.Integer{Value: leftVal + rightVal}
case "%":
// Found by fuzzing
if rightVal == 0 {
return newError("divide by zero")
}
return &object.Integer{Value: leftVal % rightVal}
case "**":
return &object.Integer{Value: int64(math.Pow(float64(leftVal), float64(rightVal)))}
case "-":
return &object.Integer{Value: leftVal - rightVal}
case "-=":
return &object.Integer{Value: leftVal - rightVal}
case "*":
return &object.Integer{Value: leftVal * rightVal}
case "*=":
return &object.Integer{Value: leftVal * rightVal}
case "/":
// Found by fuzzing
if rightVal == 0 {
return newError("divide by zero")
}
return &object.Integer{Value: leftVal / rightVal}
case "/=":
return &object.Integer{Value: leftVal / rightVal}
case "<":
return nativeBoolToBooleanObject(leftVal < rightVal)
case "<=":
return nativeBoolToBooleanObject(leftVal <= rightVal)
case ">":
return nativeBoolToBooleanObject(leftVal > rightVal)
case ">=":
return nativeBoolToBooleanObject(leftVal >= rightVal)
case "==":
return nativeBoolToBooleanObject(leftVal == rightVal)
case "!=":
return nativeBoolToBooleanObject(leftVal != rightVal)
case "..":
// The start and end might not be ascending, so the size
// will be the span
diff := float64(rightVal - leftVal)
len := int(math.Abs(diff)) + 1
// Step is generally +1, but if we're going to
// express the range "10..0" it will be -1 to allow
// us to count down via subtraction
var step int64
step = 1.0
if rightVal < leftVal {
step = -1.0
}
// Found by fuzzing
if len > 2048 {
return newError("impossible large range for .. operator")
}
// Make an array to hold the return value
array := make([]object.Object, len)
// Now make the range of integers, counting via the step.
i := 0
for i < len {
array[i] = &object.Integer{Value: leftVal}
leftVal += step
i++
}
return &object.Array{Elements: array}
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func evalFloatInfixExpression(operator string, left, right object.Object) object.Object {
leftVal := left.(*object.Float).Value
rightVal := right.(*object.Float).Value
switch operator {
case "+":
return &object.Float{Value: leftVal + rightVal}
case "+=":
return &object.Float{Value: leftVal + rightVal}
case "-":
return &object.Float{Value: leftVal - rightVal}
case "-=":
return &object.Float{Value: leftVal - rightVal}
case "*":
return &object.Float{Value: leftVal * rightVal}
case "*=":
return &object.Float{Value: leftVal * rightVal}
case "**":
return &object.Float{Value: math.Pow(leftVal, rightVal)}
case "/":
// Found by fuzzing
if rightVal == 0 {
return newError("divide by zero")
}
return &object.Float{Value: leftVal / rightVal}
case "/=":
return &object.Float{Value: leftVal / rightVal}
case "<":
return nativeBoolToBooleanObject(leftVal < rightVal)
case "<=":
return nativeBoolToBooleanObject(leftVal <= rightVal)
case ">":
return nativeBoolToBooleanObject(leftVal > rightVal)
case ">=":
return nativeBoolToBooleanObject(leftVal >= rightVal)
case "==":
return nativeBoolToBooleanObject(leftVal == rightVal)
case "!=":
return nativeBoolToBooleanObject(leftVal != rightVal)
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func evalFloatIntegerInfixExpression(operator string, left, right object.Object) object.Object {
leftVal := left.(*object.Float).Value
rightVal := float64(right.(*object.Integer).Value)
switch operator {
case "+":
return &object.Float{Value: leftVal + rightVal}
case "+=":
return &object.Float{Value: leftVal + rightVal}
case "-":
return &object.Float{Value: leftVal - rightVal}
case "-=":
return &object.Float{Value: leftVal - rightVal}
case "*":
return &object.Float{Value: leftVal * rightVal}
case "*=":
return &object.Float{Value: leftVal * rightVal}
case "**":
return &object.Float{Value: math.Pow(leftVal, rightVal)}
case "/":
// Found by fuzzing
if rightVal == 0 {
return newError("divide by zero")
}
return &object.Float{Value: leftVal / rightVal}
case "/=":
return &object.Float{Value: leftVal / rightVal}
case "<":
return nativeBoolToBooleanObject(leftVal < rightVal)
case "<=":
return nativeBoolToBooleanObject(leftVal <= rightVal)
case ">":
return nativeBoolToBooleanObject(leftVal > rightVal)
case ">=":
return nativeBoolToBooleanObject(leftVal >= rightVal)
case "==":
return nativeBoolToBooleanObject(leftVal == rightVal)
case "!=":
return nativeBoolToBooleanObject(leftVal != rightVal)
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func evalIntegerFloatInfixExpression(operator string, left, right object.Object) object.Object {
leftVal := float64(left.(*object.Integer).Value)
rightVal := right.(*object.Float).Value
switch operator {
case "+":
return &object.Float{Value: leftVal + rightVal}
case "+=":
return &object.Float{Value: leftVal + rightVal}
case "-":
return &object.Float{Value: leftVal - rightVal}
case "-=":
return &object.Float{Value: leftVal - rightVal}
case "*":
return &object.Float{Value: leftVal * rightVal}
case "*=":
return &object.Float{Value: leftVal * rightVal}
case "**":
return &object.Float{Value: math.Pow(leftVal, rightVal)}
case "/":
// Found by fuzzing
if rightVal == 0 {
return newError("divide by zero")
}
return &object.Float{Value: leftVal / rightVal}
case "/=":
return &object.Float{Value: leftVal / rightVal}
case "<":
return nativeBoolToBooleanObject(leftVal < rightVal)
case "<=":
return nativeBoolToBooleanObject(leftVal <= rightVal)
case ">":
return nativeBoolToBooleanObject(leftVal > rightVal)
case ">=":
return nativeBoolToBooleanObject(leftVal >= rightVal)
case "==":
return nativeBoolToBooleanObject(leftVal == rightVal)
case "!=":
return nativeBoolToBooleanObject(leftVal != rightVal)
default:
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
}
func evalStringInfixExpression(operator string, left, right object.Object) object.Object {
l := left.(*object.String)
r := right.(*object.String)
switch operator {
case "==":
return nativeBoolToBooleanObject(l.Value == r.Value)
case "!=":
return nativeBoolToBooleanObject(l.Value != r.Value)
case ">=":
return nativeBoolToBooleanObject(l.Value >= r.Value)
case ">":
return nativeBoolToBooleanObject(l.Value > r.Value)
case "<=":
return nativeBoolToBooleanObject(l.Value <= r.Value)
case "<":
return nativeBoolToBooleanObject(l.Value < r.Value)
case "+":
return &object.String{Value: l.Value + r.Value}
case "+=":
return &object.String{Value: l.Value + r.Value}
}
return newError("unknown operator: %s %s %s",
left.Type(), operator, right.Type())
}
// evalIfExpression handles an `if` expression, running the block
// if the condition matches, and running any optional else block
// otherwise.
func evalIfExpression(ctx context.Context, ie *ast.IfExpression, env *object.Environment) object.Object {
//
// Create an environment for handling regexps
//
var permit []string
i := 1
for i < 32 {
permit = append(permit, fmt.Sprintf("$%d", i))
i++
}
nEnv := object.NewTemporaryScope(env, permit)
condition := EvalContext(ctx, ie.Condition, nEnv)
if isError(condition) {
return condition
}
if isTruthy(condition) {
return EvalContext(ctx, ie.Consequence, nEnv)
} else if ie.Alternative != nil {
return EvalContext(ctx, ie.Alternative, nEnv)
} else {
return NULL
}
}
// evalTernaryExpression handles a ternary-expression. If the condition
// is true we return the contents of evaluating the true-branch, otherwise
// the false-branch. (Unlike an `if` statement we know that we always have
// an alternative/false branch.)
func evalTernaryExpression(ctx context.Context, te *ast.TernaryExpression, env *object.Environment) object.Object {
condition := EvalContext(ctx, te.Condition, env)
if isError(condition) {
return condition
}
if isTruthy(condition) {
return EvalContext(ctx, te.IfTrue, env)
}
return EvalContext(ctx, te.IfFalse, env)
}
func evalAssignStatement(ctx context.Context, a *ast.AssignStatement, env *object.Environment) (val object.Object) {
evaluated := EvalContext(ctx, a.Value, env)
if isError(evaluated) {
return evaluated
}
//
// An assignment is generally:
//
// variable = value
//
// But we cheat and reuse the implementation for:
//
// i += 4
//
// In this case we record the "operator" as "+="
//
switch a.Operator {
case "+=":
// Get the current value
current, ok := env.Get(a.Name.String())
if !ok {
return newError("%s is unknown", a.Name.String())
}
res := evalInfixExpression("+=", current, evaluated, env)
if isError(res) {
return res
}
env.Set(a.Name.String(), res)
return res
case "-=":
// Get the current value
current, ok := env.Get(a.Name.String())
if !ok {
return newError("%s is unknown", a.Name.String())
}
res := evalInfixExpression("-=", current, evaluated, env)
if isError(res) {
return res
}
env.Set(a.Name.String(), res)
return res
case "*=":
// Get the current value
current, ok := env.Get(a.Name.String())
if !ok {
return newError("%s is unknown", a.Name.String())
}
res := evalInfixExpression("*=", current, evaluated, env)
if isError(res) {
return res
}
env.Set(a.Name.String(), res)
return res
case "/=":
// Get the current value
current, ok := env.Get(a.Name.String())
if !ok {
return newError("%s is unknown", a.Name.String())
}
res := evalInfixExpression("/=", current, evaluated, env)
if isError(res) {
return res
}
env.Set(a.Name.String(), res)
return res
case "=":
// If we're running with the strict-pragma it is
// a bug to set a variable which wasn't declared (via let).
if PRAGMAS["strict"] == 1 {
_, ok := env.Get(a.Name.String())
if !ok {
fmt.Printf("Setting unknown variable '%s' is a bug under strict-pragma!\n", a.Name.String())
os.Exit(1)
}
}
env.Set(a.Name.String(), evaluated)
}
return evaluated
}
func evalSwitchStatement(ctx context.Context, se *ast.SwitchExpression, env *object.Environment) object.Object {
// Get the value.
obj := EvalContext(ctx, se.Value, env)
// Try all the choices
for _, opt := range se.Choices {
// skipping the default-case, which we'll
// handle later.
if opt.Default {
continue
}
// Look at any expression we've got in this case.
for _, val := range opt.Expr {
// Get the value of the case
out := EvalContext(ctx, val, env)
// Is it a literal match?
if obj.Type() == out.Type() &&
(obj.Inspect() == out.Inspect()) {
// Evaluate the block and return the value
blockOut := evalBlockStatement(ctx, opt.Block, env)
return blockOut
}
// Is it a regexp-match?
if out.Type() == object.REGEXP_OBJ {
m := matches(obj, out, env)
if m == TRUE {
// Evaluate the block and return the value
out := evalBlockStatement(ctx, opt.Block, env)
return out
}
}
}
}
// No match? Handle default if present
for _, opt := range se.Choices {
// skip default
if opt.Default {
out := evalBlockStatement(ctx, opt.Block, env)
return out
}
}
return nil
}
func evalForLoopExpression(ctx context.Context, fle *ast.ForLoopExpression, env *object.Environment) object.Object {
rt := &object.Boolean{Value: true}
for {
condition := EvalContext(ctx, fle.Condition, env)
if isError(condition) {
return condition
}
if isTruthy(condition) {
rt := EvalContext(ctx, fle.Consequence, env)
if !isError(rt) && (rt.Type() == object.RETURN_VALUE_OBJ || rt.Type() == object.ERROR_OBJ) {
return rt
}
} else {
break
}
}
return rt
}
// handle "for x [,y] in .."
func evalForeachExpression(ctx context.Context, fle *ast.ForeachStatement, env *object.Environment) object.Object {
// expression
val := EvalContext(ctx, fle.Value, env)
helper, ok := val.(object.Iterable)
if !ok {
return newError("%s object doesn't implement the Iterable interface", val.Type())
}
// The one/two values we're going to permit
var permit []string
permit = append(permit, fle.Ident)
if fle.Index != "" {
permit = append(permit, fle.Index)
}
// Create a new environment for the block
//
// This will allow writing EVERYTHING to the parent scope,
// except the two variables named in the permit-array
child := object.NewTemporaryScope(env, permit)
// Reset the state of any previous iteration.
helper.Reset()
// Get the initial values.
ret, idx, ok := helper.Next()
for ok {
// Set the index + name
child.Set(fle.Ident, ret)
idxName := fle.Index
if idxName != "" {
child.Set(fle.Index, idx)
}
// Eval the block
rt := EvalContext(ctx, fle.Body, child)
//
// If we got an error/return then we handle it.
//
if !isError(rt) && (rt.Type() == object.RETURN_VALUE_OBJ || rt.Type() == object.ERROR_OBJ) {
return rt
}
// Loop again
ret, idx, ok = helper.Next()
}
return &object.Null{}
}
func isTruthy(obj object.Object) bool {
switch obj {
case NULL:
return false
case TRUE:
return true
case FALSE:
return false
default:
return true
}
}
func evalProgram(ctx context.Context, program *ast.Program, env *object.Environment) object.Object {
var result object.Object
for _, statement := range program.Statements {
result = EvalContext(ctx, statement, env)
switch result := result.(type) {
case *object.ReturnValue:
return result.Value
case *object.Error:
return result
}
}
return result
}
func newError(format string, a ...interface{}) *object.Error {
return &object.Error{Message: fmt.Sprintf(format, a...)}
}
func isError(obj object.Object) bool {
if obj != nil {
return obj.Type() == object.ERROR_OBJ
}
return false
}
func evalIdentifier(node *ast.Identifier, env *object.Environment) object.Object {
if val, ok := env.Get(node.Value); ok {
return val
}
if builtin, ok := builtins[node.Value]; ok {
return builtin
}
fmt.Fprintf(os.Stderr, "identifier not found: %s\n", node.Value)
if PRAGMAS["strict"] == 1 {
os.Exit(1)
}
return newError("identifier not found: " + node.Value)
}
func evalExpression(ctx context.Context, exps []ast.Expression, env *object.Environment) []object.Object {