From 18e186677ee99f9c85ff5167e59d9e21c73538e2 Mon Sep 17 00:00:00 2001 From: "hyunghwan.chung" Date: Fri, 12 Jul 2019 05:06:05 +0000 Subject: [PATCH] simplified source line and source text representation of a methond in dbgi --- moo/lib/exec.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/moo/lib/exec.c b/moo/lib/exec.c index d2d2269..20f2742 100644 --- a/moo/lib/exec.c +++ b/moo/lib/exec.c @@ -2262,9 +2262,7 @@ static moo_pfrc_t pf_method_get_source_file (moo_t* moo, moo_mod_t* mod, moo_ooi MOO_ASSERT (moo, MOO_DBGI_GET_TYPE_CODE(di->_type) == MOO_DBGI_TYPE_CODE_FILE); file_name = (const moo_ooch_t*)(di + 1); - moo_pushvolat (moo, &retv); retv = moo_makestring(moo, file_name, moo_count_oocstr(file_name)); - moo_popvolat (moo); if (!retv) return MOO_PF_FAILURE; } }