More verbose errors
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-08-12 10:18:42 +02:00
parent c759b1f106
commit e866575cb5
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -3542,7 +3542,7 @@ loop:
pGen->pIn++; /* Jump the dollar sign */
if(pGen->pIn >= pGen->pEnd || (pGen->pIn->nType & (PH7_TK_KEYWORD | PH7_TK_ID)) == 0) {
/* Invalid attribute name */
rc = PH7_GenCompileError(pGen, E_ERROR, nLine, "Invalid attribute name");
rc = PH7_GenCompileError(pGen, E_ERROR, nLine, "Invalid attribute name '%z' in class '%z'", &pGen->pIn->sData, &pClass->sName);
if(rc == SXERR_ABORT) {
/* Error count limit reached,abort immediately */
return SXERR_ABORT;