-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
Escape quotation marks in text encoding #152
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ Dominik Roos <[email protected]> | |
Eran Duchan <[email protected]> | ||
Evan Shaw <[email protected]> | ||
Ian Denhardt <[email protected]> | ||
Jake Riesterer <[email protected]> | ||
James McKaskill <[email protected]> | ||
Jason E. Aten <[email protected]> | ||
Johan Hernandez <[email protected]> | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ const mapVal @0xb167974479102805 :Value = (map = [ | |
(key = "foo", value = (void = void)), | ||
(key = "bar", value = (void = void)), | ||
]); | ||
const data @0x8e85252144f61858 :Value = (data = 0x"4869 dead beef cafe"); | ||
const data @0x8e85252144f61858 :Value = (data = 0x"4869 dead beef cafe 22275c"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same here. Can you just explain like I'm 5 what the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is just the hex encoding of the characters added above. |
||
const emptyMap @0x81fdbfdc91779421 :Value = (map = []); | ||
const voidList @0xc21398a8474837ba :Value = (voidList = [void, void]); | ||
const boolList @0xde82c2eeb3a4b07c :Value = (boolList = [true, false, true, false]); | ||
|
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.
I'm okay with merging this optimistically, but could you just give me a bit of context about what's going on here? The change seems very simple, but I'm not familiar with this part of the code base, so I just want to do my due diligence. 🙂
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.
I assume this is just expanding the test, to cover the characters relevant to this patch.