]> git.leonardobizzoni.com Git - LBPL/commit
Changed `src` file structure
authorLeonardoBizzoni <leo2002714@gmail.com>
Fri, 6 Sep 2024 13:12:38 +0000 (15:12 +0200)
committerLeonardoBizzoni <leo2002714@gmail.com>
Fri, 6 Sep 2024 13:12:38 +0000 (15:12 +0200)
commit14208a27f5e793a94d76b331a1d20603472d7cf2
tree284b99e3e665a14e309440173dd0a996d79076d7
parent8c036d9582efe00e4588075d2e98ead4b6354130
Changed `src` file structure
36 files changed:
src/AST-generation/expressions.hpp [moved from src/expressions.hpp with 81% similarity]
src/AST-generation/lexer.cpp [moved from src/lexer.cpp with 99% similarity]
src/AST-generation/lexer.hpp [moved from src/lexer.hpp with 97% similarity]
src/AST-generation/parser.cpp [moved from src/parser.cpp with 99% similarity]
src/AST-generation/parser.hpp [moved from src/parser.hpp with 96% similarity]
src/AST-generation/statements.hpp [moved from src/statements.hpp with 81% similarity]
src/AST-generation/syntax_error.cpp [moved from src/syntax_error.cpp with 100% similarity]
src/AST-generation/syntax_error.hpp [moved from src/syntax_error.hpp with 96% similarity]
src/AST-generation/tokens/token.cpp [moved from src/token.cpp with 100% similarity]
src/AST-generation/tokens/token.hpp [moved from src/token.hpp with 100% similarity]
src/AST-generation/tokens/token_type.hpp [moved from src/token_type.hpp with 100% similarity]
src/LBPLClass.cpp [deleted file]
src/ast_printer.cpp [deleted file]
src/ast_printer.hpp [deleted file]
src/common.hpp [deleted file]
src/interpretation/builtin_methods.hpp [moved from src/builtin_methods.hpp with 97% similarity]
src/interpretation/environment.cpp [moved from src/environment.cpp with 98% similarity]
src/interpretation/environment.hpp [moved from src/environment.hpp with 92% similarity]
src/interpretation/interpreter.cpp [moved from src/interpreter.cpp with 99% similarity]
src/interpretation/interpreter.hpp [moved from src/interpreter.hpp with 93% similarity]
src/interpretation/resolver.cpp [moved from src/resolver.cpp with 97% similarity]
src/interpretation/resolver.hpp [moved from src/resolver.hpp with 91% similarity]
src/interpretation/runtime_error.cpp [moved from src/runtime_error.cpp with 100% similarity]
src/interpretation/runtime_error.hpp [moved from src/runtime_error.hpp with 88% similarity]
src/interpretation/tree_nodes.hpp [moved from src/tree_nodes.hpp with 100% similarity]
src/interpretation/types/LBPLCallable.hpp [moved from src/LBPLCallable.hpp with 100% similarity]
src/interpretation/types/LBPLClass.cpp [new file with mode: 0644]
src/interpretation/types/LBPLClass.hpp [moved from src/LBPLClass.hpp with 100% similarity]
src/interpretation/types/LBPLFunction.cpp [moved from src/LBPLFunction.cpp with 96% similarity]
src/interpretation/types/LBPLFunction.hpp [moved from src/LBPLFunction.hpp with 91% similarity]
src/interpretation/types/LBPLInstance.cpp [moved from src/LBPLInstance.cpp with 95% similarity]
src/interpretation/types/LBPLInstance.hpp [moved from src/LBPLInstance.hpp with 100% similarity]
src/interpretation/types/LBPLTypes.hpp [moved from src/LBPLTypes.hpp with 100% similarity]
src/interpretation/visitor.hpp [moved from src/visitor.hpp with 97% similarity]
src/main.cpp
src/main.hpp [deleted file]