summaryrefslogtreecommitdiff
path: root/tnslc/compile/function.tnsl
diff options
context:
space:
mode:
authorKai Gunger <kgunger12@gmail.com>2025-12-07 19:07:20 -0500
committerKai Gunger <kgunger12@gmail.com>2025-12-07 19:07:20 -0500
commitdb29085af649f8a42958898aaf2c3bfcef67f385 (patch)
tree1252cdb1947701541e4898b80898f51743809e44 /tnslc/compile/function.tnsl
parentdaedfe9e1684ae855e2a4cf21249e1274ff8484d (diff)
change how methods are resolved
Diffstat (limited to 'tnslc/compile/function.tnsl')
-rw-r--r--tnslc/compile/function.tnsl2
1 files changed, 1 insertions, 1 deletions
diff --git a/tnslc/compile/function.tnsl b/tnslc/compile/function.tnsl
index 73188b8..d55579e 100644
--- a/tnslc/compile/function.tnsl
+++ b/tnslc/compile/function.tnsl
@@ -108,7 +108,7 @@ struct Function {
# Add all params to the scope
~Var in
/; loop (int i = 0; i < self.inputs.count) [i++]
- inp = self.inputs.get(i)
+ in = self.inputs.get(i)
out.mk_set_var(in)
;/