We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Backend to produce a self-descriptive bytecode format, to be converted to text on client side.
This will enable:
better constants display (currently: FNEW 0 0 ; <main.lua>:1);
FNEW 0 0 ; <main.lua>:1
branch target discovery independent of the text format (FORI 1 => 0008);
FORI 1 => 0008
to visually discriminate between different classes of immediate integer arguments in instructions (MODVN 5 4 0 );
MODVN 5 4 0
to assign meaningful names to prototypes (based on the target of FNEW assignment + debug info).
FNEW
Doing it on client side will make it possible for the old saved states (sharing) to benefit from new application features.
Pre-req for #7
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Backend to produce a self-descriptive bytecode format, to be converted to text on client side.
This will enable:
better constants display (currently:
FNEW 0 0 ; <main.lua>:1
);branch target discovery independent of the text format (
FORI 1 => 0008
);to visually discriminate between different classes of immediate integer arguments in instructions (
MODVN 5 4 0
);to assign meaningful names to prototypes (based on the target of
FNEW
assignment + debug info).Doing it on client side will make it possible for the old saved states (sharing) to benefit from new application features.
Pre-req for #7
The text was updated successfully, but these errors were encountered: