@@ -176,7 +176,7 @@ parser_error_t schema_display_primitive(parser_context_t *ctx, parser_tx_t *txOb
176176 print_string ("schema_display_primitive IMPLEMENT ME 4" );
177177 return parser_unexpected_type ;
178178 default :
179- return parser_schema_primitive_unknown_type ;
179+ return parser_schema_unknown_type ;
180180 }
181181
182182 CHECK_ERROR (push_item (txObj , primitive , & ctx_to_push ));
@@ -266,7 +266,7 @@ parser_error_t schema_display_struct(parser_context_t *ctx, parser_tx_t *txObj)
266266 CHECK_ERROR (schema_display_primitive (ctx , txObj , & named_field .value .data .immediate ));
267267 break ;
268268 default :
269- return parser_schema_link_unknown_type ;
269+ return parser_schema_unknown_type ;
270270 }
271271
272272 if (remove_title ) {
@@ -315,7 +315,7 @@ parser_error_t schema_display_tuple(parser_context_t *ctx, parser_tx_t *txObj) {
315315 CHECK_ERROR (schema_display_primitive (ctx , txObj , & unnamed_field .value .data .immediate ));
316316 break ;
317317 default :
318- return parser_schema_link_unknown_type ;
318+ return parser_schema_unknown_type ;
319319 }
320320
321321 if (remove_title ) {
@@ -350,7 +350,7 @@ parser_error_t schema_display_option(parser_context_t *ctx, parser_tx_t *txObj)
350350 CHECK_ERROR (schema_display_primitive (ctx , txObj , & option_type .value .data .immediate ));
351351 break ;
352352 default :
353- return parser_schema_link_unknown_type ;
353+ return parser_schema_unknown_type ;
354354 }
355355
356356 return parser_ok ;
@@ -374,7 +374,7 @@ parser_error_t schema_display_array(parser_context_t *ctx, parser_tx_t *txObj) {
374374 CHECK_ERROR (schema_display_primitive (ctx , txObj , & array_type .value .data .immediate ));
375375 break ;
376376 default :
377- return parser_schema_link_unknown_type ;
377+ return parser_schema_unknown_type ;
378378 }
379379
380380 CHECK_ERROR (remove_last_item_title ())
@@ -405,7 +405,7 @@ parser_error_t schema_display_vec(parser_context_t *ctx, parser_tx_t *txObj) {
405405 CHECK_ERROR (schema_display_primitive (ctx , txObj , & vec_type .value .data .immediate ));
406406 break ;
407407 default :
408- return parser_schema_link_unknown_type ;
408+ return parser_schema_unknown_type ;
409409 }
410410 CHECK_ERROR (remove_last_item_title ())
411411 }
@@ -450,7 +450,7 @@ parser_error_t schema_display_generic_by_index(parser_context_t *ctx, parser_tx_
450450 CHECK_ERROR (schema_display_vec (ctx , txObj ));
451451 break ;
452452 default :
453- return parser_schema_linking_scheme_unknown_type ;
453+ return parser_schema_unknown_type ;
454454 }
455455
456456 return parser_ok ;
0 commit comments