Skip to content

Commit 3b1ea6e

Browse files
add valType properties
1 parent 82b7695 commit 3b1ea6e

47 files changed

Lines changed: 122 additions & 29 deletions

Some content is hidden

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

Code/ContextSystem/Contexts/Control/BreakKeyword.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
using SER.Code.Helpers.ResultSystem;
66
using SER.Code.TokenSystem.Tokens;
77

8-
namespace SER.Code.ContextSystem.Contexts.Control.Loops;
8+
namespace SER.Code.ContextSystem.Contexts.Control;
99

1010
[UsedImplicitly]
1111
public class BreakKeyword : StandardContext, IKeywordContext

Code/ContextSystem/Contexts/FuncStatement.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
using SER.Code.TokenSystem.Tokens;
99
using SER.Code.TokenSystem.Tokens.VariableTokens;
1010
using SER.Code.ValueSystem;
11+
using SER.Code.ValueSystem.Other;
1112
using SER.Code.VariableSystem.Bases;
1213

1314
namespace SER.Code.ContextSystem.Contexts;

Code/ContextSystem/Contexts/MethodContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
using SER.Code.Plugin;
1414
using SER.Code.TokenSystem.Tokens;
1515
using SER.Code.ValueSystem;
16+
using SER.Code.ValueSystem.Other;
1617
using MethodToken = SER.Code.TokenSystem.Tokens.MethodToken;
1718

1819
namespace SER.Code.ContextSystem.Contexts;

Code/ContextSystem/Contexts/RunKeyword.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using SER.Code.TokenSystem.Tokens;
88
using SER.Code.TokenSystem.Tokens.Interfaces;
99
using SER.Code.ValueSystem;
10+
using SER.Code.ValueSystem.Other;
1011

1112
namespace SER.Code.ContextSystem.Contexts;
1213

Code/ContextSystem/Contexts/ValueExpressionContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
using SER.Code.TokenSystem.Tokens;
1111
using SER.Code.TokenSystem.Tokens.Interfaces;
1212
using SER.Code.ValueSystem;
13+
using SER.Code.ValueSystem.Other;
1314
using SER.Code.ValueSystem.PropertySystem;
1415

1516
namespace SER.Code.ContextSystem.Contexts;

Code/ContextSystem/Interfaces/IMayReturnValueContext.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using SER.Code.ValueSystem;
2+
using SER.Code.ValueSystem.Other;
23

34
namespace SER.Code.ContextSystem.Interfaces;
45

Code/MethodSystem/BaseMethods/Interfaces/IReturningMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using SER.Code.ValueSystem;
2+
using SER.Code.ValueSystem.Other;
23

34
namespace SER.Code.MethodSystem.BaseMethods.Interfaces;
45

Code/MethodSystem/BaseMethods/Synchronous/LiteralValueReturningMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using SER.Code.ValueSystem;
2+
using SER.Code.ValueSystem.Other;
23

34
namespace SER.Code.MethodSystem.BaseMethods.Synchronous;
45

Code/MethodSystem/BaseMethods/Synchronous/ReturningMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using SER.Code.MethodSystem.BaseMethods.Interfaces;
22
using SER.Code.ValueSystem;
3+
using SER.Code.ValueSystem.Other;
34

45
namespace SER.Code.MethodSystem.BaseMethods.Synchronous;
56

Code/MethodSystem/BaseMethods/Yielding/YieldingReturningMethod.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using SER.Code.MethodSystem.BaseMethods.Interfaces;
22
using SER.Code.ValueSystem;
3+
using SER.Code.ValueSystem.Other;
34

45
namespace SER.Code.MethodSystem.BaseMethods.Yielding;
56

0 commit comments

Comments
 (0)