19
19
QuickJSDemo,RawExecution;
20
20
21
21
22
- function eval_buf (ctx : JSContext; Buf : PChar; buf_len : Integer; filename : PChar; eval_flags : Integer): Integer;
22
+ function eval_buf (ctx: JSContext; Buf: PChar; buf_len: integer;
23
+ filename: PChar; is_main : boolean; eval_flags: integer = -1 ): JSValue;
23
24
var
24
- val : JSValue;
25
+ ret : JSValue;
25
26
begin
26
- val := JS_Eval(ctx, buf, buf_len, filename, eval_flags);
27
- if JS_IsException(val) then
27
+ if eval_flags = -1 then
28
+ begin
29
+ if JS_DetectModule(Buf,buf_len) then
30
+ eval_flags := JS_EVAL_TYPE_MODULE
31
+ else
32
+ eval_flags := JS_EVAL_TYPE_GLOBAL;
33
+ end ;
34
+
35
+ if (eval_flags and JS_EVAL_TYPE_MASK) = JS_EVAL_TYPE_MODULE then
36
+ begin
37
+ ret := JS_Eval(ctx, buf, buf_len, filename, eval_flags or JS_EVAL_FLAG_COMPILE_ONLY);
38
+ if not JS_IsException(ret) then
39
+ begin
40
+ js_module_set_import_meta(ctx, ret, True, is_main);
41
+ ret := JS_EvalFunction(ctx, ret);
42
+ end ;
43
+ end
44
+ else
45
+ ret := JS_Eval(ctx, buf, buf_len, filename, eval_flags);
46
+
47
+ if JS_IsException(ret) then
28
48
begin
29
49
js_std_dump_error(ctx);
30
- Result := - 1 ;
50
+ Result := JS_NULL ;
31
51
end
32
52
else
33
- Result := 0 ;
34
- JS_FreeValue(ctx, val);
53
+ Result := ret;
35
54
end ;
36
55
37
- function eval_file (ctx : JSContext; filename : PChar; eval_flags : Integer): Integer ;
56
+ function eval_file (ctx : JSContext; filename : PChar; eval_flags : Integer = - 1 ): JSValue ;
38
57
var
39
58
buf_len : size_t;
40
59
Buf : Pointer;
@@ -43,9 +62,9 @@ function eval_file(ctx : JSContext; filename : PChar; eval_flags : Integer): Int
43
62
if not Assigned(buf) then
44
63
begin
45
64
Writeln(' Error While Loading : ' ,filename);
46
- exit(1 );
65
+ exit(JS_EXCEPTION );
47
66
end ;
48
- Result := eval_buf(ctx, buf, buf_len, filename, eval_flags);
67
+ Result := eval_buf(ctx, buf, buf_len, filename, true, eval_flags);
49
68
js_free(ctx, buf);
50
69
end ;
51
70
@@ -94,7 +113,7 @@ procedure RunCode();
94
113
// ES6 Module loader.
95
114
JS_SetModuleLoaderFunc(rt, nil , @js_module_loader, nil );
96
115
97
- js_std_add_helpers(ctx,argc, argv);
116
+ js_std_add_helpers(ctx,argc- 1 ,@ argv[ 1 ] );
98
117
js_init_module_std(ctx, ' std' );
99
118
js_init_module_os(ctx, ' os' );
100
119
@@ -111,7 +130,7 @@ procedure RunCode();
111
130
m := JS_NewCModule(ctx, ' Cmu' , @Emu_init);
112
131
JS_AddModuleExport(ctx,m,' ApiHook' );
113
132
114
- eval_buf(ctx, std_hepler, strlen(std_hepler), ' <global_helper>' , JS_EVAL_TYPE_MODULE);
133
+ eval_buf(ctx, std_hepler, strlen(std_hepler), ' <global_helper>' , False, JS_EVAL_TYPE_MODULE);
115
134
116
135
117
136
global := JS_GetGlobalObject(ctx);
@@ -124,7 +143,7 @@ procedure RunCode();
124
143
if ParamCount >= 1 then
125
144
begin
126
145
filename := PChar(ParamStr(1 ));
127
- eval_file(ctx,filename,JS_EVAL_TYPE_GLOBAL { or JS_EVAL_TYPE_MODULE } );
146
+ eval_file(ctx,filename);
128
147
end ;
129
148
130
149
js_std_loop(ctx);
@@ -140,6 +159,7 @@ procedure RunCode();
140
159
141
160
142
161
begin
162
+ { TODO -oColdzer0 : RawTest Bytes need to be updated }
143
163
// RawTest; // If you unComment this comment the next line.
144
164
RunCode;
145
165
end .
0 commit comments