-
Notifications
You must be signed in to change notification settings - Fork 1
/
Monkey.java
2847 lines (2488 loc) · 82.4 KB
/
Monkey.java
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
/*
Simple implementation of The Monkey Programming Language
interpreter in Java
Monkey.java
(c) Noprianto <[email protected]>, 2019
Website: nopri.github.io
License: MIT
Version: 0.6
Minimum Java version: 5.0
Based on monkey.py
(c) Noprianto <[email protected]>, 2019
monkey.py is based on code (in Go programming language) in book:
WRITING AN INTERPRETER IN GO
Note: INTEGER type in Monkey.java is implemented using java.math.BigDecimal.
(since version 0.5)
How to compile Monkey.java:
javac Monkey.java -d .
or
Use compiled Monkey.jar (please download it from my website)
How to use Monkey.java:
- Standalone
- No command line argument: interactive
java monkey.Monkey
or
java -jar Monkey.jar
Monkey.java 0.6
Press ENTER to quit
>> let hello = "Hello World"
>> hello
"Hello World"
>>
- Command line argument: try to interpret as file
java monkey.Monkey test.monkey
or
java -jar Monkey.jar test.monkey
If exception occurred: interpret the argument as monkey code
java monkey.Monkey "puts(1,2,3)"
or
java -jar Monkey.jar "puts(1,2,3)"
1
2
3
null
- Library
Please see the example below
In Monkey.java, it is possible to set initial environment
when the interpreter is started. This allows integration
with external applications. For example:
code (Test.java):
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import java.util.HashMap;
import java.util.Map;
import monkey.Monkey;
public class Test {
public static void main(String[] args) {
String result = "";
Map<String, Object> map = new HashMap<String, Object>();
map.put("hello", "Hello, World");
map.put("test", true);
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
try {
PrintStream output = new PrintStream(outputStream);
Monkey.evaluatorString("puts(hello); puts(test); ERROR;",
Monkey.environmentFromMap(map), output);
result = outputStream.toString();
} catch (Exception e) {
}
System.out.println(result);
}
}
compile:
javac -cp Monkey.jar Test.java
output:
java -cp Monkey.jar:. Test
Hello, World
true
ERROR: identifier not found: ERROR
*/
package monkey;
import java.io.File;
import java.io.PrintStream;
import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
class MonkeyToken {
public static final String ILLEGAL = "ILLEGAL";
public static final String EOF = "EOF";
public static final String IDENT = "IDENT";
public static final String INT = "INT";
public static final String ASSIGN = "=";
public static final String PLUS = "+";
public static final String MINUS = "-";
public static final String BANG = "!";
public static final String ASTERISK = "*";
public static final String SLASH = "/";
public static final String LT = "<";
public static final String GT = ">";
public static final String COMMA = ",";
public static final String SEMICOLON = ";";
public static final String LPAREN = "(";
public static final String RPAREN = ")";
public static final String LBRACE = "{";
public static final String RBRACE = "}";
public static final String FUNCTION = "FUNCTION";
public static final String LET = "LET";
public static final String TRUE = "true";
public static final String FALSE = "false";
public static final String IF = "if";
public static final String ELSE = "else";
public static final String RETURN = "return";
public static final String EQ = "==";
public static final String NOT_EQ = "!=";
public static final String STRING = "STRING";
public static final String LBRACKET = "[";
public static final String RBRACKET = "]";
public static final String COLON = ":";
private String type = "";
private String literal = "";
public MonkeyToken() {
}
public MonkeyToken(String type, String literal) {
this.type = type;
this.literal = literal;
}
public String getType() {
return type;
}
public String getLiteral() {
return literal;
}
public void setType(String type) {
this.type = type;
}
public void setLiteral(String literal) {
this.literal = literal;
}
}
class MonkeyLexer {
public static final Map<String, String> KEYWORDS;
public static final String VALID_IDENTS = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_";
public static final String VALID_NUMBERS = "0123456789";
public static final String WHITESPACES = " \t\r\n";
static {
KEYWORDS = new HashMap<String, String>();
KEYWORDS.put("fn", MonkeyToken.FUNCTION);
KEYWORDS.put("let", MonkeyToken.LET);
KEYWORDS.put("true", MonkeyToken.TRUE);
KEYWORDS.put("false", MonkeyToken.FALSE);
KEYWORDS.put("if", MonkeyToken.IF);
KEYWORDS.put("else", MonkeyToken.ELSE);
KEYWORDS.put("return", MonkeyToken.RETURN);
}
private String input = "";
private int position = 0;
private int read = 0;
private char ch = 0;
public MonkeyLexer() {
}
public MonkeyLexer(String input, int position, int read, char ch) {
this.input = input;
this.position = position;
this.read = read;
this.ch = ch;
}
void readChar() {
if (read >= input.length()) {
ch = 0;
} else {
ch = input.charAt(read);
}
position = read;
read += 1;
}
char peekChar() {
if (read >= input.length()) {
return 0;
} else {
return input.charAt(read);
}
}
MonkeyToken newToken(MonkeyToken token, String type, char ch) {
token.setType(type);
token.setLiteral(String.valueOf(ch));
return token;
}
MonkeyToken newToken(MonkeyToken token, String type, String ch) {
token.setType(type);
token.setLiteral(ch);
return token;
}
MonkeyToken nextToken() {
MonkeyToken t = new MonkeyToken();
this.skipWhitespace();
if (ch == '=') {
if (peekChar() == '=') {
String c = String.valueOf(ch);
readChar();
t = newToken(t, MonkeyToken.EQ, c + String.valueOf(ch));
} else {
t = newToken(t, MonkeyToken.ASSIGN, ch);
}
} else if (ch == '+') {
t = newToken(t, MonkeyToken.PLUS, ch);
} else if (ch == '-') {
t = newToken(t, MonkeyToken.MINUS, ch);
} else if (ch == '!') {
if (peekChar() == '=') {
String c = String.valueOf(ch);
readChar();
t = newToken(t, MonkeyToken.NOT_EQ, c + String.valueOf(ch));
} else {
t = newToken(t, MonkeyToken.BANG, ch);
}
} else if (ch == '/') {
t = newToken(t, MonkeyToken.SLASH, ch);
} else if (ch == '*') {
t = newToken(t, MonkeyToken.ASTERISK, ch);
} else if (ch == '<') {
t = newToken(t, MonkeyToken.LT, ch);
} else if (ch == '>') {
t = newToken(t, MonkeyToken.GT, ch);
} else if (ch == ';') {
t = newToken(t, MonkeyToken.SEMICOLON, ch);
} else if (ch == '(') {
t = newToken(t, MonkeyToken.LPAREN, ch);
} else if (ch == ')') {
t = newToken(t, MonkeyToken.RPAREN, ch);
} else if (ch == ',') {
t = newToken(t, MonkeyToken.COMMA, ch);
} else if (ch == '+') {
t = newToken(t, MonkeyToken.PLUS, ch);
} else if (ch == '{') {
t = newToken(t, MonkeyToken.LBRACE, ch);
} else if (ch == '}') {
t = newToken(t, MonkeyToken.RBRACE, ch);
} else if (ch == 0) {
t.setLiteral("");
t.setType(MonkeyToken.EOF);
} else if (ch == '"') {
t.setLiteral(readString());
t.setType(MonkeyToken.STRING);
} else if (ch == '[') {
t = newToken(t, MonkeyToken.LBRACKET, ch);
} else if (ch == ']') {
t = newToken(t, MonkeyToken.RBRACKET, ch);
} else if (ch == ':') {
t = newToken(t, MonkeyToken.COLON, ch);
} else {
if (isLetter(ch)) {
t.setLiteral(readIdent());
t.setType(lookUpIdent(t.getLiteral()));
return t;
} else if (isDigit(ch)) {
t.setLiteral(readNumber());
t.setType(MonkeyToken.INT);
return t;
} else {
t = newToken(t, MonkeyToken.ILLEGAL, ch);
}
}
readChar();
return t;
}
String readIdent() {
int pos = position;
while (true) {
if (ch == 0) {
break;
}
boolean test = isLetter(ch);
if (!test) {
break;
}
readChar();
}
String ret = input.substring(pos, position);
return ret;
}
String readNumber() {
int pos = position;
while (true) {
if (ch == 0) {
break;
}
boolean test = isDigit(ch);
if (!test) {
break;
}
readChar();
}
String ret = input.substring(pos, position);
return ret;
}
String readString() {
int pos = position + 1;
while (true) {
readChar();
if (ch == '"' || ch == 0) {
break;
}
}
String ret = input.substring(pos, position);
return ret;
}
String lookUpIdent(String s) {
String ret = KEYWORDS.get(s);
if (ret != null) {
return ret;
}
return MonkeyToken.IDENT;
}
boolean isLetter(char c) {
return VALID_IDENTS.indexOf(c) > -1;
}
boolean isDigit(char c) {
return VALID_NUMBERS.indexOf(c) > -1;
}
void skipWhitespace() {
while (WHITESPACES.indexOf(ch) > -1) {
readChar();
}
}
void setInput(String input) {
this.input = input;
}
public static MonkeyLexer newInstance(String s) {
MonkeyLexer l = new MonkeyLexer();
l.setInput(s);
l.readChar();
return l;
}
}
class MonkeyNode {
protected MonkeyToken token;
public MonkeyNode() {
}
public void setToken(MonkeyToken token) {
this.token = token;
}
public String tokenLiteral() {
return token.getLiteral();
}
@Override
public String toString() {
return "";
}
}
class MonkeyStatement extends MonkeyNode {
public MonkeyStatement() {
}
public void statementNode() {
}
}
class MonkeyExpression extends MonkeyNode {
public MonkeyExpression() {
}
public void expressionNode() {
}
}
class MonkeyIdentifier extends MonkeyExpression {
private String value = "";
public MonkeyIdentifier(String value) {
this.value = value;
this.token = new MonkeyToken();
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
@Override
public String toString() {
return value;
}
}
class MonkeyLetStatement extends MonkeyStatement {
private MonkeyIdentifier name;
private MonkeyExpression value;
public MonkeyLetStatement() {
this.token = new MonkeyToken();
this.name = new MonkeyIdentifier("");
this.value = new MonkeyExpression();
}
public MonkeyExpression getValue() {
return value;
}
public MonkeyIdentifier getName() {
return name;
}
public void setName(MonkeyIdentifier name) {
this.name = name;
}
public void setValue(MonkeyExpression value) {
this.value = value;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append(tokenLiteral());
ret.append(" ");
ret.append(name);
ret.append(" = ");
//
if (value != null) {
ret.append(value);
}
//
ret.append(";");
return ret.toString();
}
}
class MonkeyReturnStatement extends MonkeyStatement {
private MonkeyExpression returnValue;
public MonkeyReturnStatement() {
this.token = new MonkeyToken();
this.returnValue = new MonkeyExpression();
}
public MonkeyExpression getReturnValue() {
return returnValue;
}
public void setReturnValue(MonkeyExpression returnValue) {
this.returnValue = returnValue;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append(tokenLiteral());
ret.append(" ");
if (returnValue != null) {
ret.append(returnValue);
}
ret.append(";");
return ret.toString();
}
}
class MonkeyExpressionStatement extends MonkeyStatement {
private MonkeyExpression expression;
public MonkeyExpressionStatement() {
this.token = new MonkeyToken();
this.expression = new MonkeyExpression();
}
public MonkeyExpression getExpression() {
return expression;
}
public void setExpression(MonkeyExpression expression) {
this.expression = expression;
}
@Override
public String toString() {
if (expression != null) {
return expression.toString();
}
return "";
}
}
class MonkeyBlockStatement extends MonkeyStatement {
private List<MonkeyStatement> statements;
public MonkeyBlockStatement() {
this.token = new MonkeyToken();
this.statements = new ArrayList<MonkeyStatement>();
}
public List<MonkeyStatement> getStatements() {
return statements;
}
public boolean isEmpty() {
return statements.isEmpty();
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append(String.format("%s{%s", Monkey.LINESEP, Monkey.LINESEP));
//
for(MonkeyStatement s: statements) {
ret.append(String.format("%s;%s", s.toString(), Monkey.LINESEP));
}
//
ret.append(String.format("}%s", Monkey.LINESEP));
return ret.toString();
}
}
class MonkeyIntegerLiteral extends MonkeyExpression {
private BigDecimal value;
public MonkeyIntegerLiteral(BigDecimal value) {
this.token = new MonkeyToken();
this.value = value;
}
public BigDecimal getValue() {
return value;
}
@Override
public String toString() {
return token.getLiteral();
}
}
class MonkeyStringLiteral extends MonkeyExpression {
private String value;
public MonkeyStringLiteral() {
this.token = new MonkeyToken();
this.value = "";
}
public MonkeyStringLiteral(String value) {
this.token = new MonkeyToken();
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return token.getLiteral();
}
}
class MonkeyFunctionLiteral extends MonkeyExpression {
private List<MonkeyIdentifier> parameters;
private MonkeyBlockStatement body;
public MonkeyFunctionLiteral() {
this.token = new MonkeyToken();
this.parameters = new ArrayList<MonkeyIdentifier>();
this.body = new MonkeyBlockStatement();
}
public List<MonkeyIdentifier> getParameters() {
return parameters;
}
public MonkeyBlockStatement getBody() {
return body;
}
public void setParameters(List<MonkeyIdentifier> parameters) {
this.parameters = parameters;
}
public void setBody(MonkeyBlockStatement body) {
this.body = body;
}
@Override
public String toString() {
List<String> params = new ArrayList<String>();
for (MonkeyIdentifier p: parameters) {
params.add(p.toString());
}
//
StringBuilder ret = new StringBuilder();
ret.append(tokenLiteral());
ret.append("(");
ret.append(MonkeyUtil.stringJoin(", ", params));
ret.append(")");
ret.append(body.toString());
//
return ret.toString();
}
}
class MonkeyCallExpression extends MonkeyExpression {
private MonkeyExpression function;
private List<MonkeyExpression> arguments;
public MonkeyCallExpression() {
this.token = new MonkeyToken();
this.function = new MonkeyExpression();
this.arguments = new ArrayList<MonkeyExpression>();
}
public MonkeyExpression getFunction() {
return function;
}
public List<MonkeyExpression> getArguments() {
return arguments;
}
public void setFunction(MonkeyExpression function) {
this.function = function;
}
public void setArguments(List<MonkeyExpression> arguments) {
this.arguments = arguments;
}
@Override
public String toString() {
List<String> args = new ArrayList<String>();
for (MonkeyExpression a: arguments) {
args.add(a.toString());
}
//
StringBuilder ret = new StringBuilder();
ret.append(function.toString());
ret.append("(");
ret.append(MonkeyUtil.stringJoin(", ", args));
ret.append(")");
//
return ret.toString();
}
}
class MonkeyBoolean extends MonkeyExpression {
private boolean value;
public MonkeyBoolean(boolean value) {
this.token = new MonkeyToken();
this.value = value;
}
public boolean getValue() {
return value;
}
@Override
public String toString() {
return token.getLiteral();
}
}
class MonkeyPrefixExpression extends MonkeyExpression {
private String operator;
private MonkeyExpression right;
public MonkeyPrefixExpression() {
this.token = new MonkeyToken();
this.operator = "";
this.right = new MonkeyExpression();
}
public void setOperator(String operator) {
this.operator = operator;
}
public MonkeyExpression getRight() {
return right;
}
public String getOperator() {
return operator;
}
public void setRight(MonkeyExpression right) {
this.right = right;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append("(");
ret.append(operator);
ret.append(right.toString());
ret.append(")");
//
return ret.toString();
}
}
class MonkeyInfixExpression extends MonkeyExpression {
private MonkeyExpression left;
private String operator;
private MonkeyExpression right;
public MonkeyInfixExpression() {
this.token = new MonkeyToken();
this.left = new MonkeyExpression();
this.operator = "";
this.right = new MonkeyExpression();
}
public MonkeyExpression getLeft() {
return left;
}
public MonkeyExpression getRight() {
return right;
}
public String getOperator() {
return operator;
}
public void setOperator(String operator) {
this.operator = operator;
}
public void setLeft(MonkeyExpression left) {
this.left = left;
}
public void setRight(MonkeyExpression right) {
this.right = right;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append("(");
ret.append(left.toString());
ret.append(" ");
ret.append(operator);
ret.append(" ");
ret.append(right.toString());
ret.append(")");
//
return ret.toString();
}
}
class MonkeyIfExpression extends MonkeyExpression {
private MonkeyExpression condition;
private MonkeyBlockStatement consequence;
private MonkeyBlockStatement alternative;
public MonkeyIfExpression() {
this.token = new MonkeyToken();
this.condition = new MonkeyExpression();
this.consequence = new MonkeyBlockStatement();
this.alternative = new MonkeyBlockStatement();
}
public void setCondition(MonkeyExpression condition) {
this.condition = condition;
}
public void setConsequence(MonkeyBlockStatement consequence) {
this.consequence = consequence;
}
public void setAlternative(MonkeyBlockStatement alternative) {
this.alternative = alternative;
}
public MonkeyExpression getCondition() {
return condition;
}
public MonkeyBlockStatement getConsequence() {
return consequence;
}
public MonkeyBlockStatement getAlternative() {
return alternative;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append("if");
ret.append(condition.toString());
ret.append(" ");
ret.append(consequence.toString());
//
if (!alternative.isEmpty()) {
ret.append(" else ");
ret.append(alternative.toString());
}
//
return ret.toString();
}
}
class MonkeyArrayLiteral extends MonkeyExpression {
private List<MonkeyExpression> elements;
public MonkeyArrayLiteral() {
this.token = new MonkeyToken();
this.elements = new ArrayList<MonkeyExpression>();
}
public List<MonkeyExpression> getElements() {
return elements;
}
public void setElements(List<MonkeyExpression> elements) {
this.elements = elements;
}
@Override
public String toString() {
List<String> elements = new ArrayList<String>();
for (MonkeyExpression e: this.elements) {
elements.add(e.toString());
}
//
StringBuilder ret = new StringBuilder();
ret.append("[");
ret.append(MonkeyUtil.stringJoin(", ", elements));
ret.append("]");
//
return ret.toString();
}
}
class MonkeyIndexExpression extends MonkeyExpression {
private MonkeyExpression left;
private MonkeyExpression index;
public MonkeyIndexExpression() {
this.token = new MonkeyToken();
this.left = new MonkeyExpression();
this.index = new MonkeyExpression();
}
public MonkeyExpression getLeft() {
return left;
}
public MonkeyExpression getIndex() {
return index;
}
public void setLeft(MonkeyExpression left) {
this.left = left;
}
public void setIndex(MonkeyExpression index) {
this.index = index;
}
@Override
public String toString() {
StringBuilder ret = new StringBuilder();
ret.append("(");
ret.append(left.toString());
ret.append("[");
ret.append(index.toString());
ret.append("])");
//
return ret.toString();
}
}
class MonkeyHashLiteral extends MonkeyExpression {
private Map<MonkeyExpression, MonkeyExpression> pairs;
public MonkeyHashLiteral() {
this.token = new MonkeyToken();
this.pairs = new HashMap<MonkeyExpression, MonkeyExpression>();
}
public void setPairs(Map<MonkeyExpression, MonkeyExpression> pairs) {
this.pairs = pairs;
}
public Map<MonkeyExpression, MonkeyExpression> getPairs() {
return pairs;
}
@Override
public String toString() {
List<String> pairs = new ArrayList<String>();
for (MonkeyExpression k: this.pairs.keySet()) {
MonkeyExpression v = this.pairs.get(k);
pairs.add(String.format("%s:%s", k.toString(), v.toString()));
}
//
StringBuilder ret = new StringBuilder();
ret.append("{");
ret.append(MonkeyUtil.stringJoin(", ", pairs));
ret.append("}");
//
return ret.toString();
}
}
class MonkeyParser {
public static final int LOWEST = 1;
public static final int EQUALS = 2;
public static final int LESSGREATER = 3;
public static final int SUM = 4;
public static final int PRODUCT = 5;
public static final int PREFIX = 6;
public static final int CALL = 7;
public static final int INDEX = 8;
public static final Map<String, Integer> PRECEDENCES;
static {
PRECEDENCES = new HashMap<String, Integer>();
PRECEDENCES.put(MonkeyToken.LPAREN, CALL);
PRECEDENCES.put(MonkeyToken.EQ, EQUALS);
PRECEDENCES.put(MonkeyToken.NOT_EQ, EQUALS);
PRECEDENCES.put(MonkeyToken.LT, LESSGREATER);
PRECEDENCES.put(MonkeyToken.GT, LESSGREATER);
PRECEDENCES.put(MonkeyToken.PLUS, SUM);
PRECEDENCES.put(MonkeyToken.MINUS, SUM);
PRECEDENCES.put(MonkeyToken.SLASH, PRODUCT);
PRECEDENCES.put(MonkeyToken.ASTERISK, PRODUCT);
PRECEDENCES.put(MonkeyToken.LBRACKET, INDEX);
}
private MonkeyLexer lexer;
private MonkeyToken curToken;
private MonkeyToken peekToken;
private List<String> errors;
private Map<String, MonkeyParserPrefixCallable> prefixParseFns;
private Map<String, MonkeyParserInfixCallable> infixParseFns;
class ParseIdentifer implements MonkeyParserPrefixCallable {
public MonkeyExpression call() {
MonkeyIdentifier ret = new MonkeyIdentifier("");
ret.setToken(curToken);