Add support for a much space and time efficient intermediate binary code representation, between dart and execution, like java's bytecode #93
Closed
gintominto5329
started this conversation in
Ideas
Replies: 1 comment 1 reply
-
This library is already doing that :) it is called EVC bytecode, you can see all of the bytecodes here |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
Is it possible, that we give an option to the user to first compile(actually transpile) the dart code to an intermediate format, which is binary, and not human readable, which can be used at runtime, this should not be mandatory, but optional for extra perf, and efficiency
For example
switch
keyword takes 6+1 chars, but in binary, each keyword could have a uInt16 code, henceswitch
the keyword will take at-most 2 bytes of storage, this will also boost the speed of parsing,@ethanblake4
@fzyzcjy
thanks
Beta Was this translation helpful? Give feedback.
All reactions