diff --git a/qjs.c b/qjs.c index 6311113..7ca9e64 100644 --- a/qjs.c +++ b/qjs.c @@ -668,8 +668,6 @@ start: eval_buf(ctx, str, strlen(str), "", JS_EVAL_TYPE_MODULE); } - // polyfiller(ctx); - for(i = 0; i < include_count; i++) { if (eval_file(ctx, include_list[i], 0)) goto fail; @@ -714,14 +712,16 @@ start: if (eval_file(ctx, filename, module)) goto fail; } - - polyfiller(ctx); if (interactive) { + polyfiller(ctx); + js_std_eval_binary(ctx, qjsc_repl, qjsc_repl_size, 0); } if (standalone || compile_file) { + polyfiller(ctx); + if (JS_IsException(ret)) { r = 1; } else {