You've already forked linux-packaging-mono
Imported Upstream version 5.12.0.220
Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
This commit is contained in:
parent
8bd104cef2
commit
8fc30896db
162
mcs/jay/error.c
162
mcs/jay/error.c
@ -42,43 +42,39 @@ static char sccsid[] = "@(#)error.c 5.3 (Berkeley) 6/1/90";
|
||||
|
||||
#include "defs.h"
|
||||
|
||||
|
||||
fatal(msg)
|
||||
char *msg;
|
||||
void
|
||||
fatal (const char *msg)
|
||||
{
|
||||
fprintf(stderr, "%s: f - %s\n", myname, msg);
|
||||
done(2);
|
||||
}
|
||||
|
||||
|
||||
no_space()
|
||||
void
|
||||
no_space (void)
|
||||
{
|
||||
fprintf(stderr, "%s: f - out of space\n", myname);
|
||||
done(2);
|
||||
}
|
||||
|
||||
|
||||
open_error(filename)
|
||||
char *filename;
|
||||
void
|
||||
open_error (const char *filename)
|
||||
{
|
||||
fprintf(stderr, "%s: f - cannot open \"%s\"\n", myname, filename);
|
||||
done(2);
|
||||
}
|
||||
|
||||
|
||||
unexpected_EOF()
|
||||
void
|
||||
unexpected_EOF (void)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", unexpected end-of-file\n",
|
||||
myname, lineno, input_file_name);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
print_pos(st_line, st_cptr)
|
||||
char *st_line;
|
||||
char *st_cptr;
|
||||
static void
|
||||
print_pos (const char *st_line, const char *st_cptr)
|
||||
{
|
||||
register char *s;
|
||||
const char *s;
|
||||
|
||||
if (st_line == 0) return;
|
||||
for (s = st_line; *s != '\n'; ++s)
|
||||
@ -100,11 +96,8 @@ char *st_cptr;
|
||||
putc('\n', stderr);
|
||||
}
|
||||
|
||||
|
||||
syntax_error(st_lineno, st_line, st_cptr)
|
||||
int st_lineno;
|
||||
char *st_line;
|
||||
char *st_cptr;
|
||||
void
|
||||
syntax_error (int st_lineno, const char *st_line, const char *st_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", syntax error\n",
|
||||
myname, st_lineno, input_file_name);
|
||||
@ -112,11 +105,8 @@ char *st_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
unterminated_comment(c_lineno, c_line, c_cptr)
|
||||
int c_lineno;
|
||||
char *c_line;
|
||||
char *c_cptr;
|
||||
void
|
||||
unterminated_comment (int c_lineno, const char *c_line, const char *c_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", unmatched /*\n",
|
||||
myname, c_lineno, input_file_name);
|
||||
@ -124,11 +114,8 @@ char *c_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
unterminated_string(s_lineno, s_line, s_cptr)
|
||||
int s_lineno;
|
||||
char *s_line;
|
||||
char *s_cptr;
|
||||
void
|
||||
unterminated_string (int s_lineno, const char *s_line, const char *s_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", unterminated string\n",
|
||||
myname, s_lineno, input_file_name);
|
||||
@ -136,11 +123,8 @@ char *s_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
unterminated_text(t_lineno, t_line, t_cptr)
|
||||
int t_lineno;
|
||||
char *t_line;
|
||||
char *t_cptr;
|
||||
void
|
||||
unterminated_text (int t_lineno, const char *t_line, const char *t_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", unmatched %%{\n",
|
||||
myname, t_lineno, input_file_name);
|
||||
@ -148,11 +132,8 @@ char *t_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
illegal_tag(t_lineno, t_line, t_cptr)
|
||||
int t_lineno;
|
||||
char *t_line;
|
||||
char *t_cptr;
|
||||
void
|
||||
illegal_tag (int t_lineno, const char *t_line, const char *t_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", illegal tag\n",
|
||||
myname, t_lineno, input_file_name);
|
||||
@ -160,9 +141,8 @@ char *t_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
illegal_character(c_cptr)
|
||||
char *c_cptr;
|
||||
void
|
||||
illegal_character (const char *c_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", illegal character\n",
|
||||
myname, lineno, input_file_name);
|
||||
@ -170,93 +150,83 @@ char *c_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
used_reserved(s)
|
||||
char *s;
|
||||
void
|
||||
used_reserved (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", illegal use of reserved symbol \
|
||||
%s\n", myname, lineno, input_file_name, s);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
tokenized_start(s)
|
||||
char *s;
|
||||
void
|
||||
tokenized_start (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", the start symbol %s cannot be \
|
||||
declared to be a token\n", myname, lineno, input_file_name, s);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
retyped_warning(s)
|
||||
char *s;
|
||||
void
|
||||
retyped_warning (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", the type of %s has been \
|
||||
redeclared\n", myname, lineno, input_file_name, s);
|
||||
}
|
||||
|
||||
|
||||
reprec_warning(s)
|
||||
char *s;
|
||||
void
|
||||
reprec_warning (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", the precedence of %s has been \
|
||||
redeclared\n", myname, lineno, input_file_name, s);
|
||||
}
|
||||
|
||||
|
||||
revalued_warning(s)
|
||||
char *s;
|
||||
void
|
||||
revalued_warning (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", the value of %s has been \
|
||||
redeclared\n", myname, lineno, input_file_name, s);
|
||||
}
|
||||
|
||||
|
||||
terminal_start(s)
|
||||
char *s;
|
||||
void
|
||||
terminal_start (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", the start symbol %s is a \
|
||||
token\n", myname, lineno, input_file_name, s);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
restarted_warning()
|
||||
void
|
||||
restarted_warning (void)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", the start symbol has been \
|
||||
redeclared\n", myname, lineno, input_file_name);
|
||||
}
|
||||
|
||||
|
||||
no_grammar()
|
||||
void
|
||||
no_grammar (void)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", no grammar has been \
|
||||
specified\n", myname, lineno, input_file_name);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
terminal_lhs(s_lineno)
|
||||
int s_lineno;
|
||||
void
|
||||
terminal_lhs (int s_lineno)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", a token appears on the lhs \
|
||||
of a production\n", myname, s_lineno, input_file_name);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
prec_redeclared()
|
||||
void
|
||||
prec_redeclared (void)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", conflicting %%prec \
|
||||
specifiers\n", myname, lineno, input_file_name);
|
||||
}
|
||||
|
||||
|
||||
unterminated_action(a_lineno, a_line, a_cptr)
|
||||
int a_lineno;
|
||||
char *a_line;
|
||||
char *a_cptr;
|
||||
void
|
||||
unterminated_action (int a_lineno, const char *a_line, const char *a_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", unterminated action\n",
|
||||
myname, a_lineno, input_file_name);
|
||||
@ -264,20 +234,15 @@ char *a_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
dollar_warning(a_lineno, i)
|
||||
int a_lineno;
|
||||
int i;
|
||||
void
|
||||
dollar_warning (int a_lineno, int i)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", $%d references beyond the \
|
||||
end of the current rule\n", myname, a_lineno, input_file_name, i);
|
||||
}
|
||||
|
||||
|
||||
dollar_error(a_lineno, a_line, a_cptr)
|
||||
int a_lineno;
|
||||
char *a_line;
|
||||
char *a_cptr;
|
||||
void
|
||||
dollar_error (int a_lineno, const char *a_line, char *a_cptr)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", illegal $-name\n",
|
||||
myname, a_lineno, input_file_name);
|
||||
@ -285,51 +250,46 @@ char *a_cptr;
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
untyped_lhs()
|
||||
void
|
||||
untyped_lhs (void)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", $$ is untyped\n",
|
||||
myname, lineno, input_file_name);
|
||||
/** done(1); */
|
||||
}
|
||||
|
||||
|
||||
untyped_rhs(i, s)
|
||||
int i;
|
||||
char *s;
|
||||
void
|
||||
untyped_rhs (int i, const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", $%d (%s) is untyped\n",
|
||||
myname, lineno, input_file_name, i, s);
|
||||
/** done(1); */
|
||||
}
|
||||
|
||||
|
||||
unknown_rhs(i)
|
||||
int i;
|
||||
void
|
||||
unknown_rhs (int i)
|
||||
{
|
||||
fprintf(stderr, "%s: e - line %d of \"%s\", $%d is untyped\n",
|
||||
myname, lineno, input_file_name, i);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
default_action_warning()
|
||||
void
|
||||
default_action_warning (void)
|
||||
{
|
||||
fprintf(stderr, "%s: w - line %d of \"%s\", the default action assigns an \
|
||||
undefined value to $$\n", myname, lineno, input_file_name);
|
||||
}
|
||||
|
||||
|
||||
undefined_goal(s)
|
||||
char *s;
|
||||
void
|
||||
undefined_goal (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: e - the start symbol %s is undefined\n", myname, s);
|
||||
done(1);
|
||||
}
|
||||
|
||||
|
||||
undefined_symbol_warning(s)
|
||||
char *s;
|
||||
void
|
||||
undefined_symbol_warning (const char *s)
|
||||
{
|
||||
fprintf(stderr, "%s: w - the symbol %s is undefined\n", myname, s);
|
||||
}
|
||||
|
Reference in New Issue
Block a user