diff options
| author | Kai Gunger <kgunger12@gmail.com> | 2026-04-29 02:23:24 -0400 |
|---|---|---|
| committer | Kai Gunger <kgunger12@gmail.com> | 2026-04-29 02:23:24 -0400 |
| commit | 31b1dc66982320aa3f4279bd066129e2a110e543 (patch) | |
| tree | 450be8b9b755bf3d3e07f5d4f0ae6f9d5213d43c | |
| parent | 84eb185812b70ec900ec8607bced68da440ae7a2 (diff) | |
[tnslc] Remove a couple superfluous prints
| -rw-r--r-- | tnslc/compile/function.tnsl | 4 | ||||
| -rw-r--r-- | tnslc/compile/scope.tnsl | 3 |
2 files changed, 0 insertions, 7 deletions
diff --git a/tnslc/compile/function.tnsl b/tnslc/compile/function.tnsl index 4735824..0a22f8d 100644 --- a/tnslc/compile/function.tnsl +++ b/tnslc/compile/function.tnsl @@ -428,10 +428,6 @@ struct Function { return ;/ - _printf("Looks like we found \"") - _printf(sub`.data) - _printf("\" for make setting\n\0") - /; if (sub`.sub.count > 0) sub = sub`.sub.get(0) Var val = self._compile_value(s, sub) diff --git a/tnslc/compile/scope.tnsl b/tnslc/compile/scope.tnsl index 81f4f4b..ebfc671 100644 --- a/tnslc/compile/scope.tnsl +++ b/tnslc/compile/scope.tnsl @@ -335,9 +335,6 @@ struct Scope { ;/ /; mk_set_var (~Var src) [~Var] - _printf("Make setting \"\0") - _printf(src`.name) - _printf("\"\n\0") ~Var v = self.mk_var(src) /; if (v == NULL) |