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

Fixes on concurrent_tests.v #436

Merged
merged 6 commits into from
Dec 29, 2023
Merged

Fixes on concurrent_tests.v #436

merged 6 commits into from
Dec 29, 2023

Conversation

InfiniteEchoes
Copy link
Collaborator

@InfiniteEchoes InfiniteEchoes commented Dec 28, 2023

  • Changed Error struct in literals.v to be under error module
  • Changed Range struct in core/ops.v and std/ops.v to be under ranged module
  • Added respective substitutions in path.rs

@InfiniteEchoes InfiniteEchoes changed the title Modify Error in literals.v Fixes on concurrent_tests.v Dec 29, 2023
lib/src/path.rs Outdated
@@ -170,6 +170,12 @@ pub(crate) fn to_valid_coq_name(str: &str) -> String {
return format!("{}_", str);
}

let reserved_struct_names = ["end"];

if reserved_struct_names.contains(&str) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"end" can be added to the reserved_names list above.

@clarus clarus merged commit 89c6124 into main Dec 29, 2023
1 check passed
@clarus clarus deleted the gy@ChangeLiteralsError branch December 29, 2023 13:38
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.

2 participants