-
-
Notifications
You must be signed in to change notification settings - Fork 154
More Syntax Changes #528
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
Closed
Closed
More Syntax Changes #528
Conversation
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
0bff006
to
f0928fa
Compare
I love these changes! Especially the short enum options. I use enums like this in Swift all the time, and I definitely prefer it. |
ab9931d
to
0b20457
Compare
This commit makes it so that ambigous uppercase entities (enum ids, constants and records) can be resolved correctly.
5ae573c
to
bf17ce3
Compare
wouldn't piping stop work without partial application? |
0d69bff
to
149292b
Compare
I'm closing this because parts of it were cherry-picked into #503 and some will be not implemented at this point (OO style calls). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This is the second set of big syntax changes, it's a separate PR, so we can do this in parts, and it's pointing to the
code-blocks
branch for readability purposes since it'b based on that.Removed Partial Application
Since Mint isn't a typical functional language it doesn't really make sense to have partial application without other functional language features like operators for function composition. It also blocks the other two features introduced in this PR.
Default Arguments
You can now add default arguments to functions:
Short Enum Options
It is now possible to use enum options without specifying the enum itself:
We need the:
prefix because otherwise it would conflict with record constructors which I think we could remove from the language, but I need feedback to decide thatOO Style Calls
It is now possible to call functions in an object-oriented fashion.
This works like this:
"Joe"
)There are benefits to this:
There are drawbacks to this as well:
PS: There might be other changes in this PR in the future.