From be454ff7be5a096fb7eecfdd6116cea69d101a5b Mon Sep 17 00:00:00 2001 From: belliash Date: Tue, 14 Aug 2018 23:48:15 +0200 Subject: [PATCH] Rename PH7_COMPILE_SINGLE_STMT to PH7_COMPILE_STATEMENT --- engine/compiler.c | 12 ++++-------- include/compiler.h | 2 +- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/engine/compiler.c b/engine/compiler.c index 1e96865..c06c994 100644 --- a/engine/compiler.c +++ b/engine/compiler.c @@ -1599,7 +1599,7 @@ static sxi32 PH7_CompileBlock( break; } /* Compile a single statement */ - rc = PH7_GenStateCompileChunk(&(*pGen), PH7_COMPILE_SINGLE_STMT); + rc = PH7_GenStateCompileChunk(&(*pGen), PH7_COMPILE_STATEMENT); if(rc == SXERR_ABORT) { return SXERR_ABORT; } @@ -1607,7 +1607,7 @@ static sxi32 PH7_CompileBlock( PH7_GenStateLeaveBlock(&(*pGen), 0); } else { /* Compile a single statement */ - rc = PH7_GenStateCompileChunk(&(*pGen), PH7_COMPILE_SINGLE_STMT); + rc = PH7_GenStateCompileChunk(&(*pGen), PH7_COMPILE_STATEMENT); if(rc == SXERR_ABORT) { return SXERR_ABORT; } @@ -5321,7 +5321,7 @@ static sxi32 PH7_GenStateCompileChunk( PH7_VmEmitInstr(pGen->pVm, PH7_OP_POP, 1, 0, 0, 0); } } else { - /* Go compile the sucker */ + /* Compile the statement */ rc = xCons(&(*pGen)); } if(rc == SXERR_ABORT) { @@ -5333,14 +5333,10 @@ static sxi32 PH7_GenStateCompileChunk( while(pGen->pIn < pGen->pEnd && (pGen->pIn->nType & PH7_TK_SEMI)) { pGen->pIn++; } - if(iFlags & PH7_COMPILE_SINGLE_STMT) { + if(iFlags & PH7_COMPILE_STATEMENT) { /* Compile a single statement and return */ break; } - /* LOOP ONE */ - /* LOOP TWO */ - /* LOOP THREE */ - /* LOOP FOUR */ } /* Return compilation status */ return rc; diff --git a/include/compiler.h b/include/compiler.h index d707ffa..a566111 100644 --- a/include/compiler.h +++ b/include/compiler.h @@ -42,7 +42,7 @@ struct LangConstruct { }; /* Compilation flags */ -#define PH7_COMPILE_SINGLE_STMT 0x001 /* Compile a single statement */ +#define PH7_COMPILE_STATEMENT 0x001 /* Compile a single statement */ /* Token stream synchronization macros */ #define SWAP_TOKEN_STREAM(GEN,START,END)\