Merged
Conversation
Allow a variable be unassigned at declaration if it is definitely assigned before the first usage
It holds internal/external/none addresses. It's a slice at runtime, but a dedicated type from the type system point of view. Auto-serialization will easily pack/unpack it. Operators == and != work on addresses.
This will help to create snake structs like
> struct Snake {
> data: ...;
> next: Cell<Snake?>;
> }
When `a.method()` is unknown, show a better error: - maybe, it's a global function - maybe, it exists for another type
> var p: Point = {
> y: getY(),
> x: getX()
> }
Now, `getY` will be evaluated first,
even though `x` is declared first in a struct.
A fully working auto-serialization is made within a big single commit. All types are supported. fromCell, toCell, loadAny, storeAny, etc. Typed cells, overflow detection, error messages, postfixes and opcodes, and more.
Now this works: > fun inc(x: int, by: int = 1) Will be used for serialization options.
Allow to control fromCell/toCell behavior
It's considered as "release candidate" (although there's still a lot of work ahead)
Tolk v0.13 (Release Candidate): Auto-packing to/from cells
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
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.
No description provided.