-
Notifications
You must be signed in to change notification settings - Fork 2
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
Experiment. #173
Closed
Closed
Experiment. #173
Conversation
This file contains 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
Cool! Because this diverges from the documented Motoko grammar / semantics, it might make sense to keep this on a separate fork or branch (similar to the Motoko-san VS Code extension). WDYT? |
Good idea. FWIW, I also want this project to still act like "the spec" of Motoko when desired, where these features are disabled entirely. |
…er for those literal cases.
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.
Experiment: Incremental Motoko.
Add a small handful of general-purpose incremental computing primitives to Motoko (see adapton.org).
Specifically, this PR adds the following:
@ e1 := e2
),force
of the internal expression body (written asdo @ e1 { e2 }
).memo e
).@ e
).thunk { e }
(new value introduction form for thunk values).force
thunk.force
thunk pointer.Symbol literals
Generally written
$( ... )
), act as programmer-chosen names:$(1)
, and also just$1
)$(foo)
, and also just$foo
)$(foo-1)
or$(foo.1)
, where outer parens are required in each case).Numbers as symbols
Numbers are implicitly coerced into symbols when a symbol is needed to put, or get, etc.
(In the future,
Text
values can also easily be implicitly converted into identifier symbols, if we so choose that, but they may contain a lot of strange characters, so it's a reason to avoid it now.)Basic properties of operators
The following assertions pass:
Symbol operators
Symbol operators
.
and-
combine symbol values operationally.Just as with the existing syntax cases, the
.
operator binds tighter than-
, and both associate to the left.