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

Reserve identifiers starting with __ for compiler usage #639

Merged
merged 1 commit into from
Apr 11, 2024

Conversation

dalance
Copy link
Collaborator

@dalance dalance commented Apr 10, 2024

Closes #638

Migration guide

Change identifier name starting with __.

  • From
module {
    let __a: u32 = 1;
}
  • To
module {
    let _a: u32 = 1;
}

@dalance dalance enabled auto-merge April 11, 2024 07:55
@dalance dalance merged commit 159f8f0 into master Apr 11, 2024
6 checks passed
@dalance dalance deleted the reserve_system_ident branch May 2, 2024 11:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Reserve identifiers starting with __ for compiler usage
1 participant