Class implements expression storing sequence of expressions.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CExpressionSequence :public CExpression
{
public:
bool const &Ternary; // Indicates whether sequence represents ternary operator
// IExpression methods
String toString() override;
CExpressionSequence(const size_t index, const bool ternary);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Expressions/ExpressionSequence.h |