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,10 +1,10 @@
#pragma once
#include "opcodes.h"
#include "OperatoinCodes.hpp"
#include "primitives/intobject.h"
#include "primitives/stringobject.h"
#include "primitives/IntObject.hpp"
#include "primitives/StringObject.hpp"
#include "Buffer.hpp"
#include <string>

View file

@ -1,7 +1,7 @@
#pragma once
#include "core/object.h"
#include "primitives/classobject.h"
#include "core/Object.hpp"
#include "primitives/ClassObject.hpp"
#include "Map.hpp"

View file

@ -1,8 +1,8 @@
#pragma once
#include "operandsstack.h"
#include "scopestack.h"
#include "callstack.h"
#include "OperandsStack.hpp"
#include "ScopeStack.hpp"
#include "CallStack.hpp"
namespace obj {
struct Interpreter {

View file

@ -1,7 +1,7 @@
#pragma once
#include "bytecode.h"
#include "core/object.h"
#include "ByteCode.hpp"
#include "core/Object.hpp"
namespace obj {

View file

@ -1,6 +1,6 @@
#pragma once
#include "core/object.h"
#include "core/Object.hpp"
#include "Map.hpp"
namespace obj {

View file

@ -1,6 +1,6 @@
#pragma once
#include "interpreter/bytecode.h"
#include "interpreter/ByteCode.hpp"
namespace obj {
struct Script {