Interface describes expression builder.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class IExpressionBuilder :public virtual IReleasable
{
public:
virtual bool Build(ITokenizer *tokenizer, IExpression **target) = 0; // Build expression into "target" using specified tokenizer
virtual bool Build(const Tokens &tokens, IExpression **target) = 0; // Build expression into "target" from specified token list
virtual bool Build(const Tokens &tokens, const size_t first, const size_t last, IExpression **target) = 0; // Build expression into "target" from specified token list using only tokens from specified range
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Interfaces/IExpressionBuilder.h |