├── .editorconfig ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── questions.md ├── logo.svg └── workflows │ ├── build.yml │ └── deploy-docs.yml ├── .gitignore ├── .golangci.yml ├── LICENSE ├── README.md ├── cli ├── command.go ├── parse.go ├── parse_test.go └── run.go ├── cmd └── goverter │ └── main.go ├── codecov.yml ├── comments └── parse_docs.go ├── config ├── common.go ├── config.go ├── converter.go ├── enum.go ├── method.go ├── package.go └── parse │ ├── comment.go │ ├── file.go │ ├── line.go │ └── parse.go ├── docs ├── .prettierrc ├── .vitepress │ ├── config.mts │ └── theme │ │ └── index.ts ├── GH.vue ├── alternatives.md ├── changelog.md ├── explanation │ └── generation.md ├── faq.md ├── guide │ ├── configure-nested.md │ ├── context.md │ ├── embedded-structs.md │ ├── enum.md │ ├── error-early.md │ ├── format.md │ ├── getting-started.md │ ├── install.md │ ├── migration.md │ ├── output-same-package.md │ ├── struct.md │ ├── unexported-field.md │ └── update-instance.md ├── index.md ├── package.json ├── public │ ├── .nojekyll │ ├── CNAME │ ├── favicon.png │ └── favicon.svg ├── reference │ ├── arg.md │ ├── autoMap.md │ ├── build-constraint.md │ ├── cli.md │ ├── context.md │ ├── converter.md │ ├── default.md │ ├── define-settings.md │ ├── enum.md │ ├── extend.md │ ├── ignore.md │ ├── ignoreMissing.md │ ├── ignoreUnexported.md │ ├── map.md │ ├── matchIgnoreCase.md │ ├── name.md │ ├── output.md │ ├── settings.md │ ├── signature.md │ ├── skipCopySameType.md │ ├── struct.md │ ├── update.md │ ├── useUnderlyingTypeMethods.md │ ├── useZeroValueOnPointerInconsistency.md │ ├── variables.md │ ├── wrapErrors.md │ └── wrapErrorsUsing.md ├── use-case.md ├── version.data.js └── yarn.lock ├── enum ├── config.go ├── detect.go ├── enum.go ├── transformer.go └── transformer_builtin.go ├── example ├── any-to-any │ ├── generated │ │ └── generated.go │ └── input.go ├── auto-map │ ├── generated │ │ └── generated.go │ └── input.go ├── constructor ├── context │ ├── database │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ ├── date-format │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ └── regex │ │ ├── generated │ │ └── generated.go │ │ └── input.go ├── default-update │ ├── generated │ │ └── generated.go │ └── input.go ├── default │ ├── generated │ │ └── generated.go │ └── input.go ├── embedded │ ├── fromembedded.go │ ├── generated │ │ ├── fromembedded.go │ │ └── toembedded.go │ ├── model.go │ └── toembedded.go ├── enum │ ├── disable │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ ├── exclude │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ ├── map-panic │ │ ├── generated │ │ │ └── generated.go │ │ ├── input.go │ │ ├── input │ │ │ └── enum.go │ │ └── output │ │ │ └── enum.go │ ├── map │ │ ├── generated │ │ │ └── generated.go │ │ ├── input.go │ │ ├── input │ │ │ └── enum.go │ │ └── output │ │ │ └── enum.go │ ├── transform-custom │ │ ├── generated │ │ │ └── generated.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── goverter │ │ │ └── run.go │ │ └── input.go │ ├── transform-regex │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ └── unknown │ │ ├── error │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ │ ├── ignore │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ │ ├── input │ │ └── enum.go │ │ ├── key │ │ ├── generated │ │ │ └── generated.go │ │ ├── input.go │ │ ├── input │ │ │ └── enum.go │ │ └── output │ │ │ └── enum.go │ │ ├── output │ │ └── enum.go │ │ └── panic │ │ ├── generated │ │ └── generated.go │ │ └── input.go ├── errors │ ├── converter_test.go │ ├── generated │ │ └── generated.go │ └── input.go ├── extend-external │ ├── generated │ │ └── generated.go │ └── input.go ├── extend-local-complex │ ├── generated │ │ └── generated.go │ └── input.go ├── extend-local-with-converter │ ├── generated │ │ └── generated.go │ └── input.go ├── extend-local │ ├── generated │ │ └── generated.go │ └── input.go ├── extend-with-error │ ├── generated │ │ └── generated.go │ └── input.go ├── format │ ├── assignvariables │ │ ├── input.gen.go │ │ └── input.go │ ├── common │ │ └── common.go │ ├── interfacefunction │ │ ├── generated │ │ │ └── generated.go │ │ └── input.go │ └── interfacetostruct │ │ ├── generated │ │ └── generated.go │ │ └── input.go ├── gen.go ├── house │ ├── converter_test.go │ ├── generated │ │ └── generated.go │ └── input.go ├── ignore-missing │ ├── generated │ │ └── generated.go │ └── input.go ├── ignore-unexported │ ├── generated │ │ └── generated.go │ └── input.go ├── ignore │ ├── generated │ │ └── generated.go │ └── input.go ├── map-custom │ ├── generated │ │ └── generated.go │ └── input.go ├── map-field │ ├── generated │ │ └── generated.go │ └── input.go ├── map-identity │ ├── generated │ │ └── generated.go │ └── input.go ├── map-path │ ├── generated │ │ └── generated.go │ └── input.go ├── match-ignore-case │ ├── generated │ │ └── generated.go │ └── input.go ├── mismatched │ ├── generated │ │ └── generated.go │ ├── input.go │ └── mismatched_test.go ├── name-struct │ ├── generated │ │ └── generated.go │ └── input.go ├── nested-struct │ ├── generated │ │ └── generated.go │ ├── input.go │ └── model.go ├── output-multiple-files │ ├── a │ │ └── generated.go │ ├── b │ │ └── generated.go │ ├── c │ │ └── input.go │ └── root.go ├── output-raw │ ├── generated │ │ └── generated.go │ └── input.go ├── protobuf │ ├── event.proto │ ├── generated │ │ └── generated.go │ ├── go.mod │ ├── go.sum │ ├── input.go │ ├── pb │ │ └── event.pb.go │ └── update.sh ├── samepackage │ ├── assign.go │ ├── generated.go │ ├── input.go │ ├── use.go │ └── use2.go ├── simple │ ├── converter_test.go │ ├── generated │ │ └── generated.go │ └── input.go ├── skip-copy-same-type │ ├── generated │ │ └── generated.go │ └── input.go ├── struct-comment │ ├── generated │ │ └── generated.go │ └── input.go ├── time │ ├── generated │ │ └── generated.go │ └── input.go ├── update-ignore-zero │ ├── generated │ │ └── generated.go │ └── input.go ├── update │ ├── generated │ │ └── generated.go │ └── input.go ├── use-underlying-type-methods │ ├── generated │ │ └── generated.go │ └── input.go ├── use-zero-value-on-pointer-inconsistency │ ├── generated │ │ └── generated.go │ └── input.go ├── wrap-errors-using │ ├── generated │ │ ├── generated.go │ │ └── minimal.go │ ├── go.mod │ ├── go.sum │ ├── input.go │ ├── minimal_input.go │ └── patherr │ │ └── patherr.go └── wrap-errors │ ├── generated │ └── generated.go │ └── input.go ├── generator ├── filemanager.go ├── generate.go ├── generator.go ├── setup.go └── validate.go ├── go.mod ├── go.sum ├── method ├── definition.go ├── index.go └── parse.go ├── namer └── namer.go ├── pkgload ├── parse.go └── pkgload.go ├── runner.go ├── runner_test.go ├── scenario ├── alias_gomap.yml ├── alias_named.yml ├── array_different_size.yml ├── array_same_size.yml ├── auto_map.yml ├── auto_map_ambigious.yml ├── auto_map_case_insensitive.yml ├── auto_map_missing.yml ├── auto_map_nested.yml ├── auto_map_non_struct.yml ├── auto_map_pointer.yml ├── auto_map_pointer_error.yml ├── bool_setting_invalid_value.yml ├── bool_setting_too_many_values.yml ├── build_tags_contraints.yml ├── chan.yml ├── context_error_duplicated_type.yml ├── context_error_missing.yml ├── context_error_not_satisfies.yml ├── context_error_not_satisfies2.yml ├── context_error_partly_satisfied.yml ├── context_extend_necessary.yml ├── context_extend_one.yml ├── context_extend_two.yml ├── context_extend_two2.yml ├── context_nested_notneeded.yml ├── context_override_extend.yml ├── context_regex.yml ├── context_regex_invalid.yml ├── context_regex_invalid2.yml ├── cwd.yml ├── default_external_package.yml ├── default_on_basic_pointer.yml ├── default_on_pointer.yml ├── default_on_pointer_inner_error.yml ├── default_on_pointer_sig_mismatch.yml ├── default_on_pointer_with_error.yml ├── default_on_pointer_with_non_pointer_method.yml ├── default_on_pointer_with_non_pointer_method_with_error.yml ├── default_on_pointer_with_source.yml ├── default_on_pointer_wrong_return_type.yml ├── default_on_source_pointer_struct_target_struct.yml ├── default_on_source_pointer_struct_target_struct_inner_error.yml ├── default_on_source_pointer_struct_target_struct_invalid_sig.yml ├── default_on_source_struct_target_pointer.yml ├── default_on_source_struct_target_pointer_default_mismatch.yml ├── default_on_source_struct_target_pointer_inner_error.yml ├── default_on_struct.yml ├── default_on_struct_wrong_source_type.yml ├── default_pointer_inconsistency.yml ├── default_pointer_inconsistency_sig_mismatch.yml ├── default_update_on_struct_wrong_source_type.yml ├── default_update_pointer_inconsistency_inner_error.yml ├── default_update_pointer_inconsistency_sig_mismatch.yml ├── default_with_error.yml ├── delegate_context.yml ├── delegate_context_missing.yml ├── delegate_error.yml ├── delegate_error_return_extend_not.yml ├── delegate_mismatch.yml ├── delegate_simple.yml ├── delegate_simple_with_self.yml ├── directive.yml ├── duplicate_signature_context.yml ├── duplicate_signature_different_context.yml ├── duplicate_signature_no_context.yml ├── duplicate_signature_overlapping_context.yml ├── duplicate_signature_overlapping_context2.yml ├── duplicate_signature_same_context.yml ├── enum_disable.yml ├── enum_duplicated_different_actions.yml ├── enum_duplicated_different_values.yml ├── enum_duplicated_different_values_mapped.yml ├── enum_duplicated_same_values.yml ├── enum_exclude.yml ├── enum_exclude_invalid.yml ├── enum_exclude_invalid2.yml ├── enum_exclude_invalid3.yml ├── enum_from_primitive.yml ├── enum_map.yml ├── enum_map_ignore.yml ├── enum_map_invalid.yml ├── enum_map_missing_ignore.yml ├── enum_map_missing_source.yml ├── enum_map_missing_target.yml ├── enum_map_panic.yml ├── enum_map_return_error.yml ├── enum_map_return_error_fail.yml ├── enum_no_bool.yml ├── enum_transform_missing.yml ├── enum_transform_no_match.yml ├── enum_transform_regex.yml ├── enum_transform_regex2.yml ├── enum_transform_regex_error.yml ├── enum_transform_regex_error2.yml ├── enum_underlying_conflict.md ├── enum_unknown_error.yml ├── enum_unknown_error_nested.yml ├── enum_unknown_ignore.yml ├── enum_unknown_invalid.yml ├── enum_unknown_missing.yml ├── enum_unknown_on_method.yml ├── enum_unknown_panic.yml ├── enum_unknown_return_error_fail.yml ├── enum_with_default_init.yml ├── enum_with_default_init_error.yml ├── error_propergate.yml ├── extend_alias.yml ├── extend_external.yml ├── extend_external_error.yml ├── extend_external_exact_name_missing.yml ├── extend_external_pattern_ignore_unexported.yml ├── extend_external_pattern_zero_matches.yml ├── extend_external_relative.yml ├── extend_external_unexported.yml ├── extend_external_unexported_error.yml ├── extend_generic.yml ├── extend_global_wrap_errors.yml ├── extend_local_wrap_errors.yml ├── extend_map_nested.yml ├── extend_map_nested_pointer.yml ├── extend_missing_return_error.yml ├── extend_missing_return_error_nested.yml ├── extend_name_pattern_required.yml ├── extend_name_pattern_wrong_regexp.yml ├── extend_named_underlying_both.yml ├── extend_named_underlying_error.yml ├── extend_named_underlying_global.yml ├── extend_named_underlying_source.yml ├── extend_named_underlying_target.yml ├── extend_no_packages_loaded.yml ├── extend_not_exist.yml ├── extend_package_path_required.yml ├── extend_package_unexported_method.yml ├── extend_pass_self.yml ├── extend_pattern.yml ├── extend_pattern_zero_matches.yml ├── extend_primitive.yml ├── extend_return_error_nested.yml ├── extend_underlying_one_named.yml ├── extend_wrong_source.yml ├── extend_wrong_source_converter.yml ├── extend_wrong_target.yml ├── extend_wrong_target_second.yml ├── extend_wrong_type.yml ├── fmtfunc_basic.yml ├── fmtfunc_use_interface.yml ├── fmtfunc_use_interface2.yml ├── generic.yml ├── generic_multiple.yml ├── global_error.yml ├── global_extend_pattern.yml ├── gomap_key_mismatch.yml ├── gomap_nested_struct.yml ├── gomap_primitive.yml ├── gomap_primitive_named.yml ├── gomap_primitive_pointer.yml ├── gomap_struct.yml ├── gomap_value_mismatch.yml ├── gomap_wrap_errors.yml ├── ignore.yml ├── ignore_missing.yml ├── ignore_missing_global_internal_method.yml ├── ignore_missing_map_extend.yml ├── ignore_missing_map_extend_default.yml ├── ignore_missing_no_propergate.yml ├── ignore_missing_unexported.yml ├── ignore_unexported.yml ├── ignore_unexported_by_name.yml ├── ignore_unexported_flag.yml ├── ignore_unexported_no_popergate.yml ├── ignore_unexported_on_converter.yml ├── interface_complex.yml ├── interface_embed.yml ├── interface_empty.yml ├── interface_in_interface.yml ├── interface_methods.yml ├── into_default_output_package.yml ├── into_external_package_cwd_infer_full.yml ├── into_external_package_infer_full.yml ├── into_external_package_infer_path.yml ├── into_source_package.yml ├── into_source_package_infer_full.yml ├── into_source_package_infer_path.yml ├── invalid_comment_const.yml ├── invalid_converter_comment.yml ├── invalid_interface.yml ├── invalid_interface2.yml ├── invalid_marker.yml ├── invalid_meta.yml ├── invalid_meta2.yml ├── invalid_meta_empty.yml ├── invalid_method_comment_param.yml ├── invalid_method_comment_param2.yml ├── invalid_method_comment_param_empty.yml ├── invalid_output_format.yml ├── invalid_output_format2.yml ├── invalid_signature_source.yml ├── invalid_signature_target.yml ├── map_custom.yml ├── map_custom_any.yml ├── map_custom_empty.yml ├── map_custom_error_too_many_params.yml ├── map_custom_error_with_no_value_return.yml ├── map_custom_error_with_non_func_ref.yml ├── map_custom_error_with_ref_not_exist.yml ├── map_custom_error_with_wrong_return_type.yml ├── map_custom_error_with_wrong_return_type2.yml ├── map_custom_error_wrong_type.yml ├── map_custom_external.yml ├── map_custom_external_compile_error.yml ├── map_custom_external_empty_package.yml ├── map_custom_external_pattern_wildcard.yml ├── map_custom_external_unexported.yml ├── map_custom_external_unexported_error.yml ├── map_custom_external_with_error.yml ├── map_custom_generic.yml ├── map_custom_interface.yml ├── map_custom_invalid_method.yml ├── map_custom_missing_context.yml ├── map_custom_missing_error_return.yml ├── map_custom_self.yml ├── map_custom_struct_pointer.yml ├── map_custom_typealias.yml ├── map_identity.yml ├── map_identity_error.yml ├── map_identity_pointer.yml ├── map_identity_pointer2.yml ├── map_identity_pointer_source.yml ├── map_identity_pointer_source_error.yml ├── map_identity_type_mismatch.yml ├── map_identity_with_custom.yml ├── map_identity_wrong_source_type.yml ├── map_invalid.yml ├── map_nested.yml ├── map_nested_complex.yml ├── map_nested_inner_pointer.yml ├── map_nested_missing_field.yml ├── map_nested_pointer.yml ├── map_nested_pointer_type_mismatch.yml ├── map_nested_structpointer.yml ├── map_nested_type_missmatch.yml ├── map_nested_with_custom.yml ├── map_nested_with_custom_error.yml ├── map_on_invalid_type.yml ├── map_overlapping_config.yml ├── map_overlapping_config2.yml ├── map_overlapping_config3.yml ├── map_simple.yml ├── map_struct_to_struct_pointer.yml ├── map_target_path.yml ├── map_too_many_params.yml ├── map_unexported.yml ├── map_unknown_target.yml ├── map_with_custom_error.yml ├── match_ignore_case.yml ├── match_ignore_case_explicit_ambiguous.yml ├── match_ignore_case_global.yml ├── match_ignore_case_global_flag.yml ├── match_ignore_case_invalid_comment.yml ├── match_ignore_case_no_propagate.yml ├── match_ignore_case_type_mismatch.yml ├── match_ignore_case_unresolved_ambiguity.yml ├── meta_converter.yml ├── missing_error_return.yml ├── multiple_package_one_output.yml ├── multiple_package_one_output_wildcard.yml ├── name_invalid.yml ├── nested.yml ├── nested_alias.yml ├── nested_pointer.yml ├── nested_pointer2.yml ├── output_package_mismatch.yml ├── output_raw.yml ├── package_name.yaml ├── pattern_error.yml ├── pointer_mismatch_error.yml ├── pointer_primitive_type_mismatch.yml ├── pointer_type_mismatch.yml ├── primitive.yml ├── primitive_type_mismatch.yml ├── recursive.yml ├── recursive2.yml ├── recursive3.yml ├── recursive4.yml ├── return_error.yml ├── setting_ignored_pointer_mismatch.yml ├── setting_ignored_pointer_mismatch2.yml ├── setting_ignored_recursive.yml ├── setting_ignored_recursive2.yml ├── setting_ignored_recursive3.yml ├── setting_ignored_sub_method.yml ├── signature.yml ├── skipcopy_identity.yml ├── skipcopy_identity_setting_inheritance.yml ├── skipcopy_inner.yml ├── skipcopy_method.yml ├── slice_array.yml ├── slice_named.yml ├── slice_nested.yml ├── slice_pointer.yml ├── slice_pointer2.yml ├── slice_pointer3.yml ├── slice_pointer4.yml ├── slice_primitive.yml ├── slice_primitive_global_wrap_errors.yml ├── slice_primitive_local_wrap_errors.yml ├── slice_primitive_pointer.yml ├── slice_struct.yml ├── slice_struct_pointer.yml ├── slice_type_mismatch.yml ├── slice_value_type_mismatch.yml ├── source_ignore_unexported_fields.yml ├── struct_comment.yml ├── struct_empty.yml ├── struct_method.yml ├── struct_method_fail_missing_context.yml ├── struct_method_fail_missing_error_return.yml ├── struct_method_fail_nested_mismatch_custom.yml ├── struct_method_fail_no_return.yml ├── struct_method_fail_return_mismatch.yml ├── struct_method_nested.yml ├── struct_method_nested_with_error.yml ├── struct_method_with_error.yml ├── struct_missing_field.yml ├── struct_missing_mapped_field.yml ├── struct_missing_mapped_nested_field.yml ├── struct_pointer.yml ├── struct_pointer_ignore.yml ├── struct_pointer_map.yml ├── struct_primitive.yml ├── struct_primitive_named.yml ├── struct_primitive_pointer.yml ├── struct_slice_array.yml ├── struct_unexported_same_package.yml ├── struct_unnamed.yml ├── struct_unnamed_embedded.yml ├── struct_unnamed_external.yml ├── struct_unnamed_nested.yml ├── struct_unnamed_pointer.yml ├── struct_unnamed_slice.yml ├── struct_unnamed_slice_nested.yml ├── syntax_error.yml ├── type_mismatch.yml ├── type_mismatch_nested.yml ├── type_mismatch_pointer.yml ├── unexported_converter_method.yml ├── unexported_converter_method_error.yml ├── unexported_error.yml ├── universe_type.yml ├── universe_type_error.yml ├── update_struct_custom_call.yml ├── update_struct_error.yml ├── update_struct_error_mismatch.yml ├── update_struct_invalid_signature_multiple_results.yml ├── update_struct_invalid_signature_result_non_error.yml ├── update_struct_invalid_signature_source.yml ├── update_struct_missing_param.yml ├── update_struct_nil_field.yml ├── update_struct_no_source_stract.yml ├── update_struct_no_target_pointer.yml ├── update_struct_simple.yml ├── update_struct_source_pointer.yml ├── update_struct_zero_value_field_ignore.yml ├── update_struct_zero_value_field_ignore_custom.yml ├── update_struct_zero_value_field_ignore_nillable.yml ├── update_struct_zero_value_field_ignore_nillable_skipcopy.yml ├── use_zerovalue_on_pointer_inconsistency_gomap.yml ├── use_zerovalue_on_pointer_inconsistency_map_nested.yml ├── use_zerovalue_on_pointer_inconsistency_map_nested2.yml ├── use_zerovalue_on_pointer_inconsistency_map_nested3.yml ├── use_zerovalue_on_pointer_inconsistency_multi_ptr.yml ├── use_zerovalue_on_pointer_inconsistency_primitive.yml ├── use_zerovalue_on_pointer_inconsistency_slice.yml ├── use_zerovalue_on_pointer_inconsistency_slice_inner.yml ├── use_zerovalue_on_pointer_inconsistency_struct.yml ├── use_zerovalue_on_pointer_inconsistency_unnamed.yml ├── use_zerovalue_on_pointer_inconsistency_value_type_mismatch.yml ├── var_basic.yml ├── var_enum.yml ├── var_invalid_format.yml ├── var_invalid_marker.yml ├── var_invalid_setting.yml ├── var_invalid_sig.yml ├── var_output_package_mismatch.yml ├── var_prevent_clash.yml ├── var_struct_comment.yml ├── var_struct_method_fail_missing_context.yml ├── var_struct_name.yml ├── var_submethod.yml ├── wrap_errors_using_illegal1.yml ├── wrap_errors_using_illegal2.yml └── wrap_errors_using_nested.yml └── xtype ├── access.go ├── enum.go ├── map.go ├── tocode.go ├── type.go ├── usage.go └── zero.go /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/ISSUE_TEMPLATE/questions.md -------------------------------------------------------------------------------- /.github/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/logo.svg -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/.golangci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/README.md -------------------------------------------------------------------------------- /cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/cli/command.go -------------------------------------------------------------------------------- /cli/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/cli/parse.go -------------------------------------------------------------------------------- /cli/parse_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/cli/parse_test.go -------------------------------------------------------------------------------- /cli/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/cli/run.go -------------------------------------------------------------------------------- /cmd/goverter/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/cmd/goverter/main.go -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/codecov.yml -------------------------------------------------------------------------------- /comments/parse_docs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/comments/parse_docs.go -------------------------------------------------------------------------------- /config/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/common.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/config.go -------------------------------------------------------------------------------- /config/converter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/converter.go -------------------------------------------------------------------------------- /config/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/enum.go -------------------------------------------------------------------------------- /config/method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/method.go -------------------------------------------------------------------------------- /config/package.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/package.go -------------------------------------------------------------------------------- /config/parse/comment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/parse/comment.go -------------------------------------------------------------------------------- /config/parse/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/parse/file.go -------------------------------------------------------------------------------- /config/parse/line.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/parse/line.go -------------------------------------------------------------------------------- /config/parse/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/config/parse/parse.go -------------------------------------------------------------------------------- /docs/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/.prettierrc -------------------------------------------------------------------------------- /docs/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/.vitepress/config.mts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/GH.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/GH.vue -------------------------------------------------------------------------------- /docs/alternatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/alternatives.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/changelog.md -------------------------------------------------------------------------------- /docs/explanation/generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/explanation/generation.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/faq.md -------------------------------------------------------------------------------- /docs/guide/configure-nested.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/configure-nested.md -------------------------------------------------------------------------------- /docs/guide/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/context.md -------------------------------------------------------------------------------- /docs/guide/embedded-structs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/embedded-structs.md -------------------------------------------------------------------------------- /docs/guide/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/enum.md -------------------------------------------------------------------------------- /docs/guide/error-early.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/error-early.md -------------------------------------------------------------------------------- /docs/guide/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/format.md -------------------------------------------------------------------------------- /docs/guide/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/getting-started.md -------------------------------------------------------------------------------- /docs/guide/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/install.md -------------------------------------------------------------------------------- /docs/guide/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/migration.md -------------------------------------------------------------------------------- /docs/guide/output-same-package.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/output-same-package.md -------------------------------------------------------------------------------- /docs/guide/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/struct.md -------------------------------------------------------------------------------- /docs/guide/unexported-field.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/unexported-field.md -------------------------------------------------------------------------------- /docs/guide/update-instance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/guide/update-instance.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/public/CNAME: -------------------------------------------------------------------------------- 1 | goverter.jmattheis.de 2 | -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/public/favicon.svg -------------------------------------------------------------------------------- /docs/reference/arg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/arg.md -------------------------------------------------------------------------------- /docs/reference/autoMap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/autoMap.md -------------------------------------------------------------------------------- /docs/reference/build-constraint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/build-constraint.md -------------------------------------------------------------------------------- /docs/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/cli.md -------------------------------------------------------------------------------- /docs/reference/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/context.md -------------------------------------------------------------------------------- /docs/reference/converter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/converter.md -------------------------------------------------------------------------------- /docs/reference/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/default.md -------------------------------------------------------------------------------- /docs/reference/define-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/define-settings.md -------------------------------------------------------------------------------- /docs/reference/enum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/enum.md -------------------------------------------------------------------------------- /docs/reference/extend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/extend.md -------------------------------------------------------------------------------- /docs/reference/ignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/ignore.md -------------------------------------------------------------------------------- /docs/reference/ignoreMissing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/ignoreMissing.md -------------------------------------------------------------------------------- /docs/reference/ignoreUnexported.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/ignoreUnexported.md -------------------------------------------------------------------------------- /docs/reference/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/map.md -------------------------------------------------------------------------------- /docs/reference/matchIgnoreCase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/matchIgnoreCase.md -------------------------------------------------------------------------------- /docs/reference/name.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/name.md -------------------------------------------------------------------------------- /docs/reference/output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/output.md -------------------------------------------------------------------------------- /docs/reference/settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/settings.md -------------------------------------------------------------------------------- /docs/reference/signature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/signature.md -------------------------------------------------------------------------------- /docs/reference/skipCopySameType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/skipCopySameType.md -------------------------------------------------------------------------------- /docs/reference/struct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/struct.md -------------------------------------------------------------------------------- /docs/reference/update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/update.md -------------------------------------------------------------------------------- /docs/reference/useUnderlyingTypeMethods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/useUnderlyingTypeMethods.md -------------------------------------------------------------------------------- /docs/reference/useZeroValueOnPointerInconsistency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/useZeroValueOnPointerInconsistency.md -------------------------------------------------------------------------------- /docs/reference/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/variables.md -------------------------------------------------------------------------------- /docs/reference/wrapErrors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/wrapErrors.md -------------------------------------------------------------------------------- /docs/reference/wrapErrorsUsing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/reference/wrapErrorsUsing.md -------------------------------------------------------------------------------- /docs/use-case.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/use-case.md -------------------------------------------------------------------------------- /docs/version.data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/version.data.js -------------------------------------------------------------------------------- /docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/docs/yarn.lock -------------------------------------------------------------------------------- /enum/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/enum/config.go -------------------------------------------------------------------------------- /enum/detect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/enum/detect.go -------------------------------------------------------------------------------- /enum/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/enum/enum.go -------------------------------------------------------------------------------- /enum/transformer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/enum/transformer.go -------------------------------------------------------------------------------- /enum/transformer_builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/enum/transformer_builtin.go -------------------------------------------------------------------------------- /example/any-to-any/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/any-to-any/generated/generated.go -------------------------------------------------------------------------------- /example/any-to-any/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/any-to-any/input.go -------------------------------------------------------------------------------- /example/auto-map/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/auto-map/generated/generated.go -------------------------------------------------------------------------------- /example/auto-map/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/auto-map/input.go -------------------------------------------------------------------------------- /example/constructor/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/constructor/generated/generated.go -------------------------------------------------------------------------------- /example/constructor/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/constructor/input.go -------------------------------------------------------------------------------- /example/context/database/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/database/generated/generated.go -------------------------------------------------------------------------------- /example/context/database/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/database/input.go -------------------------------------------------------------------------------- /example/context/date-format/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/date-format/generated/generated.go -------------------------------------------------------------------------------- /example/context/date-format/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/date-format/input.go -------------------------------------------------------------------------------- /example/context/regex/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/regex/generated/generated.go -------------------------------------------------------------------------------- /example/context/regex/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/context/regex/input.go -------------------------------------------------------------------------------- /example/default-update/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/default-update/generated/generated.go -------------------------------------------------------------------------------- /example/default-update/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/default-update/input.go -------------------------------------------------------------------------------- /example/default/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/default/generated/generated.go -------------------------------------------------------------------------------- /example/default/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/default/input.go -------------------------------------------------------------------------------- /example/embedded/fromembedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/embedded/fromembedded.go -------------------------------------------------------------------------------- /example/embedded/generated/fromembedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/embedded/generated/fromembedded.go -------------------------------------------------------------------------------- /example/embedded/generated/toembedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/embedded/generated/toembedded.go -------------------------------------------------------------------------------- /example/embedded/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/embedded/model.go -------------------------------------------------------------------------------- /example/embedded/toembedded.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/embedded/toembedded.go -------------------------------------------------------------------------------- /example/enum/disable/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/disable/generated/generated.go -------------------------------------------------------------------------------- /example/enum/disable/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/disable/input.go -------------------------------------------------------------------------------- /example/enum/exclude/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/exclude/generated/generated.go -------------------------------------------------------------------------------- /example/enum/exclude/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/exclude/input.go -------------------------------------------------------------------------------- /example/enum/map-panic/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map-panic/generated/generated.go -------------------------------------------------------------------------------- /example/enum/map-panic/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map-panic/input.go -------------------------------------------------------------------------------- /example/enum/map-panic/input/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map-panic/input/enum.go -------------------------------------------------------------------------------- /example/enum/map-panic/output/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map-panic/output/enum.go -------------------------------------------------------------------------------- /example/enum/map/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map/generated/generated.go -------------------------------------------------------------------------------- /example/enum/map/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map/input.go -------------------------------------------------------------------------------- /example/enum/map/input/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map/input/enum.go -------------------------------------------------------------------------------- /example/enum/map/output/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/map/output/enum.go -------------------------------------------------------------------------------- /example/enum/transform-custom/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-custom/generated/generated.go -------------------------------------------------------------------------------- /example/enum/transform-custom/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-custom/go.mod -------------------------------------------------------------------------------- /example/enum/transform-custom/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-custom/go.sum -------------------------------------------------------------------------------- /example/enum/transform-custom/goverter/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-custom/goverter/run.go -------------------------------------------------------------------------------- /example/enum/transform-custom/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-custom/input.go -------------------------------------------------------------------------------- /example/enum/transform-regex/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-regex/generated/generated.go -------------------------------------------------------------------------------- /example/enum/transform-regex/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/transform-regex/input.go -------------------------------------------------------------------------------- /example/enum/unknown/error/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/error/generated/generated.go -------------------------------------------------------------------------------- /example/enum/unknown/error/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/error/input.go -------------------------------------------------------------------------------- /example/enum/unknown/ignore/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/ignore/generated/generated.go -------------------------------------------------------------------------------- /example/enum/unknown/ignore/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/ignore/input.go -------------------------------------------------------------------------------- /example/enum/unknown/input/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/input/enum.go -------------------------------------------------------------------------------- /example/enum/unknown/key/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/key/generated/generated.go -------------------------------------------------------------------------------- /example/enum/unknown/key/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/key/input.go -------------------------------------------------------------------------------- /example/enum/unknown/key/input/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/key/input/enum.go -------------------------------------------------------------------------------- /example/enum/unknown/key/output/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/key/output/enum.go -------------------------------------------------------------------------------- /example/enum/unknown/output/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/output/enum.go -------------------------------------------------------------------------------- /example/enum/unknown/panic/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/panic/generated/generated.go -------------------------------------------------------------------------------- /example/enum/unknown/panic/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/enum/unknown/panic/input.go -------------------------------------------------------------------------------- /example/errors/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/errors/converter_test.go -------------------------------------------------------------------------------- /example/errors/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/errors/generated/generated.go -------------------------------------------------------------------------------- /example/errors/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/errors/input.go -------------------------------------------------------------------------------- /example/extend-external/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-external/generated/generated.go -------------------------------------------------------------------------------- /example/extend-external/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-external/input.go -------------------------------------------------------------------------------- /example/extend-local-complex/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local-complex/generated/generated.go -------------------------------------------------------------------------------- /example/extend-local-complex/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local-complex/input.go -------------------------------------------------------------------------------- /example/extend-local-with-converter/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local-with-converter/generated/generated.go -------------------------------------------------------------------------------- /example/extend-local-with-converter/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local-with-converter/input.go -------------------------------------------------------------------------------- /example/extend-local/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local/generated/generated.go -------------------------------------------------------------------------------- /example/extend-local/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-local/input.go -------------------------------------------------------------------------------- /example/extend-with-error/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-with-error/generated/generated.go -------------------------------------------------------------------------------- /example/extend-with-error/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/extend-with-error/input.go -------------------------------------------------------------------------------- /example/format/assignvariables/input.gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/assignvariables/input.gen.go -------------------------------------------------------------------------------- /example/format/assignvariables/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/assignvariables/input.go -------------------------------------------------------------------------------- /example/format/common/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/common/common.go -------------------------------------------------------------------------------- /example/format/interfacefunction/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/interfacefunction/generated/generated.go -------------------------------------------------------------------------------- /example/format/interfacefunction/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/interfacefunction/input.go -------------------------------------------------------------------------------- /example/format/interfacetostruct/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/interfacetostruct/generated/generated.go -------------------------------------------------------------------------------- /example/format/interfacetostruct/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/format/interfacetostruct/input.go -------------------------------------------------------------------------------- /example/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/gen.go -------------------------------------------------------------------------------- /example/house/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/house/converter_test.go -------------------------------------------------------------------------------- /example/house/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/house/generated/generated.go -------------------------------------------------------------------------------- /example/house/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/house/input.go -------------------------------------------------------------------------------- /example/ignore-missing/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore-missing/generated/generated.go -------------------------------------------------------------------------------- /example/ignore-missing/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore-missing/input.go -------------------------------------------------------------------------------- /example/ignore-unexported/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore-unexported/generated/generated.go -------------------------------------------------------------------------------- /example/ignore-unexported/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore-unexported/input.go -------------------------------------------------------------------------------- /example/ignore/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore/generated/generated.go -------------------------------------------------------------------------------- /example/ignore/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/ignore/input.go -------------------------------------------------------------------------------- /example/map-custom/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-custom/generated/generated.go -------------------------------------------------------------------------------- /example/map-custom/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-custom/input.go -------------------------------------------------------------------------------- /example/map-field/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-field/generated/generated.go -------------------------------------------------------------------------------- /example/map-field/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-field/input.go -------------------------------------------------------------------------------- /example/map-identity/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-identity/generated/generated.go -------------------------------------------------------------------------------- /example/map-identity/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-identity/input.go -------------------------------------------------------------------------------- /example/map-path/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-path/generated/generated.go -------------------------------------------------------------------------------- /example/map-path/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/map-path/input.go -------------------------------------------------------------------------------- /example/match-ignore-case/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/match-ignore-case/generated/generated.go -------------------------------------------------------------------------------- /example/match-ignore-case/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/match-ignore-case/input.go -------------------------------------------------------------------------------- /example/mismatched/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/mismatched/generated/generated.go -------------------------------------------------------------------------------- /example/mismatched/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/mismatched/input.go -------------------------------------------------------------------------------- /example/mismatched/mismatched_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/mismatched/mismatched_test.go -------------------------------------------------------------------------------- /example/name-struct/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/name-struct/generated/generated.go -------------------------------------------------------------------------------- /example/name-struct/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/name-struct/input.go -------------------------------------------------------------------------------- /example/nested-struct/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/nested-struct/generated/generated.go -------------------------------------------------------------------------------- /example/nested-struct/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/nested-struct/input.go -------------------------------------------------------------------------------- /example/nested-struct/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/nested-struct/model.go -------------------------------------------------------------------------------- /example/output-multiple-files/a/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-multiple-files/a/generated.go -------------------------------------------------------------------------------- /example/output-multiple-files/b/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-multiple-files/b/generated.go -------------------------------------------------------------------------------- /example/output-multiple-files/c/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-multiple-files/c/input.go -------------------------------------------------------------------------------- /example/output-multiple-files/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-multiple-files/root.go -------------------------------------------------------------------------------- /example/output-raw/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-raw/generated/generated.go -------------------------------------------------------------------------------- /example/output-raw/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/output-raw/input.go -------------------------------------------------------------------------------- /example/protobuf/event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/event.proto -------------------------------------------------------------------------------- /example/protobuf/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/generated/generated.go -------------------------------------------------------------------------------- /example/protobuf/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/go.mod -------------------------------------------------------------------------------- /example/protobuf/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/go.sum -------------------------------------------------------------------------------- /example/protobuf/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/input.go -------------------------------------------------------------------------------- /example/protobuf/pb/event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/pb/event.pb.go -------------------------------------------------------------------------------- /example/protobuf/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/protobuf/update.sh -------------------------------------------------------------------------------- /example/samepackage/assign.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/samepackage/assign.go -------------------------------------------------------------------------------- /example/samepackage/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/samepackage/generated.go -------------------------------------------------------------------------------- /example/samepackage/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/samepackage/input.go -------------------------------------------------------------------------------- /example/samepackage/use.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/samepackage/use.go -------------------------------------------------------------------------------- /example/samepackage/use2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/samepackage/use2.go -------------------------------------------------------------------------------- /example/simple/converter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/simple/converter_test.go -------------------------------------------------------------------------------- /example/simple/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/simple/generated/generated.go -------------------------------------------------------------------------------- /example/simple/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/simple/input.go -------------------------------------------------------------------------------- /example/skip-copy-same-type/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/skip-copy-same-type/generated/generated.go -------------------------------------------------------------------------------- /example/skip-copy-same-type/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/skip-copy-same-type/input.go -------------------------------------------------------------------------------- /example/struct-comment/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/struct-comment/generated/generated.go -------------------------------------------------------------------------------- /example/struct-comment/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/struct-comment/input.go -------------------------------------------------------------------------------- /example/time/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/time/generated/generated.go -------------------------------------------------------------------------------- /example/time/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/time/input.go -------------------------------------------------------------------------------- /example/update-ignore-zero/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/update-ignore-zero/generated/generated.go -------------------------------------------------------------------------------- /example/update-ignore-zero/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/update-ignore-zero/input.go -------------------------------------------------------------------------------- /example/update/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/update/generated/generated.go -------------------------------------------------------------------------------- /example/update/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/update/input.go -------------------------------------------------------------------------------- /example/use-underlying-type-methods/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/use-underlying-type-methods/generated/generated.go -------------------------------------------------------------------------------- /example/use-underlying-type-methods/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/use-underlying-type-methods/input.go -------------------------------------------------------------------------------- /example/use-zero-value-on-pointer-inconsistency/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/use-zero-value-on-pointer-inconsistency/generated/generated.go -------------------------------------------------------------------------------- /example/use-zero-value-on-pointer-inconsistency/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/use-zero-value-on-pointer-inconsistency/input.go -------------------------------------------------------------------------------- /example/wrap-errors-using/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/generated/generated.go -------------------------------------------------------------------------------- /example/wrap-errors-using/generated/minimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/generated/minimal.go -------------------------------------------------------------------------------- /example/wrap-errors-using/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/go.mod -------------------------------------------------------------------------------- /example/wrap-errors-using/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/go.sum -------------------------------------------------------------------------------- /example/wrap-errors-using/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/input.go -------------------------------------------------------------------------------- /example/wrap-errors-using/minimal_input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/minimal_input.go -------------------------------------------------------------------------------- /example/wrap-errors-using/patherr/patherr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors-using/patherr/patherr.go -------------------------------------------------------------------------------- /example/wrap-errors/generated/generated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors/generated/generated.go -------------------------------------------------------------------------------- /example/wrap-errors/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/example/wrap-errors/input.go -------------------------------------------------------------------------------- /generator/filemanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/generator/filemanager.go -------------------------------------------------------------------------------- /generator/generate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/generator/generate.go -------------------------------------------------------------------------------- /generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/generator/generator.go -------------------------------------------------------------------------------- /generator/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/generator/setup.go -------------------------------------------------------------------------------- /generator/validate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/generator/validate.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/go.sum -------------------------------------------------------------------------------- /method/definition.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/method/definition.go -------------------------------------------------------------------------------- /method/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/method/index.go -------------------------------------------------------------------------------- /method/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/method/parse.go -------------------------------------------------------------------------------- /namer/namer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/namer/namer.go -------------------------------------------------------------------------------- /pkgload/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/pkgload/parse.go -------------------------------------------------------------------------------- /pkgload/pkgload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/pkgload/pkgload.go -------------------------------------------------------------------------------- /runner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/runner.go -------------------------------------------------------------------------------- /runner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/runner_test.go -------------------------------------------------------------------------------- /scenario/alias_gomap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/alias_gomap.yml -------------------------------------------------------------------------------- /scenario/alias_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/alias_named.yml -------------------------------------------------------------------------------- /scenario/array_different_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/array_different_size.yml -------------------------------------------------------------------------------- /scenario/array_same_size.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/array_same_size.yml -------------------------------------------------------------------------------- /scenario/auto_map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map.yml -------------------------------------------------------------------------------- /scenario/auto_map_ambigious.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_ambigious.yml -------------------------------------------------------------------------------- /scenario/auto_map_case_insensitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_case_insensitive.yml -------------------------------------------------------------------------------- /scenario/auto_map_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_missing.yml -------------------------------------------------------------------------------- /scenario/auto_map_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_nested.yml -------------------------------------------------------------------------------- /scenario/auto_map_non_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_non_struct.yml -------------------------------------------------------------------------------- /scenario/auto_map_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_pointer.yml -------------------------------------------------------------------------------- /scenario/auto_map_pointer_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/auto_map_pointer_error.yml -------------------------------------------------------------------------------- /scenario/bool_setting_invalid_value.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/bool_setting_invalid_value.yml -------------------------------------------------------------------------------- /scenario/bool_setting_too_many_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/bool_setting_too_many_values.yml -------------------------------------------------------------------------------- /scenario/build_tags_contraints.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/build_tags_contraints.yml -------------------------------------------------------------------------------- /scenario/chan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/chan.yml -------------------------------------------------------------------------------- /scenario/context_error_duplicated_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_error_duplicated_type.yml -------------------------------------------------------------------------------- /scenario/context_error_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_error_missing.yml -------------------------------------------------------------------------------- /scenario/context_error_not_satisfies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_error_not_satisfies.yml -------------------------------------------------------------------------------- /scenario/context_error_not_satisfies2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_error_not_satisfies2.yml -------------------------------------------------------------------------------- /scenario/context_error_partly_satisfied.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_error_partly_satisfied.yml -------------------------------------------------------------------------------- /scenario/context_extend_necessary.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_extend_necessary.yml -------------------------------------------------------------------------------- /scenario/context_extend_one.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_extend_one.yml -------------------------------------------------------------------------------- /scenario/context_extend_two.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_extend_two.yml -------------------------------------------------------------------------------- /scenario/context_extend_two2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_extend_two2.yml -------------------------------------------------------------------------------- /scenario/context_nested_notneeded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_nested_notneeded.yml -------------------------------------------------------------------------------- /scenario/context_override_extend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_override_extend.yml -------------------------------------------------------------------------------- /scenario/context_regex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_regex.yml -------------------------------------------------------------------------------- /scenario/context_regex_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_regex_invalid.yml -------------------------------------------------------------------------------- /scenario/context_regex_invalid2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/context_regex_invalid2.yml -------------------------------------------------------------------------------- /scenario/cwd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/cwd.yml -------------------------------------------------------------------------------- /scenario/default_external_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_external_package.yml -------------------------------------------------------------------------------- /scenario/default_on_basic_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_basic_pointer.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_inner_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_inner_error.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_sig_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_sig_mismatch.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_with_error.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_with_non_pointer_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_with_non_pointer_method.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_with_non_pointer_method_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_with_non_pointer_method_with_error.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_with_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_with_source.yml -------------------------------------------------------------------------------- /scenario/default_on_pointer_wrong_return_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_pointer_wrong_return_type.yml -------------------------------------------------------------------------------- /scenario/default_on_source_pointer_struct_target_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_pointer_struct_target_struct.yml -------------------------------------------------------------------------------- /scenario/default_on_source_pointer_struct_target_struct_inner_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_pointer_struct_target_struct_inner_error.yml -------------------------------------------------------------------------------- /scenario/default_on_source_pointer_struct_target_struct_invalid_sig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_pointer_struct_target_struct_invalid_sig.yml -------------------------------------------------------------------------------- /scenario/default_on_source_struct_target_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_struct_target_pointer.yml -------------------------------------------------------------------------------- /scenario/default_on_source_struct_target_pointer_default_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_struct_target_pointer_default_mismatch.yml -------------------------------------------------------------------------------- /scenario/default_on_source_struct_target_pointer_inner_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_source_struct_target_pointer_inner_error.yml -------------------------------------------------------------------------------- /scenario/default_on_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_struct.yml -------------------------------------------------------------------------------- /scenario/default_on_struct_wrong_source_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_on_struct_wrong_source_type.yml -------------------------------------------------------------------------------- /scenario/default_pointer_inconsistency.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_pointer_inconsistency.yml -------------------------------------------------------------------------------- /scenario/default_pointer_inconsistency_sig_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_pointer_inconsistency_sig_mismatch.yml -------------------------------------------------------------------------------- /scenario/default_update_on_struct_wrong_source_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_update_on_struct_wrong_source_type.yml -------------------------------------------------------------------------------- /scenario/default_update_pointer_inconsistency_inner_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_update_pointer_inconsistency_inner_error.yml -------------------------------------------------------------------------------- /scenario/default_update_pointer_inconsistency_sig_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_update_pointer_inconsistency_sig_mismatch.yml -------------------------------------------------------------------------------- /scenario/default_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/default_with_error.yml -------------------------------------------------------------------------------- /scenario/delegate_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_context.yml -------------------------------------------------------------------------------- /scenario/delegate_context_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_context_missing.yml -------------------------------------------------------------------------------- /scenario/delegate_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_error.yml -------------------------------------------------------------------------------- /scenario/delegate_error_return_extend_not.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_error_return_extend_not.yml -------------------------------------------------------------------------------- /scenario/delegate_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_mismatch.yml -------------------------------------------------------------------------------- /scenario/delegate_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_simple.yml -------------------------------------------------------------------------------- /scenario/delegate_simple_with_self.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/delegate_simple_with_self.yml -------------------------------------------------------------------------------- /scenario/directive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/directive.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_context.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_different_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_different_context.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_no_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_no_context.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_overlapping_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_overlapping_context.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_overlapping_context2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_overlapping_context2.yml -------------------------------------------------------------------------------- /scenario/duplicate_signature_same_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/duplicate_signature_same_context.yml -------------------------------------------------------------------------------- /scenario/enum_disable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_disable.yml -------------------------------------------------------------------------------- /scenario/enum_duplicated_different_actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_duplicated_different_actions.yml -------------------------------------------------------------------------------- /scenario/enum_duplicated_different_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_duplicated_different_values.yml -------------------------------------------------------------------------------- /scenario/enum_duplicated_different_values_mapped.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_duplicated_different_values_mapped.yml -------------------------------------------------------------------------------- /scenario/enum_duplicated_same_values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_duplicated_same_values.yml -------------------------------------------------------------------------------- /scenario/enum_exclude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_exclude.yml -------------------------------------------------------------------------------- /scenario/enum_exclude_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_exclude_invalid.yml -------------------------------------------------------------------------------- /scenario/enum_exclude_invalid2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_exclude_invalid2.yml -------------------------------------------------------------------------------- /scenario/enum_exclude_invalid3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_exclude_invalid3.yml -------------------------------------------------------------------------------- /scenario/enum_from_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_from_primitive.yml -------------------------------------------------------------------------------- /scenario/enum_map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map.yml -------------------------------------------------------------------------------- /scenario/enum_map_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_ignore.yml -------------------------------------------------------------------------------- /scenario/enum_map_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_invalid.yml -------------------------------------------------------------------------------- /scenario/enum_map_missing_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_missing_ignore.yml -------------------------------------------------------------------------------- /scenario/enum_map_missing_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_missing_source.yml -------------------------------------------------------------------------------- /scenario/enum_map_missing_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_missing_target.yml -------------------------------------------------------------------------------- /scenario/enum_map_panic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_panic.yml -------------------------------------------------------------------------------- /scenario/enum_map_return_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_return_error.yml -------------------------------------------------------------------------------- /scenario/enum_map_return_error_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_map_return_error_fail.yml -------------------------------------------------------------------------------- /scenario/enum_no_bool.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_no_bool.yml -------------------------------------------------------------------------------- /scenario/enum_transform_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_missing.yml -------------------------------------------------------------------------------- /scenario/enum_transform_no_match.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_no_match.yml -------------------------------------------------------------------------------- /scenario/enum_transform_regex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_regex.yml -------------------------------------------------------------------------------- /scenario/enum_transform_regex2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_regex2.yml -------------------------------------------------------------------------------- /scenario/enum_transform_regex_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_regex_error.yml -------------------------------------------------------------------------------- /scenario/enum_transform_regex_error2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_transform_regex_error2.yml -------------------------------------------------------------------------------- /scenario/enum_underlying_conflict.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_underlying_conflict.md -------------------------------------------------------------------------------- /scenario/enum_unknown_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_error.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_error_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_error_nested.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_ignore.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_invalid.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_missing.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_on_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_on_method.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_panic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_panic.yml -------------------------------------------------------------------------------- /scenario/enum_unknown_return_error_fail.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_unknown_return_error_fail.yml -------------------------------------------------------------------------------- /scenario/enum_with_default_init.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_with_default_init.yml -------------------------------------------------------------------------------- /scenario/enum_with_default_init_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/enum_with_default_init_error.yml -------------------------------------------------------------------------------- /scenario/error_propergate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/error_propergate.yml -------------------------------------------------------------------------------- /scenario/extend_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_alias.yml -------------------------------------------------------------------------------- /scenario/extend_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external.yml -------------------------------------------------------------------------------- /scenario/extend_external_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_error.yml -------------------------------------------------------------------------------- /scenario/extend_external_exact_name_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_exact_name_missing.yml -------------------------------------------------------------------------------- /scenario/extend_external_pattern_ignore_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_pattern_ignore_unexported.yml -------------------------------------------------------------------------------- /scenario/extend_external_pattern_zero_matches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_pattern_zero_matches.yml -------------------------------------------------------------------------------- /scenario/extend_external_relative.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_relative.yml -------------------------------------------------------------------------------- /scenario/extend_external_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_unexported.yml -------------------------------------------------------------------------------- /scenario/extend_external_unexported_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_external_unexported_error.yml -------------------------------------------------------------------------------- /scenario/extend_generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_generic.yml -------------------------------------------------------------------------------- /scenario/extend_global_wrap_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_global_wrap_errors.yml -------------------------------------------------------------------------------- /scenario/extend_local_wrap_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_local_wrap_errors.yml -------------------------------------------------------------------------------- /scenario/extend_map_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_map_nested.yml -------------------------------------------------------------------------------- /scenario/extend_map_nested_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_map_nested_pointer.yml -------------------------------------------------------------------------------- /scenario/extend_missing_return_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_missing_return_error.yml -------------------------------------------------------------------------------- /scenario/extend_missing_return_error_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_missing_return_error_nested.yml -------------------------------------------------------------------------------- /scenario/extend_name_pattern_required.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_name_pattern_required.yml -------------------------------------------------------------------------------- /scenario/extend_name_pattern_wrong_regexp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_name_pattern_wrong_regexp.yml -------------------------------------------------------------------------------- /scenario/extend_named_underlying_both.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_named_underlying_both.yml -------------------------------------------------------------------------------- /scenario/extend_named_underlying_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_named_underlying_error.yml -------------------------------------------------------------------------------- /scenario/extend_named_underlying_global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_named_underlying_global.yml -------------------------------------------------------------------------------- /scenario/extend_named_underlying_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_named_underlying_source.yml -------------------------------------------------------------------------------- /scenario/extend_named_underlying_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_named_underlying_target.yml -------------------------------------------------------------------------------- /scenario/extend_no_packages_loaded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_no_packages_loaded.yml -------------------------------------------------------------------------------- /scenario/extend_not_exist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_not_exist.yml -------------------------------------------------------------------------------- /scenario/extend_package_path_required.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_package_path_required.yml -------------------------------------------------------------------------------- /scenario/extend_package_unexported_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_package_unexported_method.yml -------------------------------------------------------------------------------- /scenario/extend_pass_self.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_pass_self.yml -------------------------------------------------------------------------------- /scenario/extend_pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_pattern.yml -------------------------------------------------------------------------------- /scenario/extend_pattern_zero_matches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_pattern_zero_matches.yml -------------------------------------------------------------------------------- /scenario/extend_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_primitive.yml -------------------------------------------------------------------------------- /scenario/extend_return_error_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_return_error_nested.yml -------------------------------------------------------------------------------- /scenario/extend_underlying_one_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_underlying_one_named.yml -------------------------------------------------------------------------------- /scenario/extend_wrong_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_wrong_source.yml -------------------------------------------------------------------------------- /scenario/extend_wrong_source_converter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_wrong_source_converter.yml -------------------------------------------------------------------------------- /scenario/extend_wrong_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_wrong_target.yml -------------------------------------------------------------------------------- /scenario/extend_wrong_target_second.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_wrong_target_second.yml -------------------------------------------------------------------------------- /scenario/extend_wrong_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/extend_wrong_type.yml -------------------------------------------------------------------------------- /scenario/fmtfunc_basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/fmtfunc_basic.yml -------------------------------------------------------------------------------- /scenario/fmtfunc_use_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/fmtfunc_use_interface.yml -------------------------------------------------------------------------------- /scenario/fmtfunc_use_interface2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/fmtfunc_use_interface2.yml -------------------------------------------------------------------------------- /scenario/generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/generic.yml -------------------------------------------------------------------------------- /scenario/generic_multiple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/generic_multiple.yml -------------------------------------------------------------------------------- /scenario/global_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/global_error.yml -------------------------------------------------------------------------------- /scenario/global_extend_pattern.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/global_extend_pattern.yml -------------------------------------------------------------------------------- /scenario/gomap_key_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_key_mismatch.yml -------------------------------------------------------------------------------- /scenario/gomap_nested_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_nested_struct.yml -------------------------------------------------------------------------------- /scenario/gomap_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_primitive.yml -------------------------------------------------------------------------------- /scenario/gomap_primitive_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_primitive_named.yml -------------------------------------------------------------------------------- /scenario/gomap_primitive_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_primitive_pointer.yml -------------------------------------------------------------------------------- /scenario/gomap_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_struct.yml -------------------------------------------------------------------------------- /scenario/gomap_value_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_value_mismatch.yml -------------------------------------------------------------------------------- /scenario/gomap_wrap_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/gomap_wrap_errors.yml -------------------------------------------------------------------------------- /scenario/ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore.yml -------------------------------------------------------------------------------- /scenario/ignore_missing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing.yml -------------------------------------------------------------------------------- /scenario/ignore_missing_global_internal_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing_global_internal_method.yml -------------------------------------------------------------------------------- /scenario/ignore_missing_map_extend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing_map_extend.yml -------------------------------------------------------------------------------- /scenario/ignore_missing_map_extend_default.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing_map_extend_default.yml -------------------------------------------------------------------------------- /scenario/ignore_missing_no_propergate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing_no_propergate.yml -------------------------------------------------------------------------------- /scenario/ignore_missing_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_missing_unexported.yml -------------------------------------------------------------------------------- /scenario/ignore_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_unexported.yml -------------------------------------------------------------------------------- /scenario/ignore_unexported_by_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_unexported_by_name.yml -------------------------------------------------------------------------------- /scenario/ignore_unexported_flag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_unexported_flag.yml -------------------------------------------------------------------------------- /scenario/ignore_unexported_no_popergate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_unexported_no_popergate.yml -------------------------------------------------------------------------------- /scenario/ignore_unexported_on_converter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/ignore_unexported_on_converter.yml -------------------------------------------------------------------------------- /scenario/interface_complex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/interface_complex.yml -------------------------------------------------------------------------------- /scenario/interface_embed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/interface_embed.yml -------------------------------------------------------------------------------- /scenario/interface_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/interface_empty.yml -------------------------------------------------------------------------------- /scenario/interface_in_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/interface_in_interface.yml -------------------------------------------------------------------------------- /scenario/interface_methods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/interface_methods.yml -------------------------------------------------------------------------------- /scenario/into_default_output_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_default_output_package.yml -------------------------------------------------------------------------------- /scenario/into_external_package_cwd_infer_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_external_package_cwd_infer_full.yml -------------------------------------------------------------------------------- /scenario/into_external_package_infer_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_external_package_infer_full.yml -------------------------------------------------------------------------------- /scenario/into_external_package_infer_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_external_package_infer_path.yml -------------------------------------------------------------------------------- /scenario/into_source_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_source_package.yml -------------------------------------------------------------------------------- /scenario/into_source_package_infer_full.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_source_package_infer_full.yml -------------------------------------------------------------------------------- /scenario/into_source_package_infer_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/into_source_package_infer_path.yml -------------------------------------------------------------------------------- /scenario/invalid_comment_const.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_comment_const.yml -------------------------------------------------------------------------------- /scenario/invalid_converter_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_converter_comment.yml -------------------------------------------------------------------------------- /scenario/invalid_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_interface.yml -------------------------------------------------------------------------------- /scenario/invalid_interface2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_interface2.yml -------------------------------------------------------------------------------- /scenario/invalid_marker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_marker.yml -------------------------------------------------------------------------------- /scenario/invalid_meta.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_meta.yml -------------------------------------------------------------------------------- /scenario/invalid_meta2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_meta2.yml -------------------------------------------------------------------------------- /scenario/invalid_meta_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_meta_empty.yml -------------------------------------------------------------------------------- /scenario/invalid_method_comment_param.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_method_comment_param.yml -------------------------------------------------------------------------------- /scenario/invalid_method_comment_param2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_method_comment_param2.yml -------------------------------------------------------------------------------- /scenario/invalid_method_comment_param_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_method_comment_param_empty.yml -------------------------------------------------------------------------------- /scenario/invalid_output_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_output_format.yml -------------------------------------------------------------------------------- /scenario/invalid_output_format2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_output_format2.yml -------------------------------------------------------------------------------- /scenario/invalid_signature_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_signature_source.yml -------------------------------------------------------------------------------- /scenario/invalid_signature_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/invalid_signature_target.yml -------------------------------------------------------------------------------- /scenario/map_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom.yml -------------------------------------------------------------------------------- /scenario/map_custom_any.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_any.yml -------------------------------------------------------------------------------- /scenario/map_custom_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_empty.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_too_many_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_too_many_params.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_with_no_value_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_with_no_value_return.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_with_non_func_ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_with_non_func_ref.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_with_ref_not_exist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_with_ref_not_exist.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_with_wrong_return_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_with_wrong_return_type.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_with_wrong_return_type2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_with_wrong_return_type2.yml -------------------------------------------------------------------------------- /scenario/map_custom_error_wrong_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_error_wrong_type.yml -------------------------------------------------------------------------------- /scenario/map_custom_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_compile_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_compile_error.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_empty_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_empty_package.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_pattern_wildcard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_pattern_wildcard.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_unexported.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_unexported_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_unexported_error.yml -------------------------------------------------------------------------------- /scenario/map_custom_external_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_external_with_error.yml -------------------------------------------------------------------------------- /scenario/map_custom_generic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_generic.yml -------------------------------------------------------------------------------- /scenario/map_custom_interface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_interface.yml -------------------------------------------------------------------------------- /scenario/map_custom_invalid_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_invalid_method.yml -------------------------------------------------------------------------------- /scenario/map_custom_missing_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_missing_context.yml -------------------------------------------------------------------------------- /scenario/map_custom_missing_error_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_missing_error_return.yml -------------------------------------------------------------------------------- /scenario/map_custom_self.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_self.yml -------------------------------------------------------------------------------- /scenario/map_custom_struct_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_struct_pointer.yml -------------------------------------------------------------------------------- /scenario/map_custom_typealias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_custom_typealias.yml -------------------------------------------------------------------------------- /scenario/map_identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity.yml -------------------------------------------------------------------------------- /scenario/map_identity_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_error.yml -------------------------------------------------------------------------------- /scenario/map_identity_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_pointer.yml -------------------------------------------------------------------------------- /scenario/map_identity_pointer2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_pointer2.yml -------------------------------------------------------------------------------- /scenario/map_identity_pointer_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_pointer_source.yml -------------------------------------------------------------------------------- /scenario/map_identity_pointer_source_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_pointer_source_error.yml -------------------------------------------------------------------------------- /scenario/map_identity_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/map_identity_with_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_with_custom.yml -------------------------------------------------------------------------------- /scenario/map_identity_wrong_source_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_identity_wrong_source_type.yml -------------------------------------------------------------------------------- /scenario/map_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_invalid.yml -------------------------------------------------------------------------------- /scenario/map_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested.yml -------------------------------------------------------------------------------- /scenario/map_nested_complex.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_complex.yml -------------------------------------------------------------------------------- /scenario/map_nested_inner_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_inner_pointer.yml -------------------------------------------------------------------------------- /scenario/map_nested_missing_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_missing_field.yml -------------------------------------------------------------------------------- /scenario/map_nested_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_pointer.yml -------------------------------------------------------------------------------- /scenario/map_nested_pointer_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_pointer_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/map_nested_structpointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_structpointer.yml -------------------------------------------------------------------------------- /scenario/map_nested_type_missmatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_type_missmatch.yml -------------------------------------------------------------------------------- /scenario/map_nested_with_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_with_custom.yml -------------------------------------------------------------------------------- /scenario/map_nested_with_custom_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_nested_with_custom_error.yml -------------------------------------------------------------------------------- /scenario/map_on_invalid_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_on_invalid_type.yml -------------------------------------------------------------------------------- /scenario/map_overlapping_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_overlapping_config.yml -------------------------------------------------------------------------------- /scenario/map_overlapping_config2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_overlapping_config2.yml -------------------------------------------------------------------------------- /scenario/map_overlapping_config3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_overlapping_config3.yml -------------------------------------------------------------------------------- /scenario/map_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_simple.yml -------------------------------------------------------------------------------- /scenario/map_struct_to_struct_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_struct_to_struct_pointer.yml -------------------------------------------------------------------------------- /scenario/map_target_path.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_target_path.yml -------------------------------------------------------------------------------- /scenario/map_too_many_params.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_too_many_params.yml -------------------------------------------------------------------------------- /scenario/map_unexported.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_unexported.yml -------------------------------------------------------------------------------- /scenario/map_unknown_target.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_unknown_target.yml -------------------------------------------------------------------------------- /scenario/map_with_custom_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/map_with_custom_error.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_explicit_ambiguous.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_explicit_ambiguous.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_global.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_global.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_global_flag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_global_flag.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_invalid_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_invalid_comment.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_no_propagate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_no_propagate.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/match_ignore_case_unresolved_ambiguity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/match_ignore_case_unresolved_ambiguity.yml -------------------------------------------------------------------------------- /scenario/meta_converter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/meta_converter.yml -------------------------------------------------------------------------------- /scenario/missing_error_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/missing_error_return.yml -------------------------------------------------------------------------------- /scenario/multiple_package_one_output.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/multiple_package_one_output.yml -------------------------------------------------------------------------------- /scenario/multiple_package_one_output_wildcard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/multiple_package_one_output_wildcard.yml -------------------------------------------------------------------------------- /scenario/name_invalid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/name_invalid.yml -------------------------------------------------------------------------------- /scenario/nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/nested.yml -------------------------------------------------------------------------------- /scenario/nested_alias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/nested_alias.yml -------------------------------------------------------------------------------- /scenario/nested_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/nested_pointer.yml -------------------------------------------------------------------------------- /scenario/nested_pointer2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/nested_pointer2.yml -------------------------------------------------------------------------------- /scenario/output_package_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/output_package_mismatch.yml -------------------------------------------------------------------------------- /scenario/output_raw.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/output_raw.yml -------------------------------------------------------------------------------- /scenario/package_name.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/package_name.yaml -------------------------------------------------------------------------------- /scenario/pattern_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/pattern_error.yml -------------------------------------------------------------------------------- /scenario/pointer_mismatch_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/pointer_mismatch_error.yml -------------------------------------------------------------------------------- /scenario/pointer_primitive_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/pointer_primitive_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/pointer_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/pointer_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/primitive.yml -------------------------------------------------------------------------------- /scenario/primitive_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/primitive_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/recursive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/recursive.yml -------------------------------------------------------------------------------- /scenario/recursive2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/recursive2.yml -------------------------------------------------------------------------------- /scenario/recursive3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/recursive3.yml -------------------------------------------------------------------------------- /scenario/recursive4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/recursive4.yml -------------------------------------------------------------------------------- /scenario/return_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/return_error.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_pointer_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_pointer_mismatch.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_pointer_mismatch2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_pointer_mismatch2.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_recursive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_recursive.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_recursive2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_recursive2.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_recursive3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_recursive3.yml -------------------------------------------------------------------------------- /scenario/setting_ignored_sub_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/setting_ignored_sub_method.yml -------------------------------------------------------------------------------- /scenario/signature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/signature.yml -------------------------------------------------------------------------------- /scenario/skipcopy_identity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/skipcopy_identity.yml -------------------------------------------------------------------------------- /scenario/skipcopy_identity_setting_inheritance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/skipcopy_identity_setting_inheritance.yml -------------------------------------------------------------------------------- /scenario/skipcopy_inner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/skipcopy_inner.yml -------------------------------------------------------------------------------- /scenario/skipcopy_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/skipcopy_method.yml -------------------------------------------------------------------------------- /scenario/slice_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_array.yml -------------------------------------------------------------------------------- /scenario/slice_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_named.yml -------------------------------------------------------------------------------- /scenario/slice_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_nested.yml -------------------------------------------------------------------------------- /scenario/slice_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_pointer.yml -------------------------------------------------------------------------------- /scenario/slice_pointer2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_pointer2.yml -------------------------------------------------------------------------------- /scenario/slice_pointer3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_pointer3.yml -------------------------------------------------------------------------------- /scenario/slice_pointer4.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_pointer4.yml -------------------------------------------------------------------------------- /scenario/slice_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_primitive.yml -------------------------------------------------------------------------------- /scenario/slice_primitive_global_wrap_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_primitive_global_wrap_errors.yml -------------------------------------------------------------------------------- /scenario/slice_primitive_local_wrap_errors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_primitive_local_wrap_errors.yml -------------------------------------------------------------------------------- /scenario/slice_primitive_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_primitive_pointer.yml -------------------------------------------------------------------------------- /scenario/slice_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_struct.yml -------------------------------------------------------------------------------- /scenario/slice_struct_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_struct_pointer.yml -------------------------------------------------------------------------------- /scenario/slice_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/slice_value_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/slice_value_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/source_ignore_unexported_fields.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/source_ignore_unexported_fields.yml -------------------------------------------------------------------------------- /scenario/struct_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_comment.yml -------------------------------------------------------------------------------- /scenario/struct_empty.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_empty.yml -------------------------------------------------------------------------------- /scenario/struct_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method.yml -------------------------------------------------------------------------------- /scenario/struct_method_fail_missing_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_fail_missing_context.yml -------------------------------------------------------------------------------- /scenario/struct_method_fail_missing_error_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_fail_missing_error_return.yml -------------------------------------------------------------------------------- /scenario/struct_method_fail_nested_mismatch_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_fail_nested_mismatch_custom.yml -------------------------------------------------------------------------------- /scenario/struct_method_fail_no_return.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_fail_no_return.yml -------------------------------------------------------------------------------- /scenario/struct_method_fail_return_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_fail_return_mismatch.yml -------------------------------------------------------------------------------- /scenario/struct_method_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_nested.yml -------------------------------------------------------------------------------- /scenario/struct_method_nested_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_nested_with_error.yml -------------------------------------------------------------------------------- /scenario/struct_method_with_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_method_with_error.yml -------------------------------------------------------------------------------- /scenario/struct_missing_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_missing_field.yml -------------------------------------------------------------------------------- /scenario/struct_missing_mapped_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_missing_mapped_field.yml -------------------------------------------------------------------------------- /scenario/struct_missing_mapped_nested_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_missing_mapped_nested_field.yml -------------------------------------------------------------------------------- /scenario/struct_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_pointer.yml -------------------------------------------------------------------------------- /scenario/struct_pointer_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_pointer_ignore.yml -------------------------------------------------------------------------------- /scenario/struct_pointer_map.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_pointer_map.yml -------------------------------------------------------------------------------- /scenario/struct_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_primitive.yml -------------------------------------------------------------------------------- /scenario/struct_primitive_named.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_primitive_named.yml -------------------------------------------------------------------------------- /scenario/struct_primitive_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_primitive_pointer.yml -------------------------------------------------------------------------------- /scenario/struct_slice_array.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_slice_array.yml -------------------------------------------------------------------------------- /scenario/struct_unexported_same_package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unexported_same_package.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_embedded.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_embedded.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_external.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_external.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_nested.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_pointer.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_slice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_slice.yml -------------------------------------------------------------------------------- /scenario/struct_unnamed_slice_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/struct_unnamed_slice_nested.yml -------------------------------------------------------------------------------- /scenario/syntax_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/syntax_error.yml -------------------------------------------------------------------------------- /scenario/type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/type_mismatch.yml -------------------------------------------------------------------------------- /scenario/type_mismatch_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/type_mismatch_nested.yml -------------------------------------------------------------------------------- /scenario/type_mismatch_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/type_mismatch_pointer.yml -------------------------------------------------------------------------------- /scenario/unexported_converter_method.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/unexported_converter_method.yml -------------------------------------------------------------------------------- /scenario/unexported_converter_method_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/unexported_converter_method_error.yml -------------------------------------------------------------------------------- /scenario/unexported_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/unexported_error.yml -------------------------------------------------------------------------------- /scenario/universe_type.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/universe_type.yml -------------------------------------------------------------------------------- /scenario/universe_type_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/universe_type_error.yml -------------------------------------------------------------------------------- /scenario/update_struct_custom_call.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_custom_call.yml -------------------------------------------------------------------------------- /scenario/update_struct_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_error.yml -------------------------------------------------------------------------------- /scenario/update_struct_error_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_error_mismatch.yml -------------------------------------------------------------------------------- /scenario/update_struct_invalid_signature_multiple_results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_invalid_signature_multiple_results.yml -------------------------------------------------------------------------------- /scenario/update_struct_invalid_signature_result_non_error.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_invalid_signature_result_non_error.yml -------------------------------------------------------------------------------- /scenario/update_struct_invalid_signature_source.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_invalid_signature_source.yml -------------------------------------------------------------------------------- /scenario/update_struct_missing_param.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_missing_param.yml -------------------------------------------------------------------------------- /scenario/update_struct_nil_field.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_nil_field.yml -------------------------------------------------------------------------------- /scenario/update_struct_no_source_stract.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_no_source_stract.yml -------------------------------------------------------------------------------- /scenario/update_struct_no_target_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_no_target_pointer.yml -------------------------------------------------------------------------------- /scenario/update_struct_simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_simple.yml -------------------------------------------------------------------------------- /scenario/update_struct_source_pointer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_source_pointer.yml -------------------------------------------------------------------------------- /scenario/update_struct_zero_value_field_ignore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_zero_value_field_ignore.yml -------------------------------------------------------------------------------- /scenario/update_struct_zero_value_field_ignore_custom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_zero_value_field_ignore_custom.yml -------------------------------------------------------------------------------- /scenario/update_struct_zero_value_field_ignore_nillable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_zero_value_field_ignore_nillable.yml -------------------------------------------------------------------------------- /scenario/update_struct_zero_value_field_ignore_nillable_skipcopy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/update_struct_zero_value_field_ignore_nillable_skipcopy.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_gomap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_gomap.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_map_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_map_nested.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_map_nested2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_map_nested2.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_map_nested3.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_map_nested3.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_multi_ptr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_multi_ptr.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_primitive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_primitive.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_slice.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_slice.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_slice_inner.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_slice_inner.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_struct.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_struct.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_unnamed.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_unnamed.yml -------------------------------------------------------------------------------- /scenario/use_zerovalue_on_pointer_inconsistency_value_type_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/use_zerovalue_on_pointer_inconsistency_value_type_mismatch.yml -------------------------------------------------------------------------------- /scenario/var_basic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_basic.yml -------------------------------------------------------------------------------- /scenario/var_enum.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_enum.yml -------------------------------------------------------------------------------- /scenario/var_invalid_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_invalid_format.yml -------------------------------------------------------------------------------- /scenario/var_invalid_marker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_invalid_marker.yml -------------------------------------------------------------------------------- /scenario/var_invalid_setting.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_invalid_setting.yml -------------------------------------------------------------------------------- /scenario/var_invalid_sig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_invalid_sig.yml -------------------------------------------------------------------------------- /scenario/var_output_package_mismatch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_output_package_mismatch.yml -------------------------------------------------------------------------------- /scenario/var_prevent_clash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_prevent_clash.yml -------------------------------------------------------------------------------- /scenario/var_struct_comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_struct_comment.yml -------------------------------------------------------------------------------- /scenario/var_struct_method_fail_missing_context.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_struct_method_fail_missing_context.yml -------------------------------------------------------------------------------- /scenario/var_struct_name.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_struct_name.yml -------------------------------------------------------------------------------- /scenario/var_submethod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/var_submethod.yml -------------------------------------------------------------------------------- /scenario/wrap_errors_using_illegal1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/wrap_errors_using_illegal1.yml -------------------------------------------------------------------------------- /scenario/wrap_errors_using_illegal2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/wrap_errors_using_illegal2.yml -------------------------------------------------------------------------------- /scenario/wrap_errors_using_nested.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/scenario/wrap_errors_using_nested.yml -------------------------------------------------------------------------------- /xtype/access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/access.go -------------------------------------------------------------------------------- /xtype/enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/enum.go -------------------------------------------------------------------------------- /xtype/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/map.go -------------------------------------------------------------------------------- /xtype/tocode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/tocode.go -------------------------------------------------------------------------------- /xtype/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/type.go -------------------------------------------------------------------------------- /xtype/usage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/usage.go -------------------------------------------------------------------------------- /xtype/zero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmattheis/goverter/HEAD/xtype/zero.go --------------------------------------------------------------------------------