Implemented format() builtin call

This commit is contained in:
ZZYZX 2017-01-13 21:44:34 +02:00 committed by Christoph Oelckers
commit e75aa08d0a
7 changed files with 267 additions and 3 deletions

View file

@ -549,6 +549,10 @@ CVMAbortException::CVMAbortException(EVMAbortException reason, const char *morei
AppendMessage("invalid self pointer.");
break;
case X_FORMAT_ERROR:
AppendMessage("string format failed.");
break;
default:
{
size_t len = strlen(m_Message);