- added handling for all the builtins supported by DECORATE to FxFunctionCall.

For the random functions this class only handles the default-RNG version. The one with an explicit RNG needs to be done separately because the parser produces different output for them.
This commit is contained in:
Christoph Oelckers 2016-10-16 00:12:33 +02:00
commit 55f6661c87
3 changed files with 122 additions and 3 deletions

View file

@ -203,7 +203,10 @@ protected:
: ScriptPosition(pos)
{
}
public:
public:
FxExpression *CheckIntForName();
virtual ~FxExpression() {}
virtual FxExpression *Resolve(FCompileContext &ctx);