diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2025-12-07 19:07:20 -0500 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2025-12-07 19:07:20 -0500 |
| commit | db29085af649f8a42958898aaf2c3bfcef67f385 (patch) | |
| tree | 1252cdb1947701541e4898b80898f51743809e44 /tnslc/compile/function.tnsl | |
| parent | daedfe9e1684ae855e2a4cf21249e1274ff8484d (diff) | |
change how methods are resolved
Diffstat (limited to 'tnslc/compile/function.tnsl')
| -rw-r--r-- | tnslc/compile/function.tnsl | 2 |
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) ;/ |