Changed opcode implementation to native function implementation

This commit is contained in:
ZZYZX 2017-01-13 23:49:36 +02:00 committed by Christoph Oelckers
commit a8beb51ca3
5 changed files with 202 additions and 174 deletions

View file

@ -1533,19 +1533,21 @@ public:
//==========================================================================
//
// FxFormatFunctionCall
// FxFormat
//
//==========================================================================
class FxFormat : public FxExpression
{
FArgumentList ArgList;
bool EmitTail;
public:
FxFormat(FArgumentList &args, const FScriptPosition &pos);
~FxFormat();
FxExpression *Resolve(FCompileContext&);
PPrototype *ReturnProto();
ExpEmit Emit(VMFunctionBuilder *build);
};