From 2f20c96f7069bcd6bc3b3b73837d102838936637 Mon Sep 17 00:00:00 2001 From: Nathanne Isip Date: Thu, 21 Nov 2024 10:39:53 +0800 Subject: [PATCH] Parser function prototype for parsing 'size' expression --- include/n8/parser/Parser.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/include/n8/parser/Parser.hpp b/include/n8/parser/Parser.hpp index ea642e6..241ef81 100644 --- a/include/n8/parser/Parser.hpp +++ b/include/n8/parser/Parser.hpp @@ -60,6 +60,7 @@ class Parser final { std::shared_ptr exprFactor(); std::shared_ptr exprParallel(); std::shared_ptr exprVal(); + std::shared_ptr exprSize(); std::shared_ptr stmtBreak(); std::shared_ptr stmtContinue();