Apply cpp naming to files

This commit is contained in:
IlyaShurupov 2024-03-23 12:09:51 +03:00
parent 430ba869d0
commit 9a9262f6d0
73 changed files with 160 additions and 160 deletions

View file

@ -1,8 +1,8 @@
#include "interpreter/callstack.h"
#include "interpreter/CallStack.hpp"
#include "interpreter/bytecode.h"
#include "primitives/methodobject.h"
#include "interpreter/ByteCode.hpp"
#include "primitives/MethodObject.hpp"
using namespace obj;

View file

@ -1,7 +1,7 @@
#include "interpreter/interpreter.h"
#include "interpreter/Interpreter.hpp"
#include "primitives/primitives.h"
#include "primitives/PrimitiveObjects.hpp"
#include "Timing.hpp"

View file

@ -1,5 +1,5 @@
#include "interpreter/operandsstack.h"
#include "interpreter/OperandsStack.hpp"
using namespace obj;

View file

@ -1,7 +1,7 @@
#include "Utils.hpp"
#include "interpreter/opcodes.h"
#include "interpreter/OperatoinCodes.hpp"
namespace obj {
OpcodeInfos gOpcodeInfos;

View file

@ -1,5 +1,5 @@
#include "interpreter/scopestack.h"
#include "interpreter/ScopeStack.hpp"
using namespace obj;