diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-16 19:46:23 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-16 19:46:23 +0330 |
commit | d2eb0913ecb287d8a1370e6699e486e7af430bcb (patch) | |
tree | 6c6411404e57a8fd442ab821991f5580eb54243c /src/runner/runner.h | |
parent | 62d0709a85a8027d212689aa1995a997152d4f32 (diff) |
cleaning up more
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r-- | src/runner/runner.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h index e78f568..820ea34 100644 --- a/src/runner/runner.h +++ b/src/runner/runner.h @@ -13,8 +13,7 @@ AstTree *runAstTreeFunction(AstTree *tree, AstTree **arguments, size_t arguments_size, bool isComptime); AstTree *runAstTreeBuiltin(AstTree *tree, AstTreeScope *scope, - AstTree **arguments, size_t arguments_size, - bool isComptime); + AstTree **arguments); AstTree *runExpression(AstTree *expr, AstTreeScope *scope, bool *shouldRet, bool isLeft, bool isComptime, u32 *breakCount, @@ -24,4 +23,4 @@ AstTree *getForVariable(AstTree *expr, AstTreeScope *scope, bool *shouldRet, bool isLeft, bool isComptime, u32 *breakCount, bool *shouldContinue, bool isLazy); -bool discontinue(bool *shouldRet, u32 *breakCount); +bool discontinue(bool shouldRet, u32 breakCount); |