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 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'blobValue' cannot be null"))?
|
71 - | ))
|
91 + | /* JsonParserGenerator.kt:326 */::aws_smithy_json::deserialize::token::expect_blob_or_null(tokens.next())?
|
92 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'blobValue' cannot be null"))?
|
93 + | /* JsonParserGenerator.kt:611 */))
|
94 + | /* JsonParserGenerator.kt:601 */
|
72 95 | }
|
96 + | /* JsonParserGenerator.kt:601 */
|
73 97 | "timestampValue" => {
|
98 + | /* JsonParserGenerator.kt:611 */
|
74 99 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::TimestampValue(
|
75 - | ::aws_smithy_json::deserialize::token::expect_timestamp_or_null(tokens.next(), ::aws_smithy_types::date_time::Format::EpochSeconds)?
|
76 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'timestampValue' cannot be null"))?
|
77 - | ))
|
100 + | /* JsonParserGenerator.kt:384 */::aws_smithy_json::deserialize::token::expect_timestamp_or_null(tokens.next(), ::aws_smithy_types::date_time::Format::EpochSeconds)?
|
101 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'timestampValue' cannot be null"))?
|
102 + | /* JsonParserGenerator.kt:611 */))
|
103 + | /* JsonParserGenerator.kt:601 */
|
78 104 | }
|
105 + | /* JsonParserGenerator.kt:601 */
|
79 106 | "enumValue" => {
|
107 + | /* JsonParserGenerator.kt:611 */
|
80 108 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::EnumValue(
|
81 - | ::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
82 - | s.to_unescaped().map(|u|
|
83 - | u.into_owned()
|
84 - | )
|
85 - | ).transpose()?
|
86 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'enumValue' cannot be null"))?
|
87 - | ))
|
88 - | }
|
109 + | /* JsonParserGenerator.kt:354 */::aws_smithy_json::deserialize::token::expect_string_or_null(tokens.next())?.map(|s|
|
110 + | /* JsonParserGenerator.kt:339 */s.to_unescaped().map(|u|
|
111 + | /* JsonParserGenerator.kt:343 */u.into_owned()
|
112 + | /* JsonParserGenerator.kt:339 */)
|
113 + | /* JsonParserGenerator.kt:354 */).transpose()?
|
114 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'enumValue' cannot be null"))?
|
115 + | /* JsonParserGenerator.kt:611 */))
|
116 + | /* JsonParserGenerator.kt:601 */
|
117 + | }
|
118 + | /* JsonParserGenerator.kt:601 */
|
89 119 | "listValue" => {
|
120 + | /* JsonParserGenerator.kt:611 */
|
90 121 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::ListValue(
|
91 - | crate::protocol_serde::shape_string_list::de_string_list(tokens)?
|
92 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'listValue' cannot be null"))?
|
93 - | ))
|
122 + | /* JsonParserGenerator.kt:451 */crate::protocol_serde::shape_string_list::de_string_list(tokens)?
|
123 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'listValue' cannot be null"))?
|
124 + | /* JsonParserGenerator.kt:611 */))
|
125 + | /* JsonParserGenerator.kt:601 */
|
94 126 | }
|
127 + | /* JsonParserGenerator.kt:601 */
|
95 128 | "mapValue" => {
|
129 + | /* JsonParserGenerator.kt:611 */
|
96 130 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::MapValue(
|
97 - | crate::protocol_serde::shape_string_map::de_string_map(tokens)?
|
98 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'mapValue' cannot be null"))?
|
99 - | ))
|
131 + | /* JsonParserGenerator.kt:509 */crate::protocol_serde::shape_string_map::de_string_map(tokens)?
|
132 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'mapValue' cannot be null"))?
|
133 + | /* JsonParserGenerator.kt:611 */))
|
134 + | /* JsonParserGenerator.kt:601 */
|
100 135 | }
|
136 + | /* JsonParserGenerator.kt:601 */
|
101 137 | "structureValue" => {
|
138 + | /* JsonParserGenerator.kt:611 */
|
102 139 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::StructureValue(
|
103 - | crate::protocol_serde::shape_greeting_struct::de_greeting_struct(tokens)?
|
104 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'structureValue' cannot be null"))?
|
105 - | ))
|
140 + | /* JsonParserGenerator.kt:544 */crate::protocol_serde::shape_greeting_struct::de_greeting_struct(tokens)?
|
141 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'structureValue' cannot be null"))?
|
142 + | /* JsonParserGenerator.kt:611 */))
|
143 + | /* JsonParserGenerator.kt:601 */
|
106 144 | }
|
145 + | /* JsonParserGenerator.kt:601 */
|
107 146 | "renamedStructureValue" => {
|
147 + | /* JsonParserGenerator.kt:611 */
|
108 148 | Some(crate::unconstrained::my_union_unconstrained::MyUnionUnconstrained::RenamedStructureValue(
|
109 - | crate::protocol_serde::shape_renamed_greeting::de_renamed_greeting(tokens)?
|
110 - | .ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'renamedStructureValue' cannot be null"))?
|
111 - | ))
|
149 + | /* JsonParserGenerator.kt:544 */crate::protocol_serde::shape_renamed_greeting::de_renamed_greeting(tokens)?
|
150 + | /* JsonParserGenerator.kt:670 */.ok_or_else(|| ::aws_smithy_json::deserialize::error::DeserializeError::custom("value for 'renamedStructureValue' cannot be null"))?
|
151 + | /* JsonParserGenerator.kt:611 */))
|
152 + | /* JsonParserGenerator.kt:601 */
|
112 153 | }
|
113 - | variant => return Err(::aws_smithy_json::deserialize::error::DeserializeError::custom(format!("unexpected union variant: {}", variant)))
|
154 + | /* JsonParserGenerator.kt:634 */
|
155 + | variant => {
|
156 + | return Err(
|
157 + | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
158 + | format!("unexpected union variant: {}", variant),
|
159 + | ),
|
160 + | )
|
161 + | } /* JsonParserGenerator.kt:598 */
|
114 162 | };
|
163 + | /* JsonParserGenerator.kt:686 */
|
115 164 | }
|
165 + | /* JsonParserGenerator.kt:695 */
|
116 166 | other => {
|
117 167 | return Err(
|
118 - | ::aws_smithy_json::deserialize::error::DeserializeError::custom(format!(
|
119 - | "expected object key or end object, found: {:?}",
|
120 - | other
|
121 - | )),
|
168 + | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
169 + | format!("expected object key or end object, found: {:?}", other),
|
170 + | ),
|
122 171 | )
|
172 + | } /* JsonParserGenerator.kt:685 */
|
123 173 | }
|
174 + | /* JsonParserGenerator.kt:684 */
|
124 175 | }
|
125 - | },
|
176 + | /* JsonParserGenerator.kt:568 */
|
177 + | }
|
178 + | /* JsonParserGenerator.kt:642 */
|
126 179 | _ => {
|
127 180 | return Err(
|
128 181 | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
129 182 | "expected start object or null",
|
130 183 | ),
|
131 184 | )
|
185 + | } /* JsonParserGenerator.kt:567 */
|
132 186 | }
|
133 - | }
|
187 + | /* JsonParserGenerator.kt:649 */
|
134 188 | if variant.is_none() {
|
135 189 | return Err(
|
136 190 | ::aws_smithy_json::deserialize::error::DeserializeError::custom(
|
137 191 | "Union did not contain a valid variant.",
|
138 192 | ),
|
139 193 | );
|
140 194 | }
|
195 + | /* JsonParserGenerator.kt:657 */
|
141 196 | Ok(variant)
|
197 + | /* JsonParserGenerator.kt:551 */
|
142 198 | }
|
143 199 |
|
200 + | /* JsonSerializerGenerator.kt:547 */
|
144 201 | pub fn ser_my_union(
|
145 202 | object_2: &mut ::aws_smithy_json::serialize::JsonObjectWriter,
|
146 203 | input: &crate::model::MyUnion,
|
147 204 | ) -> ::std::result::Result<(), ::aws_smithy_types::error::operation::SerializationError> {
|
205 + | /* JsonSerializerGenerator.kt:556 */
|
148 206 | match input {
|
207 + | /* JsonSerializerGenerator.kt:564 */
|
149 208 | crate::model::MyUnion::StringValue(inner) => {
|
209 + | /* SerializerUtil.kt:42 */
|
210 + | {
|
211 + | /* JsonSerializerGenerator.kt:423 */
|
150 212 | object_2.key("stringValue").string(inner.as_str());
|
213 + | /* SerializerUtil.kt:42 */
|
214 + | }
|
215 + | /* JsonSerializerGenerator.kt:564 */
|
151 216 | }
|
217 + | /* JsonSerializerGenerator.kt:564 */
|
152 218 | crate::model::MyUnion::BooleanValue(inner) => {
|
219 + | /* SerializerUtil.kt:42 */
|
220 + | {
|
221 + | /* JsonSerializerGenerator.kt:424 */
|
153 222 | object_2.key("booleanValue").boolean(*inner);
|
223 + | /* SerializerUtil.kt:42 */
|
224 + | }
|
225 + | /* JsonSerializerGenerator.kt:564 */
|
154 226 | }
|
227 + | /* JsonSerializerGenerator.kt:564 */
|
155 228 | crate::model::MyUnion::NumberValue(inner) => {
|
229 + | /* SerializerUtil.kt:42 */
|
230 + | {
|
231 + | /* JsonSerializerGenerator.kt:432 */
|
156 232 | object_2.key("numberValue").number(
|
157 233 | #[allow(clippy::useless_conversion)]
|
158 234 | ::aws_smithy_types::Number::NegInt((*inner).into()),
|
159 235 | );
|
236 + | /* SerializerUtil.kt:42 */
|
237 + | }
|
238 + | /* JsonSerializerGenerator.kt:564 */
|
160 239 | }
|
240 + | /* JsonSerializerGenerator.kt:564 */
|
161 241 | crate::model::MyUnion::BlobValue(inner) => {
|
242 + | /* SerializerUtil.kt:42 */
|
243 + | {
|
244 + | /* JsonSerializerGenerator.kt:439 */
|
162 245 | object_2
|
163 246 | .key("blobValue")
|
164 247 | .string_unchecked(&::aws_smithy_types::base64::encode(inner));
|
248 + | /* SerializerUtil.kt:42 */
|
249 + | }
|
250 + | /* JsonSerializerGenerator.kt:564 */
|
165 251 | }
|
252 + | /* JsonSerializerGenerator.kt:564 */
|
166 253 | crate::model::MyUnion::TimestampValue(inner) => {
|
254 + | /* SerializerUtil.kt:42 */
|
255 + | {
|
256 + | /* JsonSerializerGenerator.kt:448 */
|
167 257 | object_2
|
168 258 | .key("timestampValue")
|
169 259 | .date_time(inner, ::aws_smithy_types::date_time::Format::EpochSeconds)?;
|
260 + | /* SerializerUtil.kt:42 */
|
261 + | }
|
262 + | /* JsonSerializerGenerator.kt:564 */
|
170 263 | }
|
264 + | /* JsonSerializerGenerator.kt:564 */
|
171 265 | crate::model::MyUnion::EnumValue(inner) => {
|
266 + | /* SerializerUtil.kt:42 */
|
267 + | {
|
268 + | /* JsonSerializerGenerator.kt:423 */
|
172 269 | object_2.key("enumValue").string(inner.as_str());
|
270 + | /* SerializerUtil.kt:42 */
|
271 + | }
|
272 + | /* JsonSerializerGenerator.kt:564 */
|
173 273 | }
|
274 + | /* JsonSerializerGenerator.kt:564 */
|
174 275 | crate::model::MyUnion::ListValue(inner) => {
|
276 + | /* SerializerUtil.kt:42 */
|
277 + | {
|
278 + | /* JsonSerializerGenerator.kt:484 */
|
175 279 | let mut array_1 = object_2.key("listValue").start_array();
|
280 + | /* JsonSerializerGenerator.kt:524 */
|
176 281 | for item_2 in inner {
|
282 + | /* SerializerUtil.kt:42 */
|
177 283 | {
|
284 + | /* JsonSerializerGenerator.kt:423 */
|
178 285 | array_1.value().string(item_2.as_str());
|
286 + | /* SerializerUtil.kt:42 */
|
179 287 | }
|
288 + | /* JsonSerializerGenerator.kt:524 */
|
180 289 | }
|
290 + | /* JsonSerializerGenerator.kt:486 */
|
181 291 | array_1.finish();
|
292 + | /* SerializerUtil.kt:42 */
|
293 + | }
|
294 + | /* JsonSerializerGenerator.kt:564 */
|
182 295 | }
|
296 + | /* JsonSerializerGenerator.kt:564 */
|
183 297 | crate::model::MyUnion::MapValue(inner) => {
|
298 + | /* SerializerUtil.kt:42 */
|
299 + | {
|
300 + | /* JsonSerializerGenerator.kt:495 */
|
184 301 | #[allow(unused_mut)]
|
302 + | /* JsonSerializerGenerator.kt:496 */
|
185 303 | let mut object_3 = object_2.key("mapValue").start_object();
|
304 + | /* JsonSerializerGenerator.kt:537 */
|
186 305 | for (key_4, value_5) in inner {
|
306 + | /* SerializerUtil.kt:42 */
|
187 307 | {
|
308 + | /* JsonSerializerGenerator.kt:423 */
|
188 309 | object_3.key(key_4.as_str()).string(value_5.as_str());
|
310 + | /* SerializerUtil.kt:42 */
|
189 311 | }
|
312 + | /* JsonSerializerGenerator.kt:537 */
|
190 313 | }
|
314 + | /* JsonSerializerGenerator.kt:515 */
|
191 315 | object_3.finish();
|
316 + | /* SerializerUtil.kt:42 */
|
317 + | }
|
318 + | /* JsonSerializerGenerator.kt:564 */
|
192 319 | }
|
320 + | /* JsonSerializerGenerator.kt:564 */
|
193 321 | crate::model::MyUnion::StructureValue(inner) => {
|
322 + | /* SerializerUtil.kt:42 */
|
323 + | {
|
324 + | /* JsonSerializerGenerator.kt:495 */
|
194 325 | #[allow(unused_mut)]
|
326 + | /* JsonSerializerGenerator.kt:496 */
|
195 327 | let mut object_6 = object_2.key("structureValue").start_object();
|
328 + | /* JsonSerializerGenerator.kt:375 */
|
196 329 | crate::protocol_serde::shape_greeting_struct::ser_greeting_struct(
|
197 330 | &mut object_6,
|
198 331 | inner,
|
199 332 | )?;
|
333 + | /* JsonSerializerGenerator.kt:515 */
|
200 334 | object_6.finish();
|
335 + | /* SerializerUtil.kt:42 */
|
336 + | }
|
337 + | /* JsonSerializerGenerator.kt:564 */
|
201 338 | }
|
339 + | /* JsonSerializerGenerator.kt:564 */
|
202 340 | crate::model::MyUnion::RenamedStructureValue(inner) => {
|
341 + | /* SerializerUtil.kt:42 */
|
342 + | {
|
343 + | /* JsonSerializerGenerator.kt:495 */
|
203 344 | #[allow(unused_mut)]
|
345 + | /* JsonSerializerGenerator.kt:496 */
|
204 346 | let mut object_7 = object_2.key("renamedStructureValue").start_object();
|
347 + | /* JsonSerializerGenerator.kt:375 */
|
205 348 | crate::protocol_serde::shape_renamed_greeting::ser_renamed_greeting(
|
206 349 | &mut object_7,
|
207 350 | inner,
|
208 351 | )?;
|
352 + | /* JsonSerializerGenerator.kt:515 */
|
209 353 | object_7.finish();
|
354 + | /* SerializerUtil.kt:42 */
|
355 + | }
|
356 + | /* JsonSerializerGenerator.kt:564 */
|
210 357 | }
|
358 + | /* JsonSerializerGenerator.kt:556 */
|
211 359 | }
|
360 + | /* JsonSerializerGenerator.kt:576 */
|
212 361 | Ok(())
|
362 + | /* JsonSerializerGenerator.kt:547 */
|
213 363 | }
|