-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser.c
executable file
·834 lines (763 loc) · 20.8 KB
/
parser.c
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
/*
File name: parser.c
Compiler: MS Visual Studio 2012
Author: Alec Pinsent 040726224
Josh Tate 040713210
Course: CST 8152 – Compilers, Lab Section: 011
Assignment: 04
Date: 13/04/2014
Professor: Sv. Ranev
Purpose: to parse a given platypus source file
Function list: parser()
match(int, int)
syn_eh(int)
gen_incode()
program()
syn_printe()
Parsing Functions
*/
#include "parser.h"
/*
Purpose: Initializes the parser
Author: Josh Tate 040713210
History/Versions: 1
Called functions: mlwpar_next_token(), program(), match(), gen_incode()
Parameters: Buffer *
Return value: void
Algorithm: gets the buffer, sets lookahead to the next token, and runs the parser
checks for end of file to complete the parse.
*/
void parser(Buffer* in_buf){
sc_buf = in_buf;
lookahead = mlwpar_next_token(sc_buf);
program();
match(SEOF_T,NO_ATTR);
gen_incode("Source file parsed");
}
/*
Purpose: Matches lookahead to required token
Author: Josh Tate 040713210
Alec Pinsent 040726224
History/Versions: 1
Called functions: mlwpar_next_token(), syn_eh(), syn_printe()
Parameters: int pr_token_code, int pr_token_attribute
Return value: void
Algorithm: matches the given token to the lookahead token
*/
void match(int pr_token_code, int pr_token_attribute){
if(pr_token_code == lookahead.code){
switch(pr_token_code){
case KW_T:
if (pr_token_attribute == lookahead.attribute.kwt_idx){
lookahead = mlwpar_next_token(sc_buf);
}
else {
syn_eh(pr_token_code);
}
break;
case LOG_OP_T:
if (pr_token_attribute == lookahead.attribute.log_op) {
lookahead = mlwpar_next_token(sc_buf);
}
else {
syn_eh(pr_token_code);
}
break;
case ART_OP_T:
if (pr_token_attribute == lookahead.attribute.arr_op){
lookahead = mlwpar_next_token(sc_buf);
}
else {
syn_eh(pr_token_code);
}
break;
case REL_OP_T:
if (pr_token_attribute == lookahead.attribute.rel_op){
lookahead = mlwpar_next_token(sc_buf);
}
else{
syn_eh(pr_token_code);
}
break;
default:
if (lookahead.code == SEOF_T)
return;
lookahead = mlwpar_next_token(sc_buf);
break;
}
if(lookahead.code == ERR_T){
syn_printe();
++synerrno;
lookahead = mlwpar_next_token(sc_buf);
if (lookahead.code == SEOF_T)
return;
}
return;
}
syn_eh(pr_token_code);
}
/*
Purpose: Implements a simple panic mode error recover.
Author: Josh Tate 040713210
History/Versions: 1
Called functions:
Parameters: Buffer *
Return value: void
Algorithm: loops until it finds a token matching the passed token
if SEOF is reached, quits instead.
*/
void syn_eh(int sync_token_code){
syn_printe();
synerrno++;
do {
lookahead = mlwpar_next_token(sc_buf);
if(lookahead.code == sync_token_code){
lookahead = mlwpar_next_token(sc_buf);
return;
}
else if(lookahead.code == SEOF_T)
exit(synerrno);
}while(1);
}
/*
Purpose: prints out the given string
Author: Josh Tate 040713210
History/Versions: 1
Called functions: printf()
Parameters: const char* output
Return value: void
*/
void gen_incode(const char* output){
printf("PLATY: %s\n",output);
}
/*
Purpose: Parses the program
Author: Josh Tate 040713210
History/Versions: 1
Called functions: match(), opt_statements()
Algorithm: matches the PLATYPUS keyword and braces
parses any statements inside the program
*/
void program(){
match(KW_T, PLATYPUS);
match(LBR_T, NO_ATTR);
opt_statements();
match(RBR_T, NO_ATTR);
gen_incode("Program parsed");
}
/**************
STATEMENTS
**************/
/* Author: Alec Pinsent 040726224
* <opt_statements> ->
* <statements> | ∈v
*
* First Set { AVID_T, SVID_T,KW_T(except ELSE, REPEAT, THEN), E }
*/
void opt_statements(){
switch(lookahead.code){
case AVID_T:
case SVID_T:
statements();
break;
case KW_T:
/* check for PLATYPUS, ELSE, THEN, REPEAT here and in
statements_p()*/
if (lookahead.attribute.get_int != PLATYPUS
&& lookahead.attribute.get_int != ELSE
&& lookahead.attribute.get_int != THEN
&& lookahead.attribute.get_int != REPEAT){
statements();
break;
}
default: /*empty string – optional statements*/ ;
gen_incode("Opt_statements parsed");
}
}
/*
* <statements> ->
* <statement> <statements'> | <statement>
* <statements'> ->
* <statement> <statements'> | <statement>
*
* First Set{ AVID_T, SVID_T, KW_T(except ELSE, REPEAT, THEN)}
*/
void statements(){
switch(lookahead.code){
case KW_T:
switch(lookahead.attribute.kwt_idx) {
case PLATYPUS:
case ELSE:
case THEN:
case REPEAT:
return;
}
case AVID_T:
case SVID_T:
statement();
statements();
break;
default:
return;
}
}
/* Author: Alec Pinsent 040726224
* <statement> ->
* <assignment statement> | <selection statement> | <iteration statement> |
* <input statement> | <output statement>
*
* First Set { AVID_T, SVID_T, IF, USING, INPUT, OUTPUT }
*/
void statement(){
switch(lookahead.code){
case AVID_T:
case SVID_T:
assignment_statement();
break;
case KW_T:
switch(lookahead.attribute.kwt_idx){
case USING:
iteration_statement();
break;
case IF:
selection_statement();
break;
case OUTPUT:
output_statement();
break;
case INPUT:
input_statement();
break;
default:
syn_printe();
break;
}
break;
default:
syn_printe();
break;
}
}
/* Author: Alec Pinsent 040726224
* <assignment statement> ->
* <assignment expression>;
*
* First Set {AVID_T, SVID_T]
*/
void assignment_statement(){
assignment_expression();
match(EOS_T,NO_ATTR);
gen_incode("Assignment statement parsed");
}
/* Author: Josh Tate 040713210
* <selection statement> ->
* IF (<conditional expression>) THEN <opt_statements> ELSE {<opt_statements>};
*
* First Set {KW_T(only IF)}
*/
void selection_statement() {
match(KW_T, IF);
match(LPR_T,NO_ATTR);
conditional_expression();
match(RPR_T,NO_ATTR);
match(KW_T,THEN);
opt_statements();
match(KW_T,ELSE);
match(LBR_T,NO_ATTR);
opt_statements();
match(RBR_T,NO_ATTR);
match(EOS_T,NO_ATTR);
gen_incode("IF statement parsed");
}
/* Author: Alec Pinsent 040726224
* <iteration statement> ->
* USING (<assignment expression>, <conditional expression>, <assignment expression>)
* REPEAT { <opt_statements> };
*
* First Set {KW_T(only USING)}
*/
void iteration_statement(){
match(KW_T, USING);
match(LPR_T,NO_ATTR);
assignment_expression();
match(COM_T,NO_ATTR);
conditional_expression();
match(COM_T,NO_ATTR);
assignment_expression();
match(RPR_T,NO_ATTR);
match(KW_T,REPEAT);
match(LBR_T,NO_ATTR);
opt_statements();
match(RBR_T,NO_ATTR);
match(EOS_T,NO_ATTR);
gen_incode("USING statement parsed");
}
/* Author: Alec Pinsent 040726224
* <input statement> ->
* INPUT (<variable list>);
*
* First Set {KW_T(only input)}
*/
void input_statement(){
match(KW_T,INPUT);
match(LPR_T,NO_ATTR);
variable_list();
match(RPR_T,NO_ATTR);
match(EOS_T,NO_ATTR);
gen_incode("INPUT statement parsed");
}
/* Author: Josh Tate 040713210
* <output statement> ->
* OUTPUT (<opt_variable list>); | OUTPUT (STR_T);
*
* First Set {KW_T(only output)}
*/
void output_statement(){
match(KW_T,OUTPUT);
match(LPR_T,NO_ATTR);
opt_variable_list();
match(RPR_T,NO_ATTR);
match(EOS_T,NO_ATTR);
gen_incode("OUTPUT statement parsed");
}
/* Author: Josh Tate 040713210
* <opt_variable list> ->
* <variable list>,<variable identifier> | <variable identifier> | ε
*
* First Set {AVID_T, SVID_T, STL_T, FPL_T, INL_T}
*/
void opt_variable_list(){
switch(lookahead.code){
/* List will start with variable */
case SVID_T:
case AVID_T:
variable_list();
break;
/* String literal */
case STR_T:
match(STR_T, NO_ATTR);
gen_incode("Output list (string literal) parsed");
break;
/* Empty list (still valid) */
default:
gen_incode("Output list (empty) parsed");
break;
}
}
/* Author: Josh Tate 040713210
* <variable list> ->
* <variable list>,<variable identifier> | <variable identifier>
*
* First Set {AVID_T, SVID_T, STL_T, FPL_T, INL_T}
*/
void variable_list(){
variable_identifier();
variable_list_recursive();
gen_incode("Variable list parsed");
}
/* Author: Josh Tate 040713210
* <variable list> ->
* <variable list>,<variable identifier> | <variable identifier>
*
* First Set {, , E }
*/
void variable_list_recursive(){
/* Check to make sure the list is continued */
if(lookahead.code != COM_T)
return;
/* match and increment */
match(COM_T,NO_ATTR);
variable_identifier();
variable_list_recursive();
}
/***************
EXPRESSIONS
***************/
/* Author: Josh Tate 040713210
* <assignment expression> ->
* AVID = <arithmetic expression> | SVID = <string expression>
*
* First Set {FS -> AVID_T, SVID_T}
*/
void assignment_expression(){
switch(lookahead.code){
case AVID_T:
match(AVID_T,NO_ATTR);
match(ASS_OP_T, NO_ATTR);
arithmetic_expression();
gen_incode("Assignment expression (arithmetic) parsed");
break;
case SVID_T:
match(SVID_T,NO_ATTR);
match(ASS_OP_T,NO_ATTR);
string_expression();
gen_incode("Assignment expression (string) parsed");
break;
default:
syn_printe();
break;
}
}
/* Author: Josh Tate 040713210
* <arithmetic expression> ->
* <unary arithmetic expression> | <additive arithmetic expression>
*
* First Set {ART_OP_T (only PLUS/MINUS), AVID_T, INL_T, FPL_T, LPR_T}
*/
void arithmetic_expression(){
/* check for unary */
switch(lookahead.code){
case ART_OP_T:
switch(lookahead.attribute.arr_op){
case PLUS:
case MINUS:
match(ART_OP_T,lookahead.attribute.arr_op);
primary_arithmetic_expression();
gen_incode("Unary arithmetic expression parsed");
break;
default:
syn_printe();
break;
}
break;
default:
additive_arithmetic_expression();
break;
}
gen_incode("Arithmetic expression parsed");
}
/* Author: Alec Pinsent 040726224
* <additive arithmetic expression> ->
* <multiplicative arithmetic expression> |
* <additive arithmetic expression> + <multiplicative expression> |
* <additive arithmetic expression> – <multiplicative expression>
*
* First Set { AVID_T, INL_T, FPL_T, LPR_T}
*/
void additive_arithmetic_expression(){
multiplicative_arithmetic_expression();
additive_arithmetic_expression_recursive();
}
/* Author: Alec Pinsent 040726224
* <additive arithmetic expression> ->
* <multiplicative arithmetic expression> |
* <additive arithmetic expression> + <multiplicative expression> |
* <additive arithmetic expression> – <multiplicative expression>
*
* First Set { +, -, E }
*/
void additive_arithmetic_expression_recursive(){
if(lookahead.code == ART_OP_T && lookahead.attribute.arr_op != MULT && lookahead.attribute.arr_op != DIV){
if(lookahead.attribute.arr_op == PLUS){
match(ART_OP_T,PLUS);
multiplicative_arithmetic_expression();
additive_arithmetic_expression_recursive();
}
else if (lookahead.attribute.arr_op == MINUS){
match(ART_OP_T,MINUS);
multiplicative_arithmetic_expression();
additive_arithmetic_expression_recursive();
}
gen_incode("Additive arithmetic expression parsed");
}
}
/* Author: Alec Pinsent 040726224
* <multiplicative expression> ->
* <primary arithmetic expression> |
* <multiplicative expression> * <primary arithmetic expression> |
* <multiplicative expression> / <primary arithmetic expression>
*
* First Set {ART_OP_T (only PLUS/MINUS), AVID_T, INL_T, FPL_T, LPR_T}
*/
void multiplicative_arithmetic_expression(){
primary_arithmetic_expression();
multiplicative_arithmetic_expression_recursive();
}
/* Author: Alec Pinsent 040726224
* <additive arithmetic expression> ->
* <multiplicative arithmetic expression> |
* <additive arithmetic expression> + <multiplicative expression> |
* <additive arithmetic expression> – <multiplicative expression>
*
* First Set { *, / , E }
*/
void multiplicative_arithmetic_expression_recursive(){
if(lookahead.code == ART_OP_T && lookahead.attribute.arr_op != PLUS && lookahead.attribute.arr_op != MINUS){
if(lookahead.attribute.arr_op == MULT){
match(ART_OP_T,MULT);
primary_arithmetic_expression();
multiplicative_arithmetic_expression_recursive();
}
else if (lookahead.attribute.arr_op == DIV){
match(ART_OP_T,DIV);
primary_arithmetic_expression();
multiplicative_arithmetic_expression_recursive();
}
gen_incode("Multiplicative arithmetic expression parsed");
}
}
/* Author: Alec Pinsent 040726224
* <primary arithmetic expression> ->
* AVID_T | FPL_T | INL_T | (<arithmetic expression>)
*
* First Set {ART_OP_T (only PLUS/MINUS), AVID_T, INL_T, FPL_T, LPR_T}
*/
void primary_arithmetic_expression(){
switch(lookahead.code){
case AVID_T:
case FPL_T:
case INL_T:
match(lookahead.code,NO_ATTR);
gen_incode("Primary arithmetic expression parsed");
break;
default:
match(LPR_T,NO_ATTR);
arithmetic_expression();
match(RPR_T,NO_ATTR);
gen_incode("Primary arithmetic expression parsed");
break;
}
}
/* Author: Josh Tate 040713210
* <string expression> ->
* <primary string expression> | <string expression> << <primary string expression>
*
* First Set {SVID_T, STRL_T}
*/
void string_expression(){
primary_string_expression();
string_expression_recursive();
gen_incode("String expression parsed");
}
/* Author: Josh Tate 040713210
* <string expression> ->
* <primary string expression> | <string expression> << <primary string expression>
*
* First Set { <>, E }
*/
void string_expression_recursive(){
if(lookahead.code == SCC_OP_T){
match(SCC_OP_T,NO_ATTR);
primary_string_expression();
string_expression_recursive();
}
}
/* Author Josh Tate 040713210
* <primary string expression> ->
* SVID_T | STR_T
*
* First Set { SVID_T, STR_T }
*/
void primary_string_expression(){
if (lookahead.code == STR_T || lookahead.code == SVID_T)
match(lookahead.code,NO_ATTR);
else
syn_printe();
gen_incode("Primary string expression parsed");
}
/* Author: Josh Tate 040713210
* <conditional expression> ->
* <logical OR expression>
*
* First set {AVID_T, SVID_T, STRL_T, FPL_T, INL_T}
*/
void conditional_expression(){
logical_OR_expression();
gen_incode("Conditional expression parsed");
}
/* Author: Josh Tate 040713210
* <logical OR expression> ->
* <logical AND expression> |
* <logical AND expression> .OR. <logical OR expression>
*
* First Set {AVID_T, FPL_T, INL_T, SVID_T, STR_T }
*/
void logical_OR_expression(){
logical_AND_expression();
logical_OR_expression_recursive();
}
/* Author: Josh Tate 040713210
* <logical OR expression> ->
* <logical AND expression> |
* <logical AND expression> .OR. <logical OR expression>
*
* First Set { .OR., E }
*/
void logical_OR_expression_recursive(){
if (lookahead.code != LOG_OP_T || lookahead.attribute.log_op != OR)
return;
match(LOG_OP_T,OR);
logical_AND_expression();
logical_OR_expression_recursive();
gen_incode("Logical OR expression parsed");
}
/* Author: Alec Pinsent 040726224
* <relational expression> |
* <relational expression> .AND. <logical AND expression>
*
* First Set { AVID_T, FPL_T, INL_T, SVID_T, STR_T }
*/
void logical_AND_expression(){
relational_expression();
logical_AND_expression_recursive();
}
/* Author: Alec Pinsent 040726224
* <relational expression> |
* <relational expression> .AND. <logical AND expression>
*
* First Set { .AND. , E }
*/
void logical_AND_expression_recursive(){
if (lookahead.code != LOG_OP_T || lookahead.attribute.log_op != AND)
return;
match(LOG_OP_T,AND);
relational_expression();
logical_AND_expression_recursive();
gen_incode("Logical AND expression parsed");
}
/* Author: Josh Tate 040713210
* <relational expression> ->
* <primary a_relational expression> == <primary a_relational expression> |
* <primary a_relational expression> <> <primary a_relational expression> |
* <primary a_relational expression> > <primary a_relational expression> |
* <primary a_relational expression> < <primary a_relational expression> |
* <primary s_relational expression> == <primary s_relational expression> |
* <primary s_relational expression> <> <primary s_relational expression> |
* <primary s_relational expression> > <primary s_relational expression> |
* <primary s_relational expression> < <primary s_relational expression>
*
* First Set { AVID_T, FPL_T, INL_T, SVID_T, STR_T }
*/
void relational_expression(){
switch(lookahead.code){
/* a_relational */
case AVID_T:
case FPL_T:
case INL_T:
primary_a_relational_expression();
match(REL_OP_T,lookahead.attribute.rel_op);
primary_a_relational_expression();
break;
case SVID_T:
case STR_T:
primary_s_relational_expression();
match(REL_OP_T,lookahead.attribute.rel_op);
primary_s_relational_expression();
break;
/* s_relational */
default:
syn_printe();
break;
}
gen_incode("Relational expression parsed");
}
/* Author: Alec Pinsent 040726224
* <primary a_relational expression> ->
* AVID_T | FPL_T | INL_T
*
* First Set {AVID_T, FPL_T, INL_T}
*/
void primary_a_relational_expression(){
switch(lookahead.code){
case AVID_T:
case FPL_T:
case INL_T:
match(lookahead.code,NO_ATTR);
break;
default:
syn_printe();
break;
}
gen_incode("Primary a_relational expression parsed");
}
/* Author: Alec Pinsent 040726224
* <primary s_relational expression> ->
* <primary string expression>
*
* First Set {SVID_T, STRL_T}
*/
void primary_s_relational_expression(){
primary_string_expression();
gen_incode("Primary s_relational expression parsed");
}
/**************
IDENTIFIER
**************/
void variable_identifier(){
switch(lookahead.code){
case SVID_T:
case AVID_T:
match(lookahead.code,NO_ATTR);
break;
default:
syn_printe();
break;
}
}
/* Parser error printing function, Assignmet 4, F14
* Provided by Prof: Svillen Ranev
*/
void syn_printe(){
Token t = lookahead;
printf("PLATY: Syntax error: Line:%3d\n",line);
printf("***** Token code:%3d Attribute: ", t.code);
switch(t.code){
case ERR_T: /* ERR_T 0 Error token */
printf("%s\n",t.attribute.err_lex);
break;
case SEOF_T: /*SEOF_T 1 Source end-of-file token */
printf("NA\n" );
break;
case AVID_T: /* AVID_T 2 Arithmetic Variable identifier token */
case SVID_T :/* SVID_T 3 String Variable identifier token */
printf("%s\n",sym_table.pstvr[t.attribute.get_int].plex);
break;
case FPL_T: /* FPL_T 4 Floating point literal token */
printf("%5.1f\n",t.attribute.flt_value);
break;
case INL_T: /* INL_T 5 Integer literal token */
printf("%d\n",t.attribute.get_int);
break;
case STR_T:/* STR_T 6 String literal token */
printf("%s\n",b_get_chloc(str_LTBL,t.attribute.str_offset));
break;
case SCC_OP_T: /* 7 String concatenation operator token */
printf("NA\n" );
break;
case ASS_OP_T:/* ASS_OP_T 8 Assignment operator token */
printf("NA\n" );
break;
case ART_OP_T:/* ART_OP_T 9 Arithmetic operator token */
printf("%d\n",t.attribute.get_int);
break;
case REL_OP_T: /*REL_OP_T 10 Relational operator token */
printf("%d\n",t.attribute.get_int);
break;
case LOG_OP_T:/*LOG_OP_T 11 Logical operator token */
printf("%d\n",t.attribute.get_int);
break;
case LPR_T: /*LPR_T 12 Left parenthesis token */
printf("NA\n" );
break;
case RPR_T: /*RPR_T 13 Right parenthesis token */
printf("NA\n" );
break;
case LBR_T: /* 14 Left brace token */
printf("NA\n" );
break;
case RBR_T: /* 15 Right brace token */
printf("NA\n" );
break;
case KW_T: /* 16 Keyword token */
printf("%s\n",kw_table [t.attribute.get_int]);
break;
case COM_T: /* 17 Comma token */
printf("NA\n");
break;
case EOS_T: /* 18 End of statement *(semi - colon) */
printf("NA\n" );
break;
default:
printf("PLATY: Scanner error: invalid token code: %d\n", t.code);
}/*end switch*/
}/* end syn_printe()*/