-
Notifications
You must be signed in to change notification settings - Fork 31
fix: address various failing protocol tests #1223
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
Changes from 9 commits
95e1480
272c1c4
0b506f3
6db0e69
b78964b
48350f2
ed41af7
1333c24
3333049
0bab197
9f0ffe6
514455c
81dc2a1
3149027
04a33e9
189edc7
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 |
|---|---|---|
|
|
@@ -248,6 +248,11 @@ class StructureGenerator( | |
| } else { | ||
| memberSymbol | ||
| } | ||
|
|
||
| if (builderMemberSymbol.shape is BlobShape && builderMemberSymbol.isNotNullable) { | ||
| writer.addImport(RuntimeTypes.Core.Text.Encoding.decodeBase64) | ||
| } | ||
|
||
|
|
||
| write("public var #L: #E", memberName, builderMemberSymbol) | ||
| } | ||
| write("") | ||
|
|
||
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.
Question: Don't we need this for streaming targets too? (i.e., the
whenbranch above this one)