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 @@
#pragma once
#include "interpreter/bytecode.h"
#include "core/object.h"
#include "interpreter/ByteCode.hpp"
#include "core/Object.hpp"
namespace obj {
namespace BCgen {

View file

@ -4,7 +4,7 @@
#include <string>
#include "Buffer.hpp"
#include "interpreter/opcodes.h"
#include "interpreter/OperatoinCodes.hpp"
namespace obj::BCgen {

View file

@ -5,9 +5,9 @@
#include "List.hpp"
#include "Map.hpp"
#include "instruction.h"
#include "statement.h"
#include "constants.h"
#include "Instructions.hpp"
#include "Statements.hpp"
#include "Constants.hpp"
namespace obj {
struct MethodObject;

View file

@ -1,9 +1,9 @@
#pragma once
#include "interpreter/opcodes.h"
#include "interpreter/OperatoinCodes.hpp"
#include "core/object.h"
#include "core/Object.hpp"
#include "List.hpp"

View file

@ -1,7 +1,7 @@
#pragma once
#include "expression.h"
#include "Expressions.hpp"
namespace obj::BCgen {
struct Statement {