forked from tdantonio/vocaLang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.y
67 lines (53 loc) · 1.4 KB
/
parser.y
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
%{
#include <stdio.h>
#include "parser.tab.h"
int yylex();
int yywrap(){
return 1;
}
FILE* yyin;
FILE* yyout;
void yyerror(char* s){
printf("Error Sintactico\n");
}
%}
%token INICIO REPETIR MOSTRAME NUMERO PALABRA FINAL PUNTO PUNTOYCOMA OPERADOR CORCHDER CORCHIZQ
%token ID
%token CONSTANTE
%token CADENA
%%
programa:
INICIO listaSentencias FINAL
;
listaSentencias:
sentencia
| listaSentencias sentencia
;
sentencia:
REPETIR CORCHIZQ CADENA PUNTOYCOMA CONSTANTE CORCHDER PUNTO {printf("Sentencia Repetir Reconocida\n");}
| MOSTRAME CORCHIZQ CADENA CORCHDER PUNTO {printf("Sentencia Mostrame Reconocida\n");}
| expresion
;
expresion:
NUMERO ID OPERADOR CONSTANTE PUNTO {printf("Asignacion Numero Reconocida\n");}
| PALABRA ID OPERADOR CADENA PUNTO {printf("Asignacion Palabra Reconocida\n");}
;
%%
int main(int argc, char *argv[]){
if(argc == 2){
yyin = fopen(argv[1], "r");
yyout = fopen("salida.txt", "w");
if(yyin == NULL){
printf("No se pudo encontrar el archivo");
return 0;
}
yyparse();
fclose(yyin);
fclose(yyout);
}else
{
printf("Ingrese a.exe y el txt a probar");
return 1;
}
//return 0;
}