aboutsummaryrefslogtreecommitdiff
path: root/src/runner/runner.h
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-23 01:25:15 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2025-05-23 01:25:15 +0330
commit948ab739464733f4e7690488db8a3491f0e3b5e2 (patch)
tree33b29534401a2de9da02bd4909e1a01031a99a41 /src/runner/runner.h
parent0b85ea4a7b64ed583aaf0e323252c5f792c042a2 (diff)
added native values instead of ast ones
Diffstat (limited to 'src/runner/runner.h')
-rw-r--r--src/runner/runner.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runner/runner.h b/src/runner/runner.h
index 820ea34..789f0a9 100644
--- a/src/runner/runner.h
+++ b/src/runner/runner.h
@@ -24,3 +24,7 @@ AstTree *getForVariable(AstTree *expr, AstTreeScope *scope, bool *shouldRet,
bool *shouldContinue, bool isLazy);
bool discontinue(bool shouldRet, u32 breakCount);
+
+AstTree *toRawValue(AstTree *value);
+
+AstTree *castTo(AstTree *value,AstTree *to);