-
Notifications
You must be signed in to change notification settings - Fork 75
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
feature enhancement - implement unique ID generated at compile time #138
base: main
Are you sure you want to change the base?
Conversation
FYI - I am not able to run tests on my laptop because the command
I have tried to set The CI doesn't seem to run on this PR automatically either. I'm not sure how to proceed, please help. |
looks like you're using the mill-assembly jar directly (which is supposed to be downloaded and used by the scripts), instead of a mill script (either to official |
I did |
Finally I figured out that I should have run Tests pass now on my local machine. |
Looks like |
A "source UUID" is a unique ID generated at compile time at a given source code location. So, the value of
SourceUUID
depends only on the source code location and will be the same each time that code is executed.Motivation for this feature is to be able to generate unique IDs at compile time for values created in a DSL. The IDs should remain unique even when values are created within a function that is being called several times. In this way, the IDs serve as unique labels on values created via DSL code.