summaryrefslogtreecommitdiff
path: root/lparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'lparser.c')
-rw-r--r--lparser.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/lparser.c b/lparser.c
index 69168a16..08d19045 100644
--- a/lparser.c
+++ b/lparser.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lparser.c,v 2.121 2011/10/24 14:51:44 roberto Exp roberto $ 2** $Id: lparser.c,v 2.122 2011/10/31 17:46:04 roberto Exp roberto $
3** Lua Parser 3** Lua Parser
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -68,19 +68,19 @@ static void anchor_token (LexState *ls) {
68 68
69 69
70/* semantic error */ 70/* semantic error */
71static void semerror (LexState *ls, const char *msg) { 71static l_noret semerror (LexState *ls, const char *msg) {
72 ls->t.token = 0; /* remove 'near to' from final message */ 72 ls->t.token = 0; /* remove 'near to' from final message */
73 luaX_syntaxerror(ls, msg); 73 luaX_syntaxerror(ls, msg);
74} 74}
75 75
76 76
77static void error_expected (LexState *ls, int token) { 77static l_noret error_expected (LexState *ls, int token) {
78 luaX_syntaxerror(ls, 78 luaX_syntaxerror(ls,
79 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token))); 79 luaO_pushfstring(ls->L, "%s expected", luaX_token2str(ls, token)));
80} 80}
81 81
82 82
83static void errorlimit (FuncState *fs, int limit, const char *what) { 83static l_noret errorlimit (FuncState *fs, int limit, const char *what) {
84 lua_State *L = fs->ls->L; 84 lua_State *L = fs->ls->L;
85 const char *msg; 85 const char *msg;
86 int line = fs->f->linedefined; 86 int line = fs->f->linedefined;
@@ -460,7 +460,7 @@ static void breaklabel (LexState *ls) {
460** generates an error for an undefined 'goto'; choose appropriate 460** generates an error for an undefined 'goto'; choose appropriate
461** message when label name is a reserved word (which can only be 'break') 461** message when label name is a reserved word (which can only be 'break')
462*/ 462*/
463static void undefgoto (LexState *ls, Labeldesc *gt) { 463static l_noret undefgoto (LexState *ls, Labeldesc *gt) {
464 const char *msg = (gt->name->tsv.reserved > 0) 464 const char *msg = (gt->name->tsv.reserved > 0)
465 ? "<%s> at line %d not inside a loop" 465 ? "<%s> at line %d not inside a loop"
466 : "no visible label " LUA_QS " for <goto> at line %d"; 466 : "no visible label " LUA_QS " for <goto> at line %d";
@@ -852,7 +852,6 @@ static void funcargs (LexState *ls, expdesc *f, int line) {
852 } 852 }
853 default: { 853 default: {
854 luaX_syntaxerror(ls, "function arguments expected"); 854 luaX_syntaxerror(ls, "function arguments expected");
855 return;
856 } 855 }
857 } 856 }
858 lua_assert(f->k == VNONRELOC); 857 lua_assert(f->k == VNONRELOC);
@@ -897,7 +896,6 @@ static void prefixexp (LexState *ls, expdesc *v) {
897 } 896 }
898 default: { 897 default: {
899 luaX_syntaxerror(ls, "unexpected symbol"); 898 luaX_syntaxerror(ls, "unexpected symbol");
900 return;
901 } 899 }
902 } 900 }
903} 901}