From 1d7ca6fa1d33c65e3f4fcc2eaac278037892f6ad Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Thu, 12 Sep 2024 08:30:48 +0800 Subject: [PATCH] Initial parser class implementation for Zhivo. --- include/parser/Parser.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/parser/Parser.hpp b/include/parser/Parser.hpp index 066aa0a..615d42e 100644 --- a/include/parser/Parser.hpp +++ b/include/parser/Parser.hpp @@ -142,7 +142,7 @@ class Parser { Token digitToken = this->consume(TokenType::DIGIT); expr = std::make_unique( std::make_unique(digitToken), - Convert::translateDigit(digitToken.getImage()) + ZhivoUtil::Convert::translateDigit(digitToken.getImage()) ); }