1 1 | // Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
|
2 + | /* JsonParserGenerator.kt:551 */
|
2 3 | pub(crate) fn de_my_union<'a, I>(
|
3 4 | tokens: &mut ::std::iter::Peekable<I>,
|
4 5 | ) -> ::std::result::Result<
|
5 6 | Option<crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained>,
|
6 7 | ::aws_smithy_json::deserialize::error::DeserializeError,
|
7 8 | >
|
8 9 | where
|
9 10 | I: Iterator<
|
10 11 | Item = Result<
|
11 12 | ::aws_smithy_json::deserialize::Token<'a>,
|
12 13 | ::aws_smithy_json::deserialize::error::DeserializeError,
|
13 14 | >,
|
14 15 | >,
|
15 16 | {
|
17 + | /* JsonParserGenerator.kt:565 */
|
16 18 | let mut variant = None;
|
19 + | /* JsonParserGenerator.kt:567 */
|
17 20 | match tokens.next().transpose()? {
|
21 + | /* JsonParserGenerator.kt:568 */
|
18 22 | Some(::aws_smithy_json::deserialize::Token::ValueNull { .. }) => return Ok(None),
|
19 - | Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => loop {
|
23 + | Some(::aws_smithy_json::deserialize::Token::StartObject { .. }) => {
|
24 + | /* JsonParserGenerator.kt:684 */
|
25 + | loop {
|
26 + | /* JsonParserGenerator.kt:685 */
|
20 27 | match tokens.next().transpose()? {
|
28 + | /* JsonParserGenerator.kt:686 */
|
21 29 | Some(::aws_smithy_json::deserialize::Token::EndObject { .. }) => break,
|
22 30 | Some(::aws_smithy_json::deserialize::Token::ObjectKey { key, .. }) => {
|
31 + | /* JsonParserGenerator.kt:576 */
|
23 32 | if let ::std::option::Option::Some(::std::result::Result::Ok(
|
24 33 | ::aws_smithy_json::deserialize::Token::ValueNull { .. },
|
25 34 | )) = tokens.peek()
|
26 35 | {
|
27 36 | let _ = tokens.next().expect("peek returned a token")?;
|
28 37 | continue;
|
29 38 | }
|
39 + | /* JsonParserGenerator.kt:585 */
|
30 40 | let key = key.to_unescaped()?;
|
31 41 | if key == "__type" {
|
32 42 | ::aws_smithy_json::deserialize::token::skip_value(tokens)?;
|
33 43 | continue;
|
34 44 | }
|
35 45 | if variant.is_some() {
|
36 46 | return Err(
|
37 47 | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
38 48 | "encountered mixed variants in union",
|
39 49 | ),
|
40 50 | );
|
41 51 | }
|
52 + | /* JsonParserGenerator.kt:598 */
|
42 53 | variant = match key.as_ref() {
|
54 + | /* JsonParserGenerator.kt:601 */
|
43 55 | "stringValue" => {
|
56 + | /* JsonParserGenerator.kt:611 */
|
44 57 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::StringValue(
|
45 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
46 - | s.to_unescaped().map(|u|
|
47 - | u.into_owned()
|
48 - | )
|
49 - | ).transpose()?
|
50 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'stringValue' cannot be null"))?
|
51 - | ))
|
52 - | }
|
58 + | /* JsonParserGenerator.kt:354 */::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
59 + | /* JsonParserGenerator.kt:339 */s.to_unescaped().map(|u|
|
60 + | /* JsonParserGenerator.kt:348 */u.into_owned()
|
61 + | /* JsonParserGenerator.kt:339 */)
|
62 + | /* JsonParserGenerator.kt:354 */).transpose()?
|
63 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'stringValue' cannot be null"))?
|
64 + | /* JsonParserGenerator.kt:611 */))
|
65 + | /* JsonParserGenerator.kt:601 */
|
66 + | }
|
67 + | /* JsonParserGenerator.kt:601 */
|
53 68 | "booleanValue" => {
|
69 + | /* JsonParserGenerator.kt:611 */
|
54 70 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::BooleanValue(
|
55 - | ::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?
|
56 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'booleanValue' cannot be null"))?
|
57 - | ))
|
71 + | /* JsonParserGenerator.kt:298 */::aws_smithy_json::deserialize::token::expect_bool_or_null(tokens.next())?
|
72 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'booleanValue' cannot be null"))?
|
73 + | /* JsonParserGenerator.kt:611 */))
|
74 + | /* JsonParserGenerator.kt:601 */
|
58 75 | }
|
76 + | /* JsonParserGenerator.kt:601 */
|
59 77 | "numberValue" => {
|
78 + | /* JsonParserGenerator.kt:611 */
|
60 79 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::NumberValue(
|
61 - | ::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
|
80 + | /* JsonParserGenerator.kt:365 */::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
|
62 81 | .map(i32::try_from)
|
63 82 | .transpose()?
|
64 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'numberValue' cannot be null"))?
|
65 - | ))
|
83 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'numberValue' cannot be null"))?
|
84 + | /* JsonParserGenerator.kt:611 */))
|
85 + | /* JsonParserGenerator.kt:601 */
|
66 86 | }
|
87 + | /* JsonParserGenerator.kt:601 */
|
67 88 | "blobValue" => {
|
89 + | /* JsonParserGenerator.kt:611 */
|
68 90 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::BlobValue(
|
69 - | ::aws_smithy_json::deserialize::token::expect_blob_or_null(tokens.next())?
|
70 - | .map(::aws_smithy_http_server_python::types::Blob::from)
|
71 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'blobValue' cannot be null"))?
|
72 - | ))
|
91 + | /* JsonParserGenerator.kt:326 */::aws_smithy_json::deserialize::token::expect_blob_or_null(tokens.next())?
|
92 + | /* PythonServerProtocolLoader.kt:48 */.map(::aws_smithy_http_server_python::types::Blob::from)
|
93 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'blobValue' cannot be null"))?
|
94 + | /* JsonParserGenerator.kt:611 */))
|
95 + | /* JsonParserGenerator.kt:601 */
|
73 96 | }
|
97 + | /* JsonParserGenerator.kt:601 */
|
74 98 | "timestampValue" => {
|
99 + | /* JsonParserGenerator.kt:611 */
|
75 100 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::TimestampValue(
|
76 - | ::aws_smithy_json::deserialize::token::expect_timestamp_or_null(tokens.next(), ::aws_smithy_types::date_time::Format::EpochSeconds)?
|
77 - | .map(::aws_smithy_http_server_python::types::DateTime::from)
|
78 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'timestampValue' cannot be null"))?
|
79 - | ))
|
101 + | /* JsonParserGenerator.kt:384 */::aws_smithy_json::deserialize::token::expect_timestamp_or_null(tokens.next(), ::aws_smithy_types::date_time::Format::EpochSeconds)?
|
102 + | /* PythonServerProtocolLoader.kt:44 */.map(::aws_smithy_http_server_python::types::DateTime::from)
|
103 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'timestampValue' cannot be null"))?
|
104 + | /* JsonParserGenerator.kt:611 */))
|
105 + | /* JsonParserGenerator.kt:601 */
|
80 106 | }
|
107 + | /* JsonParserGenerator.kt:601 */
|
81 108 | "enumValue" => {
|
109 + | /* JsonParserGenerator.kt:611 */
|
82 110 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::EnumValue(
|
83 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
84 - | s.to_unescaped().map(|u|
|
85 - | u.into_owned()
|
86 - | )
|
87 - | ).transpose()?
|
88 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'enumValue' cannot be null"))?
|
89 - | ))
|
90 - | }
|
111 + | /* JsonParserGenerator.kt:354 */::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
112 + | /* JsonParserGenerator.kt:339 */s.to_unescaped().map(|u|
|
113 + | /* JsonParserGenerator.kt:343 */u.into_owned()
|
114 + | /* JsonParserGenerator.kt:339 */)
|
115 + | /* JsonParserGenerator.kt:354 */).transpose()?
|
116 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'enumValue' cannot be null"))?
|
117 + | /* JsonParserGenerator.kt:611 */))
|
118 + | /* JsonParserGenerator.kt:601 */
|
119 + | }
|
120 + | /* JsonParserGenerator.kt:601 */
|
91 121 | "intEnumValue" => {
|
122 + | /* JsonParserGenerator.kt:611 */
|
92 123 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::IntEnumValue(
|
93 - | ::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
|
124 + | /* JsonParserGenerator.kt:365 */::aws_smithy_json::deserialize::token::expect_number_or_null(tokens.next())?
|
94 125 | .map(i32::try_from)
|
95 126 | .transpose()?
|
96 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'intEnumValue' cannot be null"))?
|
97 - | ))
|
127 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'intEnumValue' cannot be null"))?
|
128 + | /* JsonParserGenerator.kt:611 */))
|
129 + | /* JsonParserGenerator.kt:601 */
|
98 130 | }
|
131 + | /* JsonParserGenerator.kt:601 */
|
99 132 | "listValue" => {
|
133 + | /* JsonParserGenerator.kt:611 */
|
100 134 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::ListValue(
|
101 - | crate::protocol_serde::shape_string_list::de_string_list(tokens)?
|
102 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'listValue' cannot be null"))?
|
103 - | ))
|
135 + | /* JsonParserGenerator.kt:451 */crate::protocol_serde::shape_string_list::de_string_list(tokens)?
|
136 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'listValue' cannot be null"))?
|
137 + | /* JsonParserGenerator.kt:611 */))
|
138 + | /* JsonParserGenerator.kt:601 */
|
104 139 | }
|
140 + | /* JsonParserGenerator.kt:601 */
|
105 141 | "mapValue" => {
|
142 + | /* JsonParserGenerator.kt:611 */
|
106 143 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::MapValue(
|
107 - | crate::protocol_serde::shape_string_map::de_string_map(tokens)?
|
108 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'mapValue' cannot be null"))?
|
109 - | ))
|
144 + | /* JsonParserGenerator.kt:509 */crate::protocol_serde::shape_string_map::de_string_map(tokens)?
|
145 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'mapValue' cannot be null"))?
|
146 + | /* JsonParserGenerator.kt:611 */))
|
147 + | /* JsonParserGenerator.kt:601 */
|
110 148 | }
|
149 + | /* JsonParserGenerator.kt:601 */
|
111 150 | "structureValue" => {
|
151 + | /* JsonParserGenerator.kt:611 */
|
112 152 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::StructureValue(
|
113 - | crate::protocol_serde::shape_greeting_struct::de_greeting_struct(tokens)?
|
114 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'structureValue' cannot be null"))?
|
115 - | ))
|
153 + | /* JsonParserGenerator.kt:544 */crate::protocol_serde::shape_greeting_struct::de_greeting_struct(tokens)?
|
154 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'structureValue' cannot be null"))?
|
155 + | /* JsonParserGenerator.kt:611 */))
|
156 + | /* JsonParserGenerator.kt:601 */
|
116 157 | }
|
117 - | variant => return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!("unexpected union variant: {}", variant)))
|
158 + | /* JsonParserGenerator.kt:634 */
|
159 + | variant => {
|
160 + | return Err(
|
161 + | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
162 + | format!("unexpected union variant: {}", variant),
|
163 + | ),
|
164 + | )
|
165 + | } /* JsonParserGenerator.kt:598 */
|
118 166 | };
|
167 + | /* JsonParserGenerator.kt:686 */
|
119 168 | }
|
169 + | /* JsonParserGenerator.kt:695 */
|
120 170 | other => {
|
121 171 | return Err(
|
122 - | ::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
|
123 - | "expected object key or end object, found: {:?}",
|
124 - | other
|
125 - | )),
|
172 + | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
173 + | format!("expected object key or end object, found: {:?}", other),
|
174 + | ),
|
126 175 | )
|
176 + | } /* JsonParserGenerator.kt:685 */
|
127 177 | }
|
178 + | /* JsonParserGenerator.kt:684 */
|
128 179 | }
|
129 - | },
|
180 + | /* JsonParserGenerator.kt:568 */
|
181 + | }
|
182 + | /* JsonParserGenerator.kt:642 */
|
130 183 | _ => {
|
131 184 | return Err(
|
132 185 | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
133 186 | "expected start object or null",
|
134 187 | ),
|
135 188 | )
|
189 + | } /* JsonParserGenerator.kt:567 */
|
136 190 | }
|
137 - | }
|
191 + | /* JsonParserGenerator.kt:649 */
|
138 192 | if variant.is_none() {
|
139 193 | return Err(
|
140 194 | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
141 195 | "Union did not contain a valid variant.",
|
142 196 | ),
|
143 197 | );
|
144 198 | }
|
199 + | /* JsonParserGenerator.kt:657 */
|
145 200 | Ok(variant)
|
201 + | /* JsonParserGenerator.kt:551 */
|
146 202 | }
|
147 203 |
|
204 + | /* JsonSerializerGenerator.kt:547 */
|
148 205 | pub fn ser_my_union(
|
149 206 | object_2: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
|
150 207 | input: &crate::model::MyUnion,
|
151 208 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
|
209 + | /* JsonSerializerGenerator.kt:556 */
|
152 210 | match input {
|
211 + | /* JsonSerializerGenerator.kt:564 */
|
153 212 | crate::model::MyUnion::StringValue(inner) => {
|
213 + | /* SerializerUtil.kt:42 */
|
214 + | {
|
215 + | /* JsonSerializerGenerator.kt:423 */
|
154 216 | object_2.key("stringValue").string(inner.as_str());
|
217 + | /* SerializerUtil.kt:42 */
|
218 + | }
|
219 + | /* JsonSerializerGenerator.kt:564 */
|
155 220 | }
|
221 + | /* JsonSerializerGenerator.kt:564 */
|
156 222 | crate::model::MyUnion::BooleanValue(inner) => {
|
223 + | /* SerializerUtil.kt:42 */
|
224 + | {
|
225 + | /* JsonSerializerGenerator.kt:424 */
|
157 226 | object_2.key("booleanValue").boolean(*inner);
|
227 + | /* SerializerUtil.kt:42 */
|
228 + | }
|
229 + | /* JsonSerializerGenerator.kt:564 */
|
158 230 | }
|
231 + | /* JsonSerializerGenerator.kt:564 */
|
159 232 | crate::model::MyUnion::NumberValue(inner) => {
|
233 + | /* SerializerUtil.kt:42 */
|
234 + | {
|
235 + | /* JsonSerializerGenerator.kt:432 */
|
160 236 | object_2.key("numberValue").number(
|
161 237 | #[allow(clippy::useless_conversion)]
|
162 238 | ::aws_smithy_types::Number::NegInt((*inner).into()),
|
163 239 | );
|
240 + | /* SerializerUtil.kt:42 */
|
241 + | }
|
242 + | /* JsonSerializerGenerator.kt:564 */
|
164 243 | }
|
244 + | /* JsonSerializerGenerator.kt:564 */
|
165 245 | crate::model::MyUnion::BlobValue(inner) => {
|
246 + | /* SerializerUtil.kt:42 */
|
247 + | {
|
248 + | /* JsonSerializerGenerator.kt:439 */
|
166 249 | object_2
|
167 250 | .key("blobValue")
|
168 251 | .string_unchecked(&::aws_smithy_types::base64::encode(inner));
|
252 + | /* SerializerUtil.kt:42 */
|
253 + | }
|
254 + | /* JsonSerializerGenerator.kt:564 */
|
169 255 | }
|
256 + | /* JsonSerializerGenerator.kt:564 */
|
170 257 | crate::model::MyUnion::TimestampValue(inner) => {
|
258 + | /* SerializerUtil.kt:42 */
|
259 + | {
|
260 + | /* JsonSerializerGenerator.kt:448 */
|
171 261 | object_2
|
172 262 | .key("timestampValue")
|
173 263 | .date_time(inner, ::aws_smithy_types::date_time::Format::EpochSeconds)?;
|
264 + | /* SerializerUtil.kt:42 */
|
265 + | }
|
266 + | /* JsonSerializerGenerator.kt:564 */
|
174 267 | }
|
268 + | /* JsonSerializerGenerator.kt:564 */
|
175 269 | crate::model::MyUnion::EnumValue(inner) => {
|
270 + | /* SerializerUtil.kt:42 */
|
271 + | {
|
272 + | /* JsonSerializerGenerator.kt:423 */
|
176 273 | object_2.key("enumValue").string(inner.as_str());
|
274 + | /* SerializerUtil.kt:42 */
|
275 + | }
|
276 + | /* JsonSerializerGenerator.kt:564 */
|
177 277 | }
|
278 + | /* JsonSerializerGenerator.kt:564 */
|
178 279 | crate::model::MyUnion::IntEnumValue(inner) => {
|
280 + | /* SerializerUtil.kt:42 */
|
281 + | {
|
282 + | /* JsonSerializerGenerator.kt:432 */
|
179 283 | object_2.key("intEnumValue").number(
|
180 284 | #[allow(clippy::useless_conversion)]
|
181 285 | ::aws_smithy_types::Number::NegInt((*inner).into()),
|
182 286 | );
|
287 + | /* SerializerUtil.kt:42 */
|
288 + | }
|
289 + | /* JsonSerializerGenerator.kt:564 */
|
183 290 | }
|
291 + | /* JsonSerializerGenerator.kt:564 */
|
184 292 | crate::model::MyUnion::ListValue(inner) => {
|
293 + | /* SerializerUtil.kt:42 */
|
294 + | {
|
295 + | /* JsonSerializerGenerator.kt:484 */
|
185 296 | let mut array_1 = object_2.key("listValue").start_array();
|
297 + | /* JsonSerializerGenerator.kt:524 */
|
186 298 | for item_2 in inner {
|
299 + | /* SerializerUtil.kt:42 */
|
187 300 | {
|
301 + | /* JsonSerializerGenerator.kt:423 */
|
188 302 | array_1.value().string(item_2.as_str());
|
303 + | /* SerializerUtil.kt:42 */
|
189 304 | }
|
305 + | /* JsonSerializerGenerator.kt:524 */
|
190 306 | }
|
307 + | /* JsonSerializerGenerator.kt:486 */
|
191 308 | array_1.finish();
|
309 + | /* SerializerUtil.kt:42 */
|
310 + | }
|
311 + | /* JsonSerializerGenerator.kt:564 */
|
192 312 | }
|
313 + | /* JsonSerializerGenerator.kt:564 */
|
193 314 | crate::model::MyUnion::MapValue(inner) => {
|
315 + | /* SerializerUtil.kt:42 */
|
316 + | {
|
317 + | /* JsonSerializerGenerator.kt:495 */
|
194 318 | #[allow(unused_mut)]
|
319 + | /* JsonSerializerGenerator.kt:496 */
|
195 320 | let mut object_3 = object_2.key("mapValue").start_object();
|
321 + | /* JsonSerializerGenerator.kt:537 */
|
196 322 | for (key_4, value_5) in inner {
|
323 + | /* SerializerUtil.kt:42 */
|
197 324 | {
|
325 + | /* JsonSerializerGenerator.kt:423 */
|
198 326 | object_3.key(key_4.as_str()).string(value_5.as_str());
|
327 + | /* SerializerUtil.kt:42 */
|
199 328 | }
|
329 + | /* JsonSerializerGenerator.kt:537 */
|
200 330 | }
|
331 + | /* JsonSerializerGenerator.kt:515 */
|
201 332 | object_3.finish();
|
333 + | /* SerializerUtil.kt:42 */
|
334 + | }
|
335 + | /* JsonSerializerGenerator.kt:564 */
|
202 336 | }
|
337 + | /* JsonSerializerGenerator.kt:564 */
|
203 338 | crate::model::MyUnion::StructureValue(inner) => {
|
339 + | /* SerializerUtil.kt:42 */
|
340 + | {
|
341 + | /* JsonSerializerGenerator.kt:495 */
|
204 342 | #[allow(unused_mut)]
|
343 + | /* JsonSerializerGenerator.kt:496 */
|
205 344 | let mut object_6 = object_2.key("structureValue").start_object();
|
345 + | /* JsonSerializerGenerator.kt:375 */
|
206 346 | crate::protocol_serde::shape_greeting_struct::ser_greeting_struct(
|
207 347 | &mut object_6,
|
208 348 | inner,
|
209 349 | )?;
|
350 + | /* JsonSerializerGenerator.kt:515 */
|
210 351 | object_6.finish();
|
352 + | /* SerializerUtil.kt:42 */
|
353 + | }
|
354 + | /* JsonSerializerGenerator.kt:564 */
|
211 355 | }
|
356 + | /* JsonSerializerGenerator.kt:556 */
|
212 357 | }
|
358 + | /* JsonSerializerGenerator.kt:576 */
|
213 359 | Ok(())
|
360 + | /* JsonSerializerGenerator.kt:547 */
|
214 361 | }
|