Skip to content

Commit 915da11

Browse files
committed
Move new compiler code out of dev directory
1 parent 3509866 commit 915da11

File tree

138 files changed

+178
-190
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

138 files changed

+178
-190
lines changed

CMakeLists.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,14 @@ target_sources(scratchcpp
2222
include/scratchcpp/scratchconfiguration.h
2323
include/scratchcpp/iengine.h
2424
include/scratchcpp/iextension.h
25+
include/scratchcpp/compiler.h
26+
include/scratchcpp/compilercontext.h
27+
include/scratchcpp/compilervalue.h
28+
include/scratchcpp/compilerconstant.h
29+
include/scratchcpp/compilerlocalvariable.h
30+
include/scratchcpp/executablecode.h
31+
include/scratchcpp/executioncontext.h
32+
include/scratchcpp/promise.h
2533
include/scratchcpp/thread.h
2634
include/scratchcpp/asset.h
2735
include/scratchcpp/costume.h
@@ -55,15 +63,7 @@ target_sources(scratchcpp
5563
include/scratchcpp/comment.h
5664
include/scratchcpp/monitor.h
5765
include/scratchcpp/imonitorhandler.h
58-
include/scratchcpp/dev/compiler.h
59-
include/scratchcpp/dev/compilercontext.h
60-
include/scratchcpp/dev/compilervalue.h
61-
include/scratchcpp/dev/compilerconstant.h
62-
include/scratchcpp/dev/compilerlocalvariable.h
63-
include/scratchcpp/dev/executablecode.h
64-
include/scratchcpp/dev/executioncontext.h
65-
include/scratchcpp/dev/promise.h
66-
include/scratchcpp/dev/test/scriptbuilder.h
66+
include/scratchcpp/test/scriptbuilder.h
6767
)
6868

6969
if(LIBSCRATCHCPP_PRINT_LLVM_IR)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
#include <unordered_set>
66
#include <vector>
77

8-
#include "../global.h"
9-
#include "../spimpl.h"
8+
#include "global.h"
9+
#include "spimpl.h"
1010

1111
namespace libscratchcpp
1212
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#pragma once
44

5-
#include "../global.h"
6-
#include "../spimpl.h"
5+
#include "global.h"
6+
#include "spimpl.h"
77

88
namespace libscratchcpp
99
{
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <memory>
66

7-
#include "../global.h"
7+
#include "global.h"
88

99
namespace libscratchcpp
1010
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#pragma once
44

5-
#include "../global.h"
6-
#include "../spimpl.h"
5+
#include "global.h"
6+
#include "spimpl.h"
77

88
namespace libscratchcpp
99
{
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
#pragma once
44

5-
#include "../global.h"
6-
#include "../spimpl.h"
5+
#include "global.h"
6+
#include "spimpl.h"
77

88
namespace libscratchcpp
99
{

include/scratchcpp/dev/test/scriptbuilder.h renamed to include/scratchcpp/test/scriptbuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#include <vector>
66

7-
#include "../../inputvalue.h"
7+
#include "../inputvalue.h"
88

99
namespace libscratchcpp
1010
{

0 commit comments

Comments
 (0)