-
Notifications
You must be signed in to change notification settings - Fork 82
OS independent logical locs #2644
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
44df5d6
Add script to compare locs in JARs.
toinehartman d0aa898
Return results from TPL comparison.
toinehartman a22dcd4
Use newline-normalized MD5 hash of definitions.
toinehartman aeb5bdd
Simplify normalization.
toinehartman 3d1cba0
Merge remote-tracking branch 'origin/main' into fix/os-dependent-logi…
toinehartman 0822057
Replace move unparse normalization to hash function.
toinehartman 2eeeaab
Document comparison function.
toinehartman c252b2a
License for comparison file.
toinehartman fac8f0e
Ignore test until we find a robust approach.
toinehartman f4fb042
Remove all layout from definition signatures.
toinehartman b87e586
Align with Unicode standard instead of Rascal layout spec.
toinehartman ea3054c
Fix typo in tutor documentation.
toinehartman 4adbfde
Merge remote-tracking branch 'origin/main' into fix/os-dependent-logi…
toinehartman c01ae5c
Increase major version to better represent extent of changes.
toinehartman ea76126
Simplify whitespace check using Unicode categories.
toinehartman 52eb288
Rewrite: readability.
toinehartman b9b2856
Separate individual hash contributions.
toinehartman 9f0182e
Remove unused hash contribution rules.
toinehartman 511ac59
Merge remote-tracking branch 'origin/main' into fix/os-dependent-logi…
toinehartman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -553,6 +553,13 @@ loc rascalCreateLogicalLoc(Define def, str modelName, PathConfig pcfg){ | |
| return def.defined; | ||
| } | ||
|
|
||
| private str MD5_CONTRIB_SEPARATOR = "@"; | ||
| private map[str, str] MD5_ESCAPES = (MD5_CONTRIB_SEPARATOR: "\\<MD5_CONTRIB_SEPARATOR>"); | ||
|
|
||
| @synopsis{Hash a variable number of contributing values (MD5).} | ||
| str normalizedMD5Hash(value contribs...) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ik vind deze oplossing met varargs heel elegant. |
||
| = md5Hash(removeWhitespace(intercalate(MD5_CONTRIB_SEPARATOR, [escape("<c>", MD5_ESCAPES) | c <- contribs]))); | ||
|
|
||
| @memo{expireAfter(minutes=5),maximumSize(1000)} | ||
| rel[str shortName, str longName] getRascalModuleNames(PathConfig pcfg){ | ||
| longNames = {}; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mooi dit elimineren van de (kennelijk) niet meer gebruikte
md5ContribSym