From d714368ab59cebd2cdcd656cbe506bbf97cdce0a Mon Sep 17 00:00:00 2001 From: ax-6 Date: Sun, 7 Apr 2024 22:38:15 +0800 Subject: [PATCH] Deletes some files. Wait development. --- compiler/symbol_table/CMakeLists.txt | 13 ------------- compiler/symbol_table/symbol_table.cc | 11 ----------- compiler/symbol_table/symbol_table.h | 17 ----------------- 3 files changed, 41 deletions(-) delete mode 100644 compiler/symbol_table/CMakeLists.txt delete mode 100644 compiler/symbol_table/symbol_table.cc delete mode 100644 compiler/symbol_table/symbol_table.h diff --git a/compiler/symbol_table/CMakeLists.txt b/compiler/symbol_table/CMakeLists.txt deleted file mode 100644 index e1322f7..0000000 --- a/compiler/symbol_table/CMakeLists.txt +++ /dev/null @@ -1,13 +0,0 @@ -# Copyright 2024 AQ authors, All Rights Reserved. -# This program is licensed under the AQ License. You can find the AQ license in -# the root directory. - -cmake_minimum_required(VERSION 3.10) - -include_directories(${PROJECT_SOURCE_DIR}) - -set(SOURCES ${CMAKE_CURRENT_SOURCE_DIR}/symbol_table.cc) - -add_library(AqCompilerSymbolTable STATIC ${SOURCES}) - -target_link_libraries(AqCompilerSymbolTable PRIVATE AqDebugger) \ No newline at end of file diff --git a/compiler/symbol_table/symbol_table.cc b/compiler/symbol_table/symbol_table.cc deleted file mode 100644 index fe9c5e5..0000000 --- a/compiler/symbol_table/symbol_table.cc +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright 2024 AQ authors, All Rights Reserved. -// This program is licensed under the AQ License. You can find the AQ license in -// the root directory. - -#include "compiler/symbol_table/symbol_table.h" - -#include "debugger/debugger.h" - -namespace Aq { - -} // namespace Aq \ No newline at end of file diff --git a/compiler/symbol_table/symbol_table.h b/compiler/symbol_table/symbol_table.h deleted file mode 100644 index 78fbf33..0000000 --- a/compiler/symbol_table/symbol_table.h +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2024 AQ authors, All Rights Reserved. -// This program is licensed under the AQ License. You can find the AQ license in -// the root directory. - -#ifndef AQ_COMPILER_SYMBOL_TABLE_SYMBOL_TABLE_H_ -#define AQ_COMPILER_SYMBOL_TABLE_SYMBOL_TABLE_H_ - -#include - -#include "compiler/compiler.h" -#include "debugger/debugger.h" - -namespace Aq { -class Compiler::SymbolTable {}; -} // namespace Aq - -#endif \ No newline at end of file