This commit is contained in:
TopchetoEU 2025-01-17 00:48:36 +02:00
commit a08e062ddc
Signed by: topchetoeu
GPG Key ID: 6531B8583E5F6ED4

View File

@ -8,7 +8,7 @@ Finally, you can write mixed JS and C code, which can allow for very expressive
## How do we intend on achieving this?
Since a lot of self-hosted JS parsers exists, one of them could simply be used to compile EcmaNext code to C - it's a (somewhat) simple tree transformation problem. From there on, we just get an off-the-shelf C compiler, and compile the code, linked with a specially-crafted runtime.
Since a lot of self-hosted JS parsers exist, one of them could simply be used to compile EcmaNext code to C - it's a (somewhat) simple tree transformation problem. From there on, we just get an off-the-shelf C compiler, and compile the code, linked with a specially-crafted runtime.
## The runtime