*** empty log message ***
This commit is contained in:
50
lang/cem/cemcom/LLmessage.c
Normal file
50
lang/cem/cemcom/LLmessage.c
Normal file
@@ -0,0 +1,50 @@
|
||||
/* $Header$ */
|
||||
/* PARSER ERROR ADMINISTRATION */
|
||||
|
||||
#include "idf.h"
|
||||
#include "alloc.h"
|
||||
#include "arith.h"
|
||||
#include "LLlex.h"
|
||||
#include "Lpars.h"
|
||||
|
||||
extern char *symbol2str();
|
||||
|
||||
LLmessage(tk) {
|
||||
err_occurred = 1;
|
||||
if (tk < 0)
|
||||
fatal("parser administration overflow");
|
||||
if (tk) {
|
||||
error("%s missing", symbol2str(tk));
|
||||
insert_token(tk);
|
||||
}
|
||||
else
|
||||
error("%s deleted", symbol2str(DOT));
|
||||
}
|
||||
|
||||
insert_token(tk)
|
||||
int tk;
|
||||
{
|
||||
aside = dot;
|
||||
|
||||
DOT = tk;
|
||||
|
||||
switch (tk) {
|
||||
/* The operands need some body */
|
||||
case IDENTIFIER:
|
||||
dot.tk_idf = gen_idf();
|
||||
break;
|
||||
case TYPE_IDENTIFIER:
|
||||
dot.tk_idf = str2idf("int");
|
||||
break;
|
||||
case STRING:
|
||||
dot.tk_str = Salloc("", 1);
|
||||
break;
|
||||
case INTEGER:
|
||||
dot.tk_fund = INT;
|
||||
dot.tk_ival = 1;
|
||||
break;
|
||||
case FLOATING:
|
||||
dot.tk_fval = Salloc("0.0", 4);
|
||||
break;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user