-
Notifications
You must be signed in to change notification settings - Fork 35
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
Adds a 1.1 ValueWriter
setting for writing symbol text inline
#804
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
05d9217
Adds binary 1.1 read support for `flex_uint`, `(annotate)`
zslayton 7d14ea0
unit test tweak
zslayton e128009
Adds EncodedBinaryValue trait
zslayton 90b68d8
Rename ExpandedValueSource::EExp to SingletonEExp
zslayton 7739ad7
Makes raw iterators and MacroExpansion `Copy`, adds `peek_next()`
zslayton b1eb800
Adds RawReaderState type, simplifies singleton eexp annotations
zslayton a0a000d
Adds ExpandedStreamItem, is_ephemeral
zslayton 0d080d7
Adds value completeness check for text eexp ID, bin values
zslayton df8147d
improved formatting for InvalidInputError message
zslayton f7bb6c0
No digits after float `e` is `incomplete`, improves error fmt
zslayton fc69d19
Improved doc comments
zslayton 854a9ae
Fixes incompleteness check for float/decimal digits after dot
zslayton a1009f9
clippy suggestion
zslayton 8636b1d
comment cleanup
zslayton b1751f5
Removes doc link to private type
zslayton d3623f9
Add variable attribution to expansion values
zslayton 1925b21
Adds value_writer setting for inline text
zslayton ef7c845
Adds ValueWriterConfig type
zslayton c28eb37
Merge remote-tracking branch 'origin/main' into inline-text-setting
zslayton 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 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 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 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.
🗺️ If the buffer ended in the middle of a
FlexSym
, it would lead to a panic instead of reportingIncomplete
.