From b3f83360282bfe327c0ccbeecab706e0e7d2c050 Mon Sep 17 00:00:00 2001 From: Cori Barker Date: Mon, 9 Feb 2026 11:59:14 +0000 Subject: Changed .h to .hpp --- include/semantic/scope.h | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 include/semantic/scope.h (limited to 'include/semantic/scope.h') diff --git a/include/semantic/scope.h b/include/semantic/scope.h deleted file mode 100644 index ff20542..0000000 --- a/include/semantic/scope.h +++ /dev/null @@ -1,23 +0,0 @@ -#pragma once - -#include -#include - -class Scope { -public: - explicit Scope(std::string name, int level, *Scope parent); - std::string getScopeName(); - int getScopeLevel(); - *Scope getParentScope(); - void define(Symbol symbol); - *Symbol lookup(std::string name); - bool isDeclared(std::string name); - std::unordered_map getAllSymbols(); - std::string toString(); - -private: - std::string scope_name; - int scope_level - *Scope parent_scope; - std::unordered_map symbols; -}; -- cgit v1.2.3