@@ -160,7 +160,7 @@ Options are:
160
160
@table @code
161
161
@item -c
162
162
Only output bytecode in a C file. The default is to output an executable file.
163
- @item -e
163
+ @item -e
164
164
Output @code {main() } and bytecode in a C file. The default is to output an
165
165
executable file.
166
166
@item -o output
@@ -489,7 +489,7 @@ optional properties:
489
489
to be UTF-8 encoded.
490
490
491
491
@item full
492
-
492
+
493
493
Boolean (default = false). If true, return the an object contains
494
494
the properties @code {response } (response content),
495
495
@code {responseHeaders } (headers separated by CRLF), @code {status }
@@ -596,7 +596,7 @@ Available exports:
596
596
Open a file. Return a handle or < 0 if error.
597
597
598
598
@item O_RDONLY
599
- @item O_WRONLY
599
+ @item O_WRONLY
600
600
@item O_RDWR
601
601
@item O_APPEND
602
602
@item O_CREAT
@@ -734,7 +734,7 @@ object containing optional parameters:
734
734
terminated. In this case, @code {exec } return the exit code if positive
735
735
or the negated signal number if the process was interrupted by a
736
736
signal. If false, do not block and return the process id of the child.
737
-
737
+
738
738
@item usePath
739
739
Boolean (default = true). If true, the file is searched in the
740
740
@code {PATH } environment variable.
@@ -758,7 +758,7 @@ object containing optional parameters:
758
758
@item uid
759
759
Integer. If present, the process uid with @code {setuid }.
760
760
761
- @item gid
761
+ @item gid
762
762
Integer. If present, the process gid with @code {setgid }.
763
763
764
764
@end table
@@ -829,7 +829,7 @@ The worker instances have the following properties:
829
829
830
830
@table @code
831
831
@item postMessage(msg)
832
-
832
+
833
833
Send a message to the corresponding worker. @code {msg } is cloned in
834
834
the destination worker using an algorithm similar to the @code {HTML }
835
835
structured clone algorithm. @code {SharedArrayBuffer } are shared
@@ -972,7 +972,7 @@ The compiler generates bytecode directly with no intermediate
972
972
representation such as a parse tree, hence it is very fast. Several
973
973
optimizations passes are done over the generated bytecode.
974
974
975
- A stack-based bytecode was chosen because it is simple and generates
975
+ A stack-based bytecode was chosen because it is simple and generates
976
976
compact code.
977
977
978
978
For each function, the maximum stack size is computed at compile time so that
0 commit comments