mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-11 15:28:11 -05:00
Add base for simple expression unit tests
This commit is contained in:
@ -34,6 +34,7 @@ private:
|
||||
|
||||
public:
|
||||
SimpleExpressionMatchers();
|
||||
SimpleExpressionMatchers(bool enableStringOperands, bool enableIdentifierOperands, bool enableFloatingPointOperands, bool enableIntOperands);
|
||||
virtual ~SimpleExpressionMatchers();
|
||||
SimpleExpressionMatchers(const SimpleExpressionMatchers& other) = default;
|
||||
SimpleExpressionMatchers(SimpleExpressionMatchers&& other) noexcept = default;
|
||||
@ -41,8 +42,6 @@ public:
|
||||
SimpleExpressionMatchers& operator=(SimpleExpressionMatchers&& other) noexcept = default;
|
||||
|
||||
protected:
|
||||
SimpleExpressionMatchers(bool enableStringOperands, bool enableIdentifierOperands, bool enableFloatingPointOperands, bool enableIntOperands);
|
||||
|
||||
virtual std::unique_ptr<matcher_t> ParseOperandExtension(const supplier_t* labelSupplier) const;
|
||||
virtual std::unique_ptr<ISimpleExpression> ProcessOperandExtension(SequenceResult<SimpleParserValue>& result) const;
|
||||
|
||||
|
Reference in New Issue
Block a user