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

Split Multi-Variable Declarations #271

Merged
merged 1 commit into from Dec 7, 2020

Conversation

p42-ai[bot]
Copy link
Contributor

@p42-ai p42-ai bot commented Dec 7, 2020

Convert variable declarations with multiple variables into separate declarations that declare one variable each.

For example,

let a = 2, b;

is converted into

let a = 2;
let b;

**Convert variable declarations with multiple variables into separate declarations that declare one variable each.**

For example, 
```
let a = 2, b;
``` 
is converted into 
```
let a = 2;
let b;
```
@domoritz domoritz merged commit 0fb5d83 into master Dec 7, 2020
@domoritz domoritz deleted the p42/unchain_variable_declarations/1607377568129 branch December 7, 2020 21:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant