Expressions logging

This commit is contained in:
Rafał Grodziński
2025-07-02 17:36:05 +09:00
parent 6f769c77b7
commit e9d55a2ed1
5 changed files with 124 additions and 10 deletions

View File

@@ -6,12 +6,10 @@ private:
int32_t sint32Value;
float real32Value;
ExpressionLiteral();
public:
static shared_ptr<ExpressionLiteral> NONE;
ExpressionLiteral(shared_ptr<Token> token);
ExpressionLiteral();
bool getBoolValue();
int32_t getSint32Value();
float getReal32Value();