aboutsummaryrefslogtreecommitdiff
path: root/compile.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-09-04 05:05:31 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-09-04 05:05:31 -0400
commit97a964aa861e7c0066a0bf1f67469fbb93febcad (patch)
tree02d46451d6f1e95f293287a78bcd83fb3214786e /compile.c
parentaf15e89303ba7e37e9f25c2cead4910ab5d09202 (diff)
Implicit filename for table getting
Diffstat (limited to 'compile.c')
-rw-r--r--compile.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/compile.c b/compile.c
index 7b936829..5cc37116 100644
--- a/compile.c
+++ b/compile.c
@@ -2469,7 +2469,6 @@ CORD compile(env_t *env, ast_t *ast)
file_t *f = ast->file;
return CORD_all("Table$get_value_or_fail(", self, ", ", compile_type(table->key_type), ", ", compile_type(table->value_type), ", ",
compile_arguments(env, ast, arg_spec, call->args), ", ", compile_type_info(env, self_value_t), ", ",
- CORD_quoted(f->filename), ", ",
CORD_asprintf("%ld", (int64_t)(ast->start - f->text)), ", ",
CORD_asprintf("%ld", (int64_t)(ast->end - f->text)),
")");