Skip to content
New issue

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

Join Consecutive Constant/Variable Declaration in Compile Result #126

Open
Alexius-Huang opened this issue Jun 14, 2020 · 0 comments
Open

Comments

@Alexius-Huang
Copy link
Owner

Alexius-Huang commented Jun 14, 2020

What?
We can join consecutive constant/variable declaration into a single line.

Why?
A way of minimize the compilation result.

For instance, the code below:

Num foo = 123
Num bar = foo + 456
Num baz = foo + 789 * bar

originally compiles into:

const foo = 123;
const bar = foo + 456;
const baz = foo + (789 * bar);

It can be minimize into:

const foo = 123, bar = foo + 456, baz = foo + (789 * bar);

How?
Introduce a new optimization option joinConsecutiveVarOrConstDeclaration, if the option is true, returns the minimize result.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant