@@ -442,7 +442,7 @@ struct JSContext {
442
442
/* if NULL, eval is not supported */
443
443
JSValue (*eval_internal)(JSContext *ctx, JSValue this_obj,
444
444
const char *input, size_t input_len,
445
- const char *filename, int flags, int scope_idx);
445
+ const char *filename, int line, int flags, int scope_idx);
446
446
void *user_opaque;
447
447
};
448
448
@@ -1255,7 +1255,7 @@ static void js_async_function_resolve_mark(JSRuntime *rt, JSValue val,
1255
1255
JS_MarkFunc *mark_func);
1256
1256
static JSValue JS_EvalInternal(JSContext *ctx, JSValue this_obj,
1257
1257
const char *input, size_t input_len,
1258
- const char *filename, int flags, int scope_idx);
1258
+ const char *filename, int line, int flags, int scope_idx);
1259
1259
static void js_free_module_def(JSContext *ctx, JSModuleDef *m);
1260
1260
static void js_mark_module_def(JSRuntime *rt, JSModuleDef *m,
1261
1261
JS_MarkFunc *mark_func);
@@ -33359,12 +33359,12 @@ static __exception int js_parse_program(JSParseState *s)
33359
33359
33360
33360
static void js_parse_init(JSContext *ctx, JSParseState *s,
33361
33361
const char *input, size_t input_len,
33362
- const char *filename)
33362
+ const char *filename, int line )
33363
33363
{
33364
33364
memset(s, 0, sizeof(*s));
33365
33365
s->ctx = ctx;
33366
33366
s->filename = filename;
33367
- s->line_num = 1 ;
33367
+ s->line_num = line ;
33368
33368
s->col_num = 1;
33369
33369
s->buf_start = s->buf_ptr = (const uint8_t *)input;
33370
33370
s->buf_end = s->buf_ptr + input_len;
@@ -33416,7 +33416,7 @@ JSValue JS_EvalFunction(JSContext *ctx, JSValue fun_obj)
33416
33416
/* `export_name` and `input` may be pure ASCII or UTF-8 encoded */
33417
33417
static JSValue __JS_EvalInternal(JSContext *ctx, JSValue this_obj,
33418
33418
const char *input, size_t input_len,
33419
- const char *filename, int flags, int scope_idx)
33419
+ const char *filename, int line, int flags, int scope_idx)
33420
33420
{
33421
33421
JSParseState s1, *s = &s1;
33422
33422
int err, eval_type;
@@ -33428,7 +33428,7 @@ static JSValue __JS_EvalInternal(JSContext *ctx, JSValue this_obj,
33428
33428
JSModuleDef *m;
33429
33429
bool is_strict_mode;
33430
33430
33431
- js_parse_init(ctx, s, input, input_len, filename);
33431
+ js_parse_init(ctx, s, input, input_len, filename, line );
33432
33432
skip_shebang(&s->buf_ptr, s->buf_end);
33433
33433
33434
33434
eval_type = flags & JS_EVAL_TYPE_MASK;
@@ -33458,7 +33458,7 @@ static JSValue __JS_EvalInternal(JSContext *ctx, JSValue this_obj,
33458
33458
is_strict_mode = true;
33459
33459
}
33460
33460
}
33461
- fd = js_new_function_def(ctx, NULL, true, false, filename, 1 , 1);
33461
+ fd = js_new_function_def(ctx, NULL, true, false, filename, line , 1);
33462
33462
if (!fd)
33463
33463
goto fail1;
33464
33464
s->cur_func = fd;
@@ -33531,12 +33531,12 @@ static JSValue __JS_EvalInternal(JSContext *ctx, JSValue this_obj,
33531
33531
/* the indirection is needed to make 'eval' optional */
33532
33532
static JSValue JS_EvalInternal(JSContext *ctx, JSValue this_obj,
33533
33533
const char *input, size_t input_len,
33534
- const char *filename, int flags, int scope_idx)
33534
+ const char *filename, int line, int flags, int scope_idx)
33535
33535
{
33536
33536
if (unlikely(!ctx->eval_internal)) {
33537
33537
return JS_ThrowTypeError(ctx, "eval is not supported");
33538
33538
}
33539
- return ctx->eval_internal(ctx, this_obj, input, input_len, filename,
33539
+ return ctx->eval_internal(ctx, this_obj, input, input_len, filename, line,
33540
33540
flags, scope_idx);
33541
33541
}
33542
33542
@@ -33552,7 +33552,7 @@ static JSValue JS_EvalObject(JSContext *ctx, JSValue this_obj,
33552
33552
str = JS_ToCStringLen(ctx, &len, val);
33553
33553
if (!str)
33554
33554
return JS_EXCEPTION;
33555
- ret = JS_EvalInternal(ctx, this_obj, str, len, "<input>", flags, scope_idx);
33555
+ ret = JS_EvalInternal(ctx, this_obj, str, len, "<input>", 1, flags, scope_idx);
33556
33556
JS_FreeCString(ctx, str);
33557
33557
return ret;
33558
33558
@@ -33562,20 +33562,52 @@ JSValue JS_EvalThis(JSContext *ctx, JSValue this_obj,
33562
33562
const char *input, size_t input_len,
33563
33563
const char *filename, int eval_flags)
33564
33564
{
33565
+ JSEvalOptions options = {
33566
+ .version = JS_EVAL_OPTIONS_VERSION,
33567
+ .filename = filename,
33568
+ .line_num = 1,
33569
+ .eval_flags = eval_flags
33570
+ };
33571
+ return JS_EvalThis2(ctx, this_obj, input, input_len, &options);
33572
+ }
33573
+
33574
+ JSValue JS_EvalThis2(JSContext *ctx, JSValue this_obj,
33575
+ const char *input, size_t input_len,
33576
+ JSEvalOptions *options)
33577
+ {
33578
+ const char *filename = "<unnamed>";
33579
+ int line = 1;
33580
+ int eval_flags = 0;
33581
+ if (options) {
33582
+ if (options->filename)
33583
+ filename = options->filename;
33584
+ line = options->line_num;
33585
+ eval_flags = options->eval_flags;
33586
+ }
33565
33587
JSValue ret;
33566
33588
33567
33589
assert((eval_flags & JS_EVAL_TYPE_MASK) == JS_EVAL_TYPE_GLOBAL ||
33568
33590
(eval_flags & JS_EVAL_TYPE_MASK) == JS_EVAL_TYPE_MODULE);
33569
- ret = JS_EvalInternal(ctx, this_obj, input, input_len, filename,
33591
+ ret = JS_EvalInternal(ctx, this_obj, input, input_len, filename, line,
33570
33592
eval_flags, -1);
33571
33593
return ret;
33572
33594
}
33573
33595
33574
33596
JSValue JS_Eval(JSContext *ctx, const char *input, size_t input_len,
33575
33597
const char *filename, int eval_flags)
33576
33598
{
33577
- return JS_EvalThis(ctx, ctx->global_obj, input, input_len, filename,
33578
- eval_flags);
33599
+ JSEvalOptions options = {
33600
+ .version = JS_EVAL_OPTIONS_VERSION,
33601
+ .filename = filename,
33602
+ .line_num = 1,
33603
+ .eval_flags = eval_flags
33604
+ };
33605
+ return JS_EvalThis2(ctx, ctx->global_obj, input, input_len, &options);
33606
+ }
33607
+
33608
+ JSValue JS_Eval2(JSContext *ctx, const char *input, size_t input_len, JSEvalOptions *options)
33609
+ {
33610
+ return JS_EvalThis2(ctx, ctx->global_obj, input, input_len, options);
33579
33611
}
33580
33612
33581
33613
int JS_ResolveModule(JSContext *ctx, JSValue obj)
@@ -45204,7 +45236,7 @@ JSValue JS_ParseJSON(JSContext *ctx, const char *buf, size_t buf_len, const char
45204
45236
JSParseState s1, *s = &s1;
45205
45237
JSValue val = JS_UNDEFINED;
45206
45238
45207
- js_parse_init(ctx, s, buf, buf_len, filename);
45239
+ js_parse_init(ctx, s, buf, buf_len, filename, 1 );
45208
45240
if (json_next_token(s))
45209
45241
goto fail;
45210
45242
val = json_parse_value(s);
@@ -56146,7 +56178,7 @@ bool JS_DetectModule(const char *input, size_t input_len)
56146
56178
return false;
56147
56179
}
56148
56180
JS_AddIntrinsicRegExp(ctx); // otherwise regexp literals don't parse
56149
- val = __JS_EvalInternal(ctx, JS_UNDEFINED, input, input_len, "<unnamed>",
56181
+ val = __JS_EvalInternal(ctx, JS_UNDEFINED, input, input_len, "<unnamed>", 1,
56150
56182
JS_EVAL_TYPE_MODULE|JS_EVAL_FLAG_COMPILE_ONLY, -1);
56151
56183
if (JS_IsException(val)) {
56152
56184
const char *msg = JS_ToCString(ctx, rt->current_exception);
0 commit comments