This repository was archived by the owner on Jun 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParser.java
More file actions
1381 lines (1210 loc) · 44.8 KB
/
Parser.java
File metadata and controls
1381 lines (1210 loc) · 44.8 KB
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
import java.io.File;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
public class Parser {
public Token root;
public Token current;
public SyntaxError error;
public DocumentBuilderFactory docFactory;
public DocumentBuilder docBuilder;
public Document doc;
public String fileName;
public Node SyntaxTree;
Parser(Token r, String fN) {
fileName = fN;
root = r;
current = root;
try {
docFactory = DocumentBuilderFactory.newInstance();
docBuilder = docFactory.newDocumentBuilder();
doc = docBuilder.newDocument();
} catch (ParserConfigurationException pce) {
pce.printStackTrace();
}
}
public void parse() {
try {
SPLProgr();
} catch (SyntaxError e) {
System.out.println("SYNTAX ERROR");
System.out.println(e.getMessage());
return;
}
/*
try {
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
DOMSource source = new DOMSource(doc);
StreamResult output = new StreamResult(new File(fileName + ".xml"));
transformer.transform(source, output);
System.out.println("File saved!");
} catch (TransformerException tfe) {
tfe.printStackTrace();
}*/
}
// SPLProgr → ProcDefs main { Algorithm halt ; VarDecl }
public void SPLProgr() throws SyntaxError {
Element element = doc.createElement("SPLProgr");
doc.appendChild(element);
SyntaxTree = new Node("SPLProgr");
// ProcDefs check
if (current.value.equals("proc")) {
ProcDefs(element, SyntaxTree);
}
// main check
if (!current.value.equals("main")) {
throw new SyntaxError("Missing main as beginning keyword on line " + current.line + ".");
}
element.appendChild(doc.createTextNode("main"));
SyntaxTree.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing { after main on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("Missing { after main on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
SyntaxTree.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing the keyword halt on line " + current.line + ".");
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, SyntaxTree);
break;
case "do":
Algorithm(element, SyntaxTree);
break;
case "while":
Algorithm(element, SyntaxTree);
break;
case "call":
Algorithm(element, SyntaxTree);
break;
case "output":
Algorithm(element, SyntaxTree);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, SyntaxTree);
}
}
// halt check
if (!current.value.equals("halt")) {
throw new SyntaxError("Missing halt after main on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
SyntaxTree.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ; after halt on line " + current.line + ".");
}
// ; check
if (!current.value.equals(";")) {
throw new SyntaxError("Missing ; after halt on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
SyntaxTree.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } after halt's ; on line " + current.line + ".");
}
// VarDecl check
switch (current.value) {
case "arr":
VarDecl(element, SyntaxTree);
break;
case "num":
VarDecl(element, SyntaxTree);
break;
case "bool":
VarDecl(element, SyntaxTree);
break;
case "string":
VarDecl(element, SyntaxTree);
break;
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError("Missing } after halt's ; on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
SyntaxTree.addChild(new Node(current.value, current.type));
if (hasNext()) {
throw new SyntaxError("No more characters allowed after main definition on line " + current.line + ".");
}
}
// ProcDefs → // nothing (nullable)
// ProcDefs → PD , ProcDefs
public void ProcDefs(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("ProcDefs");
connect.appendChild(element);
Node c = new Node("ProcDefs");
p.addChild(c);
PD(element, c);
if (!current.value.equals(",")) {
throw new SyntaxError("missing a comma (,) after a proc definition on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
current = current.next;
} else {
throw new SyntaxError("Missing main as beginning keyword on line " + current.line + ".");
}
// ProcDefs
if (current.value.equals("proc")) {
ProcDefs(connect, p);
}
}
// PD → proc userDefinedName { ProcDefs Algorithm return ; VarDecl }
public void PD(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("PD");
connect.appendChild(element);
Node c = new Node("PD");
p.addChild(c);
String userDefinedName = "";
// proc check
if (!current.value.equals("proc")) {
throw new SyntaxError("missing a proc declaration on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
current = current.next;
} else {
throw new SyntaxError("missing userDefinedName for proc on line " + current.line + ".");
}
// userDefinedName check
if (!current.type.equals("userDefinedName")) {
throw new SyntaxError("missing a userDefinedName on line " + current.line + ".");
}
//element.appendChild(doc.createTextNode(current.value));
userDefinedName = current.value;
addCustomText(element, current.type, current.value, c);
if (hasNext()) {
current = current.next;
} else {
throw new SyntaxError("missing a { after " + current.value + " on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("missing a { after " + current.value + " on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
current = current.next;
} else {
throw new SyntaxError("missing a return after { on line " + current.line + ".");
}
// ProcDefs check
if (current.value.equals("proc")) {
ProcDefs(element, c);
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, c);
break;
case "do":
Algorithm(element, c);
break;
case "while":
Algorithm(element, c);
break;
case "call":
Algorithm(element, c);
break;
case "output":
Algorithm(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, c);
}
}
// return check
if (!current.value.equals("return")) {
throw new SyntaxError("Missing return for " + userDefinedName + " on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError(
"Missing ; after return on line for " + userDefinedName + " on line " + current.line + ".");
}
// ; check
if (!current.value.equals(";")) {
throw new SyntaxError(
"Missing ; after return on line for " + userDefinedName + " on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError(
"Missing } to complete " + userDefinedName + " declaration on line " + current.line + ".");
}
// VarDecl check
switch (current.value) {
case "arr":
VarDecl(element, c);
break;
case "num":
VarDecl(element, c);
break;
case "bool":
VarDecl(element, c);
break;
case "string":
VarDecl(element, c);
break;
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError(
"Missing } after return on line for " + userDefinedName + " on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("No main declaration after " + userDefinedName + " on line " + current.line + ".");
}
}
// Algorithm → // nothing (nullable)
// Algorithm → Instr ; Algorithm
public void Algorithm(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Algorithm");
connect.appendChild(element);
Node c = new Node("Algorithm");
p.addChild(c);
Instr(element, c);
if (!current.value.equals(";")) {
throw new SyntaxError("Missing ; on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
// throw new SyntaxError("Missing a halt or return on line " + current.line +
// ".");
return;
}
switch (current.value) {
case "if":
Algorithm(connect, p);
break;
case "do":
Algorithm(connect, p);
break;
case "while":
Algorithm(connect, p);
break;
case "call":
Algorithm(connect, p);
break;
case "output":
Algorithm(connect, p);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(connect, p);
}
}
}
// Instr → Assign
// Instr → Branch
// Instr → Loop
// Instr → PCall
public void Instr(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Instr");
connect.appendChild(element);
Node c = new Node("Instr");
p.addChild(c);
switch (current.value) {
case "if":
Branch(element, c);
break;
case "do":
Loop(element, c);
break;
case "while":
Loop(element, c);
break;
case "call":
PCall(element, c);
break;
case "output":
Assign(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Assign(element, c);
}
}
}
// Assign → LHS := Expr
public void Assign(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Assign");
connect.appendChild(element);
Node c = new Node("Assign");
p.addChild(c);
LHS(element, c);
// := check
if (!current.value.equals(":=")) {
throw new SyntaxError("Missing := for assignment on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing an expression for assignment on line " + current.line + ".");
}
Expr(element, c);
}
// Branch → if (Expr) then { Algorithm } Alternat
public void Branch(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Branch");
connect.appendChild(element);
Node c = new Node("Branch");
p.addChild(c);
// if check
if (!current.value.equals("if")) {
throw new SyntaxError("Missing if on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ( after if on line " + current.line + ".");
}
// ( check
if (!current.value.equals("(")) {
throw new SyntaxError("Missing ( after if on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing an Expr type if ( on line " + current.line + ".");
}
Expr(element, c);
// ) check
if (!current.value.equals(")")) {
throw new SyntaxError("Missing ) after Expr type on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing then after if condition on line " + current.line + ".");
}
// then check
if (!current.value.equals("then")) {
throw new SyntaxError("Missing then after if condition on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing { after then on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("Missing { after then on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } for then completion on line " + current.line + ".");
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, c);
break;
case "do":
Algorithm(element, c);
break;
case "while":
Algorithm(element, c);
break;
case "call":
Algorithm(element, c);
break;
case "output":
Algorithm(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, c);
}
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError("Missing } for then completion on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
// throw new SyntaxError("Missing } for then completion on line " + current.line
// + ".");
return;
}
if (current.value.equals("else")) {
Alternat(element, c);
}
}
// Alternat → // nothing (nullable)
// Alternat → else { Algorithm }
public void Alternat(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Alternat");
connect.appendChild(element);
Node c = new Node("Alternat");
p.addChild(c);
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing { after else on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("Missing { after else on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } for else completion on line " + current.line + ".");
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, c);
break;
case "do":
Algorithm(element, c);
break;
case "while":
Algorithm(element, c);
break;
case "call":
Algorithm(element, c);
break;
case "output":
Algorithm(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, c);
}
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError("Missing } for then completion on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
// throw new SyntaxError("Missing } for then completion on line " + current.line
// + ".");
return;
}
}
// Loop → do { Algorithm } until (Expr)
// Loop → while (Expr) do { Algorithm }
public void Loop(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Loop");
connect.appendChild(element);
Node c = new Node("Loop");
p.addChild(c);
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
switch (current.value) {
case "do":
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } for then completion on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("Missing { after do on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } for do completion on line " + current.line + ".");
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, c);
break;
case "do":
Algorithm(element, c);
break;
case "while":
Algorithm(element, c);
break;
case "call":
Algorithm(element, c);
break;
case "output":
Algorithm(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, c);
}
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError("Missing } for do completion on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing until keyword after } on line " + current.line + ".");
}
// until
if (!current.value.equals("until")) {
throw new SyntaxError("Missing until keyword after } on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ( after until on line " + current.line + ".");
}
// (
if (!current.value.equals("(")) {
throw new SyntaxError("Missing ( after until on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ) to complete until on line " + current.line + ".");
}
// Expr
Expr(element, c);
// )
if (!current.value.equals(")")) {
throw new SyntaxError("Missing ) to complete until on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
return;
}
break;
case "while":
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ( after while on line " + current.line + ".");
}
// (
if (!current.value.equals("(")) {
throw new SyntaxError("Missing ( after while on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing ) to complete while on line " + current.line + ".");
}
// Expr
Expr(element, c);
// )
if (!current.value.equals(")")) {
throw new SyntaxError("Missing ) to complete until on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing do after } on line " + current.line + ".");
}
// do
if (!current.value.equals("do")) {
throw new SyntaxError("Missing do after } on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing { after do on line " + current.line + ".");
}
// { check
if (!current.value.equals("{")) {
throw new SyntaxError("Missing { after do on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing } for do completion on line " + current.line + ".");
}
// Algorithm check
switch (current.value) {
case "if":
Algorithm(element, c);
break;
case "do":
Algorithm(element, c);
break;
case "while":
Algorithm(element, c);
break;
case "call":
Algorithm(element, c);
break;
case "output":
Algorithm(element, c);
break;
default:
if (current.type.equals("userDefinedName")) {
Algorithm(element, c);
}
}
// } check
if (!current.value.equals("}")) {
throw new SyntaxError("Missing } for do completion on line " + current.line + ".");
}
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
return;
}
break;
}
}
// LHS → output
// LHS → userDefinedName Field
public void LHS(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("LHS");
connect.appendChild(element);
Node c = new Node("LHS");
p.addChild(c);
if (current.value.equals("output")) {
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
}
return;
}
if (current.type.equals("userDefinedName")) {
//addCustomText(element, current.type, current.value);
Token temp;
if (hasNext()) {
temp = current.next;
} else {
Var(element, c);
return;
}
if (temp.value.equals("[")) {
Field(element, c);
} else {
Var(element, c);
}
} else {
throw new SyntaxError("Incorrect LHS type (" + current.value + ") on line: " + current.line);
}
}
// Expr → Const
// Expr → userDefinedName Field
// Expr → UnOp
// Expr → BinOp
public void Expr(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Expr");
connect.appendChild(element);
Node c = new Node("Expr");
p.addChild(c);
// Const
if (current.value.equals("true") || current.value.equals("false")) {
Const(element, c);
return;
}
if (current.type.equals("Number") || current.type.equals("ShortString")) {
Const(element, c);
return;
}
// UnOp
switch (current.value) {
case "input":
UnOp(element, c);
return;
case "not":
UnOp(element, c);
return;
}
// BinOp
switch (current.value) {
case "and":
BinOp(element, c);
return;
case "or":
BinOp(element, c);
return;
case "eq":
BinOp(element, c);
return;
case "larger":
BinOp(element, c);
return;
case "add":
BinOp(element, c);
return;
case "sub":
BinOp(element, c);
return;
case "mult":
BinOp(element, c);
return;
}
// userDefinedName VarFieldChoice
if (current.type.equals("userDefinedName")) {
//addCustomText(element, current.type, current.value);
Token temp;
if (hasNext()) {
temp = current.next;
} else {
Var(element, c);
return;
}
if (temp.value.equals("[")) {
Field(element, c);
} else {
Var(element, c);
}
} else {
throw new SyntaxError("Incorrect Expr type (" + current.value + ") on line: " + current.line);
}
}
// PCall → call userDefinedName
public void PCall(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("PCall");
connect.appendChild(element);
Node c = new Node("PCall");
p.addChild(c);
element.appendChild(doc.createTextNode(current.value));
c.addChild(new Node(current.value, current.type));
if (hasNext()) {
goToNext();
} else {
throw new SyntaxError("Missing userDefinedName for call on line " + current.line);
}
if (!current.type.equals("userDefinedName")) {
throw new SyntaxError(current.value + "is not a userDefinedName on line " + current.line);
}
addCustomText(element, current.type, current.value, c);
if (hasNext()) {
goToNext();
} else {
return;
}
}
// Var → userDefinedName
public void Var(Element connect, Node p) throws SyntaxError {
Element element = doc.createElement("Var");
connect.appendChild(element);
Node c = new Node("Var");
p.addChild(c);
if (!current.type.equals("userDefinedName")) {
throw new SyntaxError(current.value + " is not of type userDefinedName on line " + current.line + ".");
}
addCustomText(element, current.type, current.value, c);
if (hasNext()) {
goToNext();
} else {
return;
}
}
// Field → null // new
// Field → [FieldIndex]