aas-core-codegen 0.0.16__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- aas_core_codegen/__init__.py +6 -0
- aas_core_codegen/__main__.py +8 -0
- aas_core_codegen/common.py +500 -0
- aas_core_codegen/cpp/__init__.py +1 -0
- aas_core_codegen/cpp/aas_common/__init__.py +6 -0
- aas_core_codegen/cpp/aas_common/_generate.py +713 -0
- aas_core_codegen/cpp/common.py +681 -0
- aas_core_codegen/cpp/constants/__init__.py +6 -0
- aas_core_codegen/cpp/constants/_generate.py +568 -0
- aas_core_codegen/cpp/description.py +654 -0
- aas_core_codegen/cpp/enhancing/__init__.py +4 -0
- aas_core_codegen/cpp/enhancing/_generate.py +993 -0
- aas_core_codegen/cpp/iteration/__init__.py +6 -0
- aas_core_codegen/cpp/iteration/_generate.py +2332 -0
- aas_core_codegen/cpp/jsonization/__init__.py +6 -0
- aas_core_codegen/cpp/jsonization/_generate.py +2619 -0
- aas_core_codegen/cpp/main.py +694 -0
- aas_core_codegen/cpp/naming.py +170 -0
- aas_core_codegen/cpp/optionaling.py +557 -0
- aas_core_codegen/cpp/pattern/__init__.py +6 -0
- aas_core_codegen/cpp/pattern/_generate.py +508 -0
- aas_core_codegen/cpp/revm/__init__.py +6 -0
- aas_core_codegen/cpp/revm/_generate.py +1149 -0
- aas_core_codegen/cpp/stringification/__init__.py +5 -0
- aas_core_codegen/cpp/stringification/_generate.py +955 -0
- aas_core_codegen/cpp/structure/__init__.py +7 -0
- aas_core_codegen/cpp/structure/_generate.py +1503 -0
- aas_core_codegen/cpp/transpilation.py +1383 -0
- aas_core_codegen/cpp/unrolling.py +159 -0
- aas_core_codegen/cpp/verification/__init__.py +6 -0
- aas_core_codegen/cpp/verification/_generate.py +3073 -0
- aas_core_codegen/cpp/visitation/__init__.py +6 -0
- aas_core_codegen/cpp/visitation/_generate.py +521 -0
- aas_core_codegen/cpp/wstringification/__init__.py +5 -0
- aas_core_codegen/cpp/wstringification/_generate.py +586 -0
- aas_core_codegen/cpp/xmlization/__init__.py +6 -0
- aas_core_codegen/cpp/xmlization/_generate.py +5373 -0
- aas_core_codegen/cpp/yielding.py +201 -0
- aas_core_codegen/csharp/__init__.py +1 -0
- aas_core_codegen/csharp/common.py +224 -0
- aas_core_codegen/csharp/constants/__init__.py +5 -0
- aas_core_codegen/csharp/constants/_generate.py +409 -0
- aas_core_codegen/csharp/copying/__init__.py +4 -0
- aas_core_codegen/csharp/copying/_generate.py +498 -0
- aas_core_codegen/csharp/description.py +1103 -0
- aas_core_codegen/csharp/enhancing/__init__.py +4 -0
- aas_core_codegen/csharp/enhancing/_generate.py +667 -0
- aas_core_codegen/csharp/jsonization/__init__.py +4 -0
- aas_core_codegen/csharp/jsonization/_generate.py +1630 -0
- aas_core_codegen/csharp/main.py +421 -0
- aas_core_codegen/csharp/naming.py +157 -0
- aas_core_codegen/csharp/reporting/__init__.py +4 -0
- aas_core_codegen/csharp/reporting/_generate.py +266 -0
- aas_core_codegen/csharp/stringification/__init__.py +4 -0
- aas_core_codegen/csharp/stringification/_generate.py +243 -0
- aas_core_codegen/csharp/structure/__init__.py +6 -0
- aas_core_codegen/csharp/structure/_generate.py +1341 -0
- aas_core_codegen/csharp/transpilation.py +990 -0
- aas_core_codegen/csharp/unrolling.py +211 -0
- aas_core_codegen/csharp/verification/__init__.py +6 -0
- aas_core_codegen/csharp/verification/_generate.py +1457 -0
- aas_core_codegen/csharp/visitation/__init__.py +5 -0
- aas_core_codegen/csharp/visitation/_generate.py +579 -0
- aas_core_codegen/csharp/xmlization/__init__.py +4 -0
- aas_core_codegen/csharp/xmlization/_generate.py +1980 -0
- aas_core_codegen/golang/__init__.py +1 -0
- aas_core_codegen/golang/aas_common/__init__.py +4 -0
- aas_core_codegen/golang/aas_common/_generate.py +152 -0
- aas_core_codegen/golang/common.py +303 -0
- aas_core_codegen/golang/constants/__init__.py +5 -0
- aas_core_codegen/golang/constants/_generate.py +339 -0
- aas_core_codegen/golang/description.py +501 -0
- aas_core_codegen/golang/enhancing/__init__.py +4 -0
- aas_core_codegen/golang/enhancing/_generate.py +527 -0
- aas_core_codegen/golang/jsonization/__init__.py +4 -0
- aas_core_codegen/golang/jsonization/_generate.py +1740 -0
- aas_core_codegen/golang/main.py +368 -0
- aas_core_codegen/golang/naming.py +412 -0
- aas_core_codegen/golang/pointering.py +631 -0
- aas_core_codegen/golang/reporting/__init__.py +4 -0
- aas_core_codegen/golang/reporting/_generate.py +218 -0
- aas_core_codegen/golang/stringification/__init__.py +4 -0
- aas_core_codegen/golang/stringification/_generate.py +394 -0
- aas_core_codegen/golang/structure/__init__.py +6 -0
- aas_core_codegen/golang/structure/_generate.py +1493 -0
- aas_core_codegen/golang/transpilation.py +1191 -0
- aas_core_codegen/golang/unrolling.py +159 -0
- aas_core_codegen/golang/verification/__init__.py +6 -0
- aas_core_codegen/golang/verification/_generate.py +1513 -0
- aas_core_codegen/golang/xmlization/__init__.py +4 -0
- aas_core_codegen/golang/xmlization/_generate.py +2507 -0
- aas_core_codegen/infer_for_schema/__init__.py +21 -0
- aas_core_codegen/infer_for_schema/_inline.py +693 -0
- aas_core_codegen/infer_for_schema/_len.py +527 -0
- aas_core_codegen/infer_for_schema/_pattern.py +311 -0
- aas_core_codegen/infer_for_schema/_set.py +394 -0
- aas_core_codegen/infer_for_schema/_stringify.py +201 -0
- aas_core_codegen/infer_for_schema/_types.py +135 -0
- aas_core_codegen/infer_for_schema/match.py +122 -0
- aas_core_codegen/intermediate/__init__.py +78 -0
- aas_core_codegen/intermediate/_hierarchy.py +397 -0
- aas_core_codegen/intermediate/_stringify.py +989 -0
- aas_core_codegen/intermediate/_translate.py +5128 -0
- aas_core_codegen/intermediate/_types.py +2901 -0
- aas_core_codegen/intermediate/construction.py +750 -0
- aas_core_codegen/intermediate/doc.py +344 -0
- aas_core_codegen/intermediate/pattern_verification.py +428 -0
- aas_core_codegen/intermediate/revm.py +985 -0
- aas_core_codegen/intermediate/type_inference.py +2266 -0
- aas_core_codegen/java/__init__.py +1 -0
- aas_core_codegen/java/common.py +197 -0
- aas_core_codegen/java/constants/__init__.py +5 -0
- aas_core_codegen/java/constants/_generate.py +334 -0
- aas_core_codegen/java/copying/__init__.py +4 -0
- aas_core_codegen/java/copying/_generate.py +502 -0
- aas_core_codegen/java/description.py +774 -0
- aas_core_codegen/java/enhancing/__init__.py +4 -0
- aas_core_codegen/java/enhancing/_generate.py +820 -0
- aas_core_codegen/java/generation/__init__.py +5 -0
- aas_core_codegen/java/generation/_generate.py +285 -0
- aas_core_codegen/java/jsonization/__init__.py +4 -0
- aas_core_codegen/java/jsonization/_generate.py +1472 -0
- aas_core_codegen/java/main.py +438 -0
- aas_core_codegen/java/naming.py +187 -0
- aas_core_codegen/java/optional.py +514 -0
- aas_core_codegen/java/reporting/__init__.py +4 -0
- aas_core_codegen/java/reporting/_generate.py +248 -0
- aas_core_codegen/java/stringification/__init__.py +4 -0
- aas_core_codegen/java/stringification/_generate.py +212 -0
- aas_core_codegen/java/structure/__init__.py +6 -0
- aas_core_codegen/java/structure/_generate.py +1767 -0
- aas_core_codegen/java/transpilation.py +1111 -0
- aas_core_codegen/java/verification/__init__.py +6 -0
- aas_core_codegen/java/verification/_generate.py +1536 -0
- aas_core_codegen/java/visitation/__init__.py +5 -0
- aas_core_codegen/java/visitation/_generate.py +689 -0
- aas_core_codegen/java/xmlization/__init__.py +4 -0
- aas_core_codegen/java/xmlization/_generate.py +2274 -0
- aas_core_codegen/jsonld/__init__.py +1 -0
- aas_core_codegen/jsonld/main.py +455 -0
- aas_core_codegen/jsonschema/__init__.py +1 -0
- aas_core_codegen/jsonschema/main.py +982 -0
- aas_core_codegen/main.py +245 -0
- aas_core_codegen/naming.py +133 -0
- aas_core_codegen/opcua/__init__.py +1 -0
- aas_core_codegen/opcua/main.py +1525 -0
- aas_core_codegen/opcua/naming.py +126 -0
- aas_core_codegen/parse/__init__.py +46 -0
- aas_core_codegen/parse/_rules.py +796 -0
- aas_core_codegen/parse/_stringify.py +532 -0
- aas_core_codegen/parse/_translate.py +3940 -0
- aas_core_codegen/parse/_types.py +973 -0
- aas_core_codegen/parse/retree/__init__.py +46 -0
- aas_core_codegen/parse/retree/_fix.py +434 -0
- aas_core_codegen/parse/retree/_parse.py +1143 -0
- aas_core_codegen/parse/retree/_render.py +298 -0
- aas_core_codegen/parse/retree/_stringify.py +199 -0
- aas_core_codegen/parse/retree/_types.py +362 -0
- aas_core_codegen/parse/retree/_visitor.py +70 -0
- aas_core_codegen/parse/tree.py +1303 -0
- aas_core_codegen/protobuf/__init__.py +1 -0
- aas_core_codegen/protobuf/common.py +225 -0
- aas_core_codegen/protobuf/description.py +1102 -0
- aas_core_codegen/protobuf/main.py +115 -0
- aas_core_codegen/protobuf/naming.py +143 -0
- aas_core_codegen/protobuf/structure/__init__.py +6 -0
- aas_core_codegen/protobuf/structure/_generate.py +502 -0
- aas_core_codegen/py.typed +1 -0
- aas_core_codegen/python/__init__.py +1 -0
- aas_core_codegen/python/aas_common/__init__.py +4 -0
- aas_core_codegen/python/aas_common/_generate.py +63 -0
- aas_core_codegen/python/common.py +406 -0
- aas_core_codegen/python/constants/__init__.py +5 -0
- aas_core_codegen/python/constants/_generate.py +377 -0
- aas_core_codegen/python/description.py +508 -0
- aas_core_codegen/python/jsonization/__init__.py +4 -0
- aas_core_codegen/python/jsonization/_generate.py +1391 -0
- aas_core_codegen/python/main.py +323 -0
- aas_core_codegen/python/naming.py +255 -0
- aas_core_codegen/python/stringification/__init__.py +4 -0
- aas_core_codegen/python/stringification/_generate.py +129 -0
- aas_core_codegen/python/structure/__init__.py +6 -0
- aas_core_codegen/python/structure/_generate.py +1801 -0
- aas_core_codegen/python/transpilation.py +958 -0
- aas_core_codegen/python/unrolling.py +156 -0
- aas_core_codegen/python/verification/__init__.py +6 -0
- aas_core_codegen/python/verification/_generate.py +1471 -0
- aas_core_codegen/python/xmlization/__init__.py +4 -0
- aas_core_codegen/python/xmlization/_generate.py +3003 -0
- aas_core_codegen/python_protobuf/__init__.py +1 -0
- aas_core_codegen/python_protobuf/main.py +1424 -0
- aas_core_codegen/python_protobuf/naming.py +85 -0
- aas_core_codegen/rdf_shacl/__init__.py +1 -0
- aas_core_codegen/rdf_shacl/_description.py +351 -0
- aas_core_codegen/rdf_shacl/common.py +206 -0
- aas_core_codegen/rdf_shacl/main.py +114 -0
- aas_core_codegen/rdf_shacl/naming.py +145 -0
- aas_core_codegen/rdf_shacl/rdf.py +435 -0
- aas_core_codegen/rdf_shacl/shacl.py +453 -0
- aas_core_codegen/run.py +124 -0
- aas_core_codegen/smoke/__init__.py +1 -0
- aas_core_codegen/smoke/main.py +219 -0
- aas_core_codegen/specific_implementations.py +72 -0
- aas_core_codegen/stringify.py +333 -0
- aas_core_codegen/typescript/__init__.py +1 -0
- aas_core_codegen/typescript/aas_common/__init__.py +4 -0
- aas_core_codegen/typescript/aas_common/_generate.py +472 -0
- aas_core_codegen/typescript/common.py +340 -0
- aas_core_codegen/typescript/constants/__init__.py +5 -0
- aas_core_codegen/typescript/constants/_generate.py +347 -0
- aas_core_codegen/typescript/description.py +530 -0
- aas_core_codegen/typescript/jsonization/__init__.py +4 -0
- aas_core_codegen/typescript/jsonization/_generate.py +1510 -0
- aas_core_codegen/typescript/main.py +258 -0
- aas_core_codegen/typescript/naming.py +189 -0
- aas_core_codegen/typescript/stringification/__init__.py +4 -0
- aas_core_codegen/typescript/stringification/_generate.py +367 -0
- aas_core_codegen/typescript/structure/__init__.py +6 -0
- aas_core_codegen/typescript/structure/_generate.py +2500 -0
- aas_core_codegen/typescript/transpilation.py +1051 -0
- aas_core_codegen/typescript/unrolling.py +159 -0
- aas_core_codegen/typescript/verification/__init__.py +6 -0
- aas_core_codegen/typescript/verification/_generate.py +1578 -0
- aas_core_codegen/xsd/__init__.py +1 -0
- aas_core_codegen/xsd/main.py +1187 -0
- aas_core_codegen/xsd/naming.py +83 -0
- aas_core_codegen/yielding/__init__.py +1 -0
- aas_core_codegen/yielding/flow.py +139 -0
- aas_core_codegen/yielding/linear.py +754 -0
- aas_core_codegen-0.0.16.dist-info/METADATA +211 -0
- aas_core_codegen-0.0.16.dist-info/RECORD +604 -0
- aas_core_codegen-0.0.16.dist-info/WHEEL +5 -0
- aas_core_codegen-0.0.16.dist-info/entry_points.txt +3 -0
- aas_core_codegen-0.0.16.dist-info/licenses/AUTHORS +9 -0
- aas_core_codegen-0.0.16.dist-info/licenses/LICENSE +23 -0
- aas_core_codegen-0.0.16.dist-info/top_level.txt +2 -0
- dev/continuous_integration/__init__.py +1 -0
- dev/continuous_integration/check_help_in_readme.py +208 -0
- dev/continuous_integration/check_init_and_pyproject_consistent.py +154 -0
- dev/continuous_integration/precommit.py +400 -0
- dev/dev_scripts/__init__.py +1 -0
- dev/dev_scripts/compare_rendered_regexes_against_source_py.py +42 -0
- dev/dev_scripts/copy_to_aas_core3_cpp.py +100 -0
- dev/dev_scripts/copy_to_aas_core3_java.py +90 -0
- dev/dev_scripts/download_latest_aas_core_meta_v3.py +114 -0
- dev/dev_scripts/draw_bipartite_graph_based_on_lines.py +37 -0
- dev/dev_scripts/run_tests_with_rerecord.py +69 -0
- dev/dev_scripts/update_to_aas_core_meta.py +174 -0
- dev/integration_tests/input/jsonschema/boilerplate/main.py +55 -0
- dev/integration_tests/input/meta_model.py +38 -0
- dev/integration_tests/input/python/boilerplate/main.py +153 -0
- dev/integration_tests/main.py +258 -0
- dev/test_data/csharp/test_structure/concrete_class_with_descendants/meta_model.py +15 -0
- dev/test_data/csharp/test_structure/constructor_without_arguments/all_properties_optional/meta_model.py +9 -0
- dev/test_data/csharp/test_structure/constructor_without_arguments/no_properties/meta_model.py +6 -0
- dev/test_data/csharp/test_verification/builtin_functions/len/on_list/meta_model.py +20 -0
- dev/test_data/csharp/test_verification/builtin_functions/len/on_str/meta_model.py +16 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/as_prefix/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/as_suffix/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_group_with_quantifier/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_the_middle/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_union/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/single_utf32_literal/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/with_quantifier_within_group/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/with_quantifier_without_group/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/at_the_beginning/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/at_the_end/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/in_the_middle/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/multiple/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/single/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/single_with_quantifier/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/mixed_with_non_utf32/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/more_than_two_high_surrogates/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/multiple_utf32_ranges/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/multiple_utf32_ranges_mixed_with_non_utf32/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/same_high_surrogate/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/same_high_surrogate_with_quantifier/meta_model.py +8 -0
- dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/two_high_surrogates/meta_model.py +8 -0
- dev/test_data/intermediate/expected/class/empty/meta_model.py +6 -0
- dev/test_data/intermediate/expected/class/implementation_specific_method/meta_model.py +8 -0
- dev/test_data/intermediate/expected/class/inheritance/meta_model.py +41 -0
- dev/test_data/intermediate/expected/class/methods_with_contracts/meta_model.py +15 -0
- dev/test_data/intermediate/expected/class/only_method_no_property/meta_model.py +7 -0
- dev/test_data/intermediate/expected/class/only_property_no_method/meta_model.py +9 -0
- dev/test_data/intermediate/expected/constant/constant_set/of_enum/meta_model.py +12 -0
- dev/test_data/intermediate/expected/constant/constant_set/of_str/meta_model.py +4 -0
- dev/test_data/intermediate/expected/constant/constant_set/with_description/meta_model.py +6 -0
- dev/test_data/intermediate/expected/constant/constant_set/with_superset_of/meta_model.py +14 -0
- dev/test_data/intermediate/expected/constant/constant_str/only_value/meta_model.py +7 -0
- dev/test_data/intermediate/expected/constant/constant_str/with_description/meta_model.py +5 -0
- dev/test_data/intermediate/expected/documentation/docstring_with_special_characters_in_literal/meta_model.py +20 -0
- dev/test_data/intermediate/expected/documentation/docstring_with_special_characters_outside_literal/meta_model.py +20 -0
- dev/test_data/intermediate/expected/empty/meta_model.py +2 -0
- dev/test_data/intermediate/expected/enumeration/meta_model.py +9 -0
- dev/test_data/intermediate/expected/interface/basic/meta_model.py +14 -0
- dev/test_data/intermediate/expected/interface/empty/meta_model.py +7 -0
- dev/test_data/intermediate/expected/interface/inheritance/meta_model.py +27 -0
- dev/test_data/intermediate/expected/interface/method_signature/meta_model.py +10 -0
- dev/test_data/intermediate/expected/interface/only_constructor/meta_model.py +11 -0
- dev/test_data/intermediate/expected/method/non_mutating/implementation_specific/meta_model.py +12 -0
- dev/test_data/intermediate/expected/method/non_mutating/understood/meta_model.py +11 -0
- dev/test_data/intermediate/expected/type_annotation/atomic/meta_model.py +9 -0
- dev/test_data/intermediate/expected/type_annotation/subscripted/class/meta_model.py +13 -0
- dev/test_data/intermediate/expected/type_annotation/subscripted/primitive/meta_model.py +9 -0
- dev/test_data/intermediate/unexpected/constant_set/of_enum/enumeration_literals_in_subset_outside_of_superset/meta_model.py +20 -0
- dev/test_data/intermediate/unexpected/constant_set/of_enum/invalid_literal/meta_model.py +11 -0
- dev/test_data/intermediate/unexpected/constant_set/of_enum/mismatch_between_enumeration_and_literal/meta_model.py +30 -0
- dev/test_data/intermediate/unexpected/constant_set/of_enum/mismatch_in_enumerations_between_subset_and_superset/meta_model.py +21 -0
- dev/test_data/intermediate/unexpected/constant_set/of_str/literals_in_subset_outside_of_superset/meta_model.py +18 -0
- dev/test_data/intermediate/unexpected/constant_set/of_str/mismatch_between_type_annotation_and_literals/meta_model.py +10 -0
- dev/test_data/intermediate/unexpected/constant_set/of_str/superset_and_subset_mismatch_in_type/meta_model.py +12 -0
- dev/test_data/intermediate/unexpected/constraints/dangling_constraintref/meta_model.py +18 -0
- dev/test_data/intermediate/unexpected/constraints/duplicate_constraints/meta_model.py +20 -0
- dev/test_data/intermediate/unexpected/documentation/unexpected_documentation_elements/meta_model.py +34 -0
- dev/test_data/intermediate/unexpected/invariant/class_invariant_uses_re/meta_model.py +10 -0
- dev/test_data/intermediate/unexpected/invariant/invariant_of_constrained_primitive_uses_re/meta_model.py +7 -0
- dev/test_data/intermediate/unexpected/invariant/unexpected_argument_count_to_len/meta_model.py +20 -0
- dev/test_data/intermediate/unexpected/invariant/unhandled_built_in_function/meta_model.py +16 -0
- dev/test_data/intermediate/unexpected/method_definitions/non_constant_default/meta_model.py +7 -0
- dev/test_data/intermediate/unexpected/optional_constructor_arguments_wo_default/default_non_none/meta_model.py +16 -0
- dev/test_data/intermediate/unexpected/optional_constructor_arguments_wo_default/no_default/meta_model.py +16 -0
- dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/after_inheritance/meta_model.py +58 -0
- dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/type_missmatch/meta_model.py +9 -0
- dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/within_class/meta_model.py +22 -0
- dev/test_data/jsonschema/test_main/regression_when_len_constraints_on_inherited_property/meta_model.py +28 -0
- dev/test_data/opcua/test_main/abstract_and_concrete_classes/meta_model.py +37 -0
- dev/test_data/opcua/test_main/classes_with_invariants/meta_model.py +21 -0
- dev/test_data/opcua/test_main/concrete_class_with_descendant/meta_model.py +27 -0
- dev/test_data/opcua/test_main/concrete_class_with_enum/meta_model.py +21 -0
- dev/test_data/opcua/test_main/concrete_class_with_list_of_instances/meta_model.py +21 -0
- dev/test_data/opcua/test_main/concrete_class_with_primitive_attributes/meta_model.py +41 -0
- dev/test_data/opcua/test_main/concrete_class_with_string/meta_model.py +13 -0
- dev/test_data/opcua/test_main/constrained_primitive/meta_model.py +20 -0
- dev/test_data/opcua/test_main/multiple_inheritance/meta_model.py +25 -0
- dev/test_data/parse/expected/constant/constant_set/of_enum/meta_model.py +12 -0
- dev/test_data/parse/expected/constant/constant_set/of_str/meta_model.py +4 -0
- dev/test_data/parse/expected/constant/constant_set/with_description/meta_model.py +6 -0
- dev/test_data/parse/expected/constant/constant_set/with_superset_of/meta_model.py +14 -0
- dev/test_data/parse/expected/constant/constant_str/only_value/meta_model.py +7 -0
- dev/test_data/parse/expected/constant/constant_str/with_description/meta_model.py +5 -0
- dev/test_data/parse/expected/enum/ok/meta_model.py +15 -0
- dev/test_data/parse/expected/implementation_specific_class/properties_and_methods_in_implementation_specific_class/meta_model.py +17 -0
- dev/test_data/parse/expected/inheritance/basic/meta_model.py +11 -0
- dev/test_data/parse/expected/inheritance/diamond/meta_model.py +26 -0
- dev/test_data/parse/expected/inheritance/inheritance_from_concrete_class/meta_model.py +10 -0
- dev/test_data/parse/expected/invariants/in_relation/meta_model.py +16 -0
- dev/test_data/parse/expected/method/arguments/meta_model.py +7 -0
- dev/test_data/parse/expected/method/basic/meta_model.py +7 -0
- dev/test_data/parse/expected/method/contracts/condition_as_keyword_argument/meta_model.py +8 -0
- dev/test_data/parse/expected/method/contracts/condition_as_positional_argument/meta_model.py +8 -0
- dev/test_data/parse/expected/method/contracts/description_as_keyword_argument/meta_model.py +8 -0
- dev/test_data/parse/expected/method/contracts/description_as_positional_argument/meta_model.py +8 -0
- dev/test_data/parse/expected/method/contracts/multiple_contracts_in_order/meta_model.py +17 -0
- dev/test_data/parse/expected/method/contracts/postcondition/basic/meta_model.py +10 -0
- dev/test_data/parse/expected/method/contracts/postcondition/snapshot/with_keyword_arguments/meta_model.py +9 -0
- dev/test_data/parse/expected/method/contracts/postcondition/snapshot/with_positional_arguments/meta_model.py +9 -0
- dev/test_data/parse/expected/method/default/meta_model.py +9 -0
- dev/test_data/parse/expected/method/description/meta_model.py +8 -0
- dev/test_data/parse/expected/method/is_implementation_specific/meta_model.py +8 -0
- dev/test_data/parse/expected/method/non_mutating/meta_model.py +11 -0
- dev/test_data/parse/expected/method/returns_none/meta_model.py +7 -0
- dev/test_data/parse/expected/method/returns_something/meta_model.py +7 -0
- dev/test_data/parse/expected/single_class/description/meta_model.py +12 -0
- dev/test_data/parse/expected/single_class/empty/meta_model.py +6 -0
- dev/test_data/parse/expected/single_class/property/description/meta_model.py +14 -0
- dev/test_data/parse/expected/single_class/property/mandatory/meta_model.py +6 -0
- dev/test_data/parse/expected/single_class/property/optional/meta_model.py +6 -0
- dev/test_data/parse/expected/single_class/property/recursion_to_entity/meta_model.py +6 -0
- dev/test_data/parse/unexpected/class_decorators/non_name_decorator/meta_model.py +7 -0
- dev/test_data/parse/unexpected/class_decorators/unknown_decorator/meta_model.py +7 -0
- dev/test_data/parse/unexpected/class_definitions/is_abstract_and_implementation_specific/meta_model.py +8 -0
- dev/test_data/parse/unexpected/class_definitions/unexpected_docstring_before_a_method/meta_model.py +11 -0
- dev/test_data/parse/unexpected/class_definitions/unexpected_docstring_for_a_pass/meta_model.py +9 -0
- dev/test_data/parse/unexpected/class_definitions/unexpected_double_description_for_a_property/meta_model.py +10 -0
- dev/test_data/parse/unexpected/class_inheritances/inheriting_from_implementation_specific_parent/meta_model.py +20 -0
- dev/test_data/parse/unexpected/class_inheritances/non_name_super_class/meta_model.py +6 -0
- dev/test_data/parse/unexpected/enum/expression_as_assignment_value/meta_model.py +6 -0
- dev/test_data/parse/unexpected/enum/non_assignment/meta_model.py +8 -0
- dev/test_data/parse/unexpected/enum/non_string_literal/meta_model.py +6 -0
- dev/test_data/parse/unexpected/enum/unexpected_inheritance/meta_model.py +6 -0
- dev/test_data/parse/unexpected/method_contracts/contract/non_lambda_condition/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/contract/non_string_literal_description/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/contract/without_any_arguments/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/contract/without_condition/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/postcondition/OLD_in_postcondition_without_snapshot/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/postcondition/argument_missing_in_function/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/precondition/argument_missing_in_function/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/argument_missing_in_function/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/capture_not_a_lambda/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/invalid_name/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/name_not_a_string_literal/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/without_a_capture/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_contracts/snapshot/without_a_name/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_decorators/non_mutating/non_mutating_constructor/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_decorators/non_mutating/non_mutating_verification_function/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_decorators/non_name_decorator/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_decorators/unknown_call_decorator/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_decorators/unknown_name_decorator/meta_model.py +8 -0
- dev/test_data/parse/unexpected/method_definitions/argument_with_final/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/argument_without_a_type_annotation/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/default_for_self/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/dunder/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/init_with_return_type/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/with_keyword_only_arguments/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/with_positional_arguments/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/with_type_annotation_for_self/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/with_variable_arguments/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/with_variable_keyword_arguments/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/without_arguments/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/without_self/meta_model.py +7 -0
- dev/test_data/parse/unexpected/method_definitions/without_type_annotation_for_result/meta_model.py +7 -0
- dev/test_data/parse/unexpected/property_definitions/final_without_subscript/meta_model.py +6 -0
- dev/test_data/parse/unexpected/property_definitions/nested_final/meta_model.py +6 -0
- dev/test_data/parse/unexpected/property_definitions/non_simple/meta_model.py +6 -0
- dev/test_data/parse/unexpected/property_definitions/unexpected_assignment/meta_model.py +6 -0
- dev/test_data/parse/unexpected/property_definitions/unexpected_non_name_property/meta_model.py +6 -0
- dev/test_data/parse/unexpected/property_definitions/without_type_annotation/meta_model.py +6 -0
- dev/test_data/parse/unexpected/symbol_table/constant_set_with_a_non_set_subset/meta_model.py +6 -0
- dev/test_data/parse/unexpected/symbol_table/dangling_inheritance/meta_model.py +6 -0
- dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_a_property/meta_model.py +6 -0
- dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_an_argument/meta_model.py +7 -0
- dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_constant_set/meta_model.py +6 -0
- dev/test_data/parse/unexpected/symbol_table/dangling_subset_in_constant_set/meta_model.py +4 -0
- dev/test_data/parse/unexpected/symbol_table/inheritance_from_non_class/meta_model.py +10 -0
- dev/test_data/parse_retree/expected/character_set/common_escaping/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/complementing/double_caret/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/complementing/multiple_ranges/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/complementing/suffix_dash/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/escape_first_caret/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/literals_which_need_no_escaping_in_characters_set_but_need_escaping_outside/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/multiple_ranges/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/single_literal/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/single_range/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/unescaped_dash/only_dash/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/unescaped_dash/prefix_dash/source.py +1 -0
- dev/test_data/parse_retree/expected/character_set/unescaped_dash/suffix_dash/source.py +1 -0
- dev/test_data/parse_retree/expected/dot/source.py +1 -0
- dev/test_data/parse_retree/expected/empty/group/source.py +1 -0
- dev/test_data/parse_retree/expected/empty/group_in_a_group/source.py +1 -0
- dev/test_data/parse_retree/expected/empty/group_of_union_of_empty_concatenations/source.py +1 -0
- dev/test_data/parse_retree/expected/empty/regex/source.py +1 -0
- dev/test_data/parse_retree/expected/empty/union_of_empty_concatenations/source.py +1 -0
- dev/test_data/parse_retree/expected/escaped_literals/source.py +1 -0
- dev/test_data/parse_retree/expected/formatted_value/at_the_beginning/source.py +1 -0
- dev/test_data/parse_retree/expected/formatted_value/at_the_end/source.py +1 -0
- dev/test_data/parse_retree/expected/formatted_value/in_the_middle/source.py +1 -0
- dev/test_data/parse_retree/expected/formatted_value/single_formatted_value/source.py +1 -0
- dev/test_data/parse_retree/expected/literal/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/at_least_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/at_least_one/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/at_most_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/exactly_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/maybe/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/greedy/zero_or_more/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/at_least_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/at_least_one/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/at_most_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/exactly_3/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/maybe/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/non_greedy/zero_or_more/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/on_a_character_set/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/on_a_formatted_value/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/on_a_group/source.py +1 -0
- dev/test_data/parse_retree/expected/quantifier/on_a_literal/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/double_end_symbol/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/double_start_symbol/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/end_symbol_in_the_middle/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/only_start_symbol/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/only_stop_symbol/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/start_symbol_at_the_beginning/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/start_symbol_in_the_middle/source.py +1 -0
- dev/test_data/parse_retree/expected/start_and_stop_symbols/stop_symbol_at_the_end/source.py +1 -0
- dev/test_data/parse_retree/expected/union/of_character_sets/source.py +1 -0
- dev/test_data/parse_retree/expected/union/of_groups/source.py +1 -0
- dev/test_data/parse_retree/expected/union/of_string_literals/source.py +1 -0
- dev/test_data/parse_retree/expected/union/within_group/source.py +1 -0
- dev/test_data/parse_retree/expected/whitespace/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/Uxxxxxxxx_out_of_range/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/only_backslash/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_Uxxxxxxxx/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_uxxxx/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_x/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unexpected_escaping/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/digit/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_digit/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_whitespace/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_word/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/whitespace/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/word/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/Uxxxxxxxx_out_of_range/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/only_backslash/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_Uxxxxxxxx/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_uxxxx/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_x/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unexpected_escaping/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/digit/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_digit/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_whitespace/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_word/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/whitespace/source.py +1 -0
- dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/word/source.py +1 -0
- dev/test_data/parse_retree/unexpected/invalid_character_range/source.py +1 -0
- dev/test_data/parse_retree/unexpected/invalid_quantifier/at_least_x/source.py +1 -0
- dev/test_data/parse_retree/unexpected/invalid_quantifier/between_3_and_x/source.py +1 -0
- dev/test_data/parse_retree/unexpected/invalid_quantifier/exactly_x/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unhandled_group_directives/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/character_set/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/group/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/group_of_union_of_empty_concatenations/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/quantifier/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/quantifier_with_comma/source.py +1 -0
- dev/test_data/parse_retree/unexpected/unterminated/quantifier_with_number_and_comma/source.py +1 -0
- dev/test_data/proto/test_main/expected/abstract_and_concrete_classes/meta_model.py +37 -0
- dev/test_data/proto/test_main/expected/concrete_class_with_descendants/meta_model.py +30 -0
- dev/test_data/proto/test_main/expected/concrete_class_with_enum/meta_model.py +21 -0
- dev/test_data/proto/test_main/expected/concrete_class_with_list_of_instances/meta_model.py +21 -0
- dev/test_data/proto/test_main/expected/concrete_class_with_primitive_attributes/meta_model.py +41 -0
- dev/test_data/python_protobuf/test_main/abstract_and_concrete_classes/expected_output/pbization.py +532 -0
- dev/test_data/python_protobuf/test_main/abstract_and_concrete_classes/meta_model.py +37 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_descendant/expected_output/pbization.py +527 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_descendant/meta_model.py +27 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_enum/expected_output/pbization.py +290 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_enum/meta_model.py +21 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_list_of_instances/expected_output/pbization.py +328 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_list_of_instances/meta_model.py +23 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_primitive_attributes/expected_output/pbization.py +274 -0
- dev/test_data/python_protobuf/test_main/concrete_class_with_primitive_attributes/meta_model.py +41 -0
- dev/test_data/rdf_shacl/test_main/expected/regression_when_lang_string_class_is_missing/meta_model.py +29 -0
- dev/test_data/rdf_shacl/test_main/expected/regression_when_len_constraints_on_inherited_property/meta_model.py +27 -0
- dev/test_data/rdf_shacl/test_main/unexpected/regression_len_constraint_on_class_property/meta_model.py +61 -0
- dev/test_data/real_meta_models/aas_core_meta.v3.py +5721 -0
- dev/test_data/smoke/test_main/unexpected/infer_for_schema_error/meta_model.py +12 -0
- dev/test_data/smoke/test_main/unexpected/intermediate_error/meta_model.py +18 -0
- dev/test_data/smoke/test_main/unexpected/parse_error/meta_model.py +5 -0
- dev/test_data/smoke/test_main/unexpected/pattern_verification_unparsable_regex/direct_match/meta_model.py +8 -0
- dev/test_data/smoke/test_main/unexpected/type_error/meta_model.py +18 -0
- dev/tests/__init__.py +1 -0
- dev/tests/common.py +197 -0
- dev/tests/cpp/__init__.py +0 -0
- dev/tests/cpp/test_common.py +32 -0
- dev/tests/cpp/test_main.py +144 -0
- dev/tests/cpp/test_pattern.py +188 -0
- dev/tests/cpp/test_verification.py +189 -0
- dev/tests/cpp/test_yielding.py +225 -0
- dev/tests/csharp/__init__.py +0 -0
- dev/tests/csharp/live_test_main.py +109 -0
- dev/tests/csharp/test_common.py +28 -0
- dev/tests/csharp/test_description.py +684 -0
- dev/tests/csharp/test_main.py +129 -0
- dev/tests/csharp/test_structure.py +93 -0
- dev/tests/csharp/test_verification.py +82 -0
- dev/tests/description.py +29 -0
- dev/tests/golang/__init__.py +0 -0
- dev/tests/golang/test_common.py +78 -0
- dev/tests/golang/test_main.py +128 -0
- dev/tests/infer_for_schema/__init__.py +0 -0
- dev/tests/infer_for_schema/common.py +47 -0
- dev/tests/infer_for_schema/test_len_on_properties.py +955 -0
- dev/tests/infer_for_schema/test_len_on_self.py +580 -0
- dev/tests/infer_for_schema/test_patterns_on_properties.py +686 -0
- dev/tests/infer_for_schema/test_patterns_on_self.py +258 -0
- dev/tests/infer_for_schema/test_property_in_set_of_enumeration_literals.py +600 -0
- dev/tests/infer_for_schema/test_property_in_set_of_primitives.py +549 -0
- dev/tests/intermediate/__init__.py +0 -0
- dev/tests/intermediate/test_constructor.py +719 -0
- dev/tests/intermediate/test_hierarchy.py +221 -0
- dev/tests/intermediate/test_revm.py +134 -0
- dev/tests/intermediate/test_translate.py +337 -0
- dev/tests/intermediate/test_type_inference.py +333 -0
- dev/tests/intermediate/test_types.py +169 -0
- dev/tests/java/__init__.py +0 -0
- dev/tests/java/test_common.py +20 -0
- dev/tests/java/test_description.py +128 -0
- dev/tests/java/test_main.py +234 -0
- dev/tests/jsonld_context/test_main.py +79 -0
- dev/tests/opcua/__init__.py +3 -0
- dev/tests/opcua/test_main.py +110 -0
- dev/tests/our_jsonschema/__init__.py +3 -0
- dev/tests/our_jsonschema/test_main.py +232 -0
- dev/tests/parse/__init__.py +0 -0
- dev/tests/parse/test_parse.py +503 -0
- dev/tests/parse/test_retree.py +272 -0
- dev/tests/proto/__init__.py +0 -0
- dev/tests/proto/test_main.py +112 -0
- dev/tests/python/__init__.py +0 -0
- dev/tests/python/test_common.py +124 -0
- dev/tests/python/test_main.py +126 -0
- dev/tests/python/test_xml_playground.py +254 -0
- dev/tests/python_protobuf/__init__.py +0 -0
- dev/tests/python_protobuf/test_main.py +111 -0
- dev/tests/rdf_shacl/__init__.py +0 -0
- dev/tests/rdf_shacl/test_common.py +32 -0
- dev/tests/rdf_shacl/test_description.py +223 -0
- dev/tests/rdf_shacl/test_main.py +194 -0
- dev/tests/smoke/__init__.py +0 -0
- dev/tests/smoke/test_main.py +83 -0
- dev/tests/test_common.py +94 -0
- dev/tests/typescript/__init__.py +0 -0
- dev/tests/typescript/test_common.py +108 -0
- dev/tests/typescript/test_main.py +125 -0
- dev/tests/xsd/__init__.py +0 -0
- dev/tests/xsd/test_main.py +227 -0
- dev/tests/yielding/__init__.py +0 -0
- dev/tests/yielding/test_linear.py +558 -0
|
@@ -0,0 +1,604 @@
|
|
|
1
|
+
aas_core_codegen/__init__.py,sha256=qFrSlWVqB8x6P4kZVakj7zIpxPwvkTmCF_bBkobXcbA,227
|
|
2
|
+
aas_core_codegen/__main__.py,sha256=4uNIpl2DOe4vlXUeqzOokQJ6izr84AIHtNKrmxhK3dE,297
|
|
3
|
+
aas_core_codegen/common.py,sha256=kCLtNW39PUt_zY6pPd-BMxAAGXY9F3UUBR150xwsupk,15541
|
|
4
|
+
aas_core_codegen/main.py,sha256=Q-TDcVl04BXu0AbVfBot2CBiXjEPZ_vsUDOWgeNHIFs,7650
|
|
5
|
+
aas_core_codegen/naming.py,sha256=83NnkQvssu4Jg_xyaoQDqmlDfXt5NJP2iwu_dfC93X4,3772
|
|
6
|
+
aas_core_codegen/py.typed,sha256=R9g9B4w_w5Fwj8QedbqQCxOjQA-2zcN33EPQJX_NQ50,63
|
|
7
|
+
aas_core_codegen/run.py,sha256=ym6jFvSHWbYAu_OXm1_F_Sox1zghygafJByU9RKWJvg,4170
|
|
8
|
+
aas_core_codegen/specific_implementations.py,sha256=0M26SaYil1o_nrRj3YLV39cWy9qabx8lbuzRKr983d4,2283
|
|
9
|
+
aas_core_codegen/stringify.py,sha256=JHO9UvHTHRL_G61bOA9-mHUhIpCh1F99veAGX_ACk6E,11209
|
|
10
|
+
aas_core_codegen/cpp/__init__.py,sha256=80F-Wstn-DbP2aiOpKvXQ7M-czveBpF0JnazGpQmS1Q,62
|
|
11
|
+
aas_core_codegen/cpp/common.py,sha256=6gTUsB0UPRyPYRztR3JyNBYkJq4UR_ZnCnvNdOQ9P0U,20928
|
|
12
|
+
aas_core_codegen/cpp/description.py,sha256=mUtc1ZCvnBICamkLEzJwrvJbu3yqZTKchFPTCxc5kZQ,21856
|
|
13
|
+
aas_core_codegen/cpp/main.py,sha256=XfEWCNDaXFA0fMhq78Y5NwW6-xrb7OsJ8YmDfA5mGI4,21881
|
|
14
|
+
aas_core_codegen/cpp/naming.py,sha256=qesgNJ77NAtypY8cQBHInQ9TiF42IKgV0yaMx267Tyg,4752
|
|
15
|
+
aas_core_codegen/cpp/optionaling.py,sha256=7TYb00kYC1Wskfwzn-raMRs3EvPcp4BNxiT4pTbeK04,19376
|
|
16
|
+
aas_core_codegen/cpp/transpilation.py,sha256=iU-88xssTdGD1tlrZic-jLB9ToYowLqi5DfOG91t00s,48825
|
|
17
|
+
aas_core_codegen/cpp/unrolling.py,sha256=lxS2AOQ1yoRBkcJBLi-WoTAHoDBtpyVXF5kQq5WwZ7w,4962
|
|
18
|
+
aas_core_codegen/cpp/yielding.py,sha256=ZSNKXdbWMit0qrkzMn1Rlw8bsXWa9ifk8JJsQA6soGM,5987
|
|
19
|
+
aas_core_codegen/cpp/aas_common/__init__.py,sha256=NRLIf2SGb3pxSQ_UQjRXGPC6Mbj4_xCSIUexDGNS7AI,206
|
|
20
|
+
aas_core_codegen/cpp/aas_common/_generate.py,sha256=2zBxSMXDUCcEheF8YjwDMWaM4eTKtFktFo7sZvtZQAw,19041
|
|
21
|
+
aas_core_codegen/cpp/constants/__init__.py,sha256=Yqg8Mra7e-iWbxSzk4r5B-lTAQi235BPsGyIf8n_NVc,238
|
|
22
|
+
aas_core_codegen/cpp/constants/_generate.py,sha256=Cb73YmLbRcR72z_ODu0Ep0vkAdLzh2IY037FAGglym4,17194
|
|
23
|
+
aas_core_codegen/cpp/enhancing/__init__.py,sha256=wSDMqPi-BZuKYeKiAiR1oAVfKSrkcccK-dbCp6Jt6aA,151
|
|
24
|
+
aas_core_codegen/cpp/enhancing/_generate.py,sha256=Enf3xwb2w3bDPJmhqcx3i-ZtrMJZuP0Ga6EPCesZV2A,27402
|
|
25
|
+
aas_core_codegen/cpp/iteration/__init__.py,sha256=GL5siz1Bq_r1HHzMD8UXCzmrf8PrC0cyogPd6keikzA,219
|
|
26
|
+
aas_core_codegen/cpp/iteration/_generate.py,sha256=MoXSn0o_POWv9TOjLdHI6mMvLu2lMM9r0nAeE5eqF4o,67168
|
|
27
|
+
aas_core_codegen/cpp/jsonization/__init__.py,sha256=_nC3KC_SOj_TybUdWzDDRJ_SHbwMcQ153R29waX0wAE,237
|
|
28
|
+
aas_core_codegen/cpp/jsonization/_generate.py,sha256=oWUoJdqtY-P7Nh6ltyNM81v2h77fR4SC_xUrZWKRItI,71432
|
|
29
|
+
aas_core_codegen/cpp/pattern/__init__.py,sha256=YEBCv3ZhtX2wM_DsSJ-4AmzK5GETh9L1dwceZsnt-kg,241
|
|
30
|
+
aas_core_codegen/cpp/pattern/_generate.py,sha256=TLAOs08nJkvCXlNgFohZzVECZ6D6ycEeq9IsjAttvSo,15593
|
|
31
|
+
aas_core_codegen/cpp/revm/__init__.py,sha256=J1bAAg-cdWcRhyyK0sCPFQ93o9qZrJZtX67lJWGNn0Q,233
|
|
32
|
+
aas_core_codegen/cpp/revm/_generate.py,sha256=bN-GH1hGYY5kcu-UOsEcTOrptf42OOTBrXure4IF92g,29196
|
|
33
|
+
aas_core_codegen/cpp/stringification/__init__.py,sha256=v0n7jL4s17U2izwLsdBKyZOBC_ShrZuiT2kMy4HIm6k,233
|
|
34
|
+
aas_core_codegen/cpp/stringification/_generate.py,sha256=UdpvYY8eRgA6Mhx6sqFcbQQw48fNByHHio6Rx9HvV6o,24810
|
|
35
|
+
aas_core_codegen/cpp/structure/__init__.py,sha256=HIMz3nokGDJesstsS7Nnmhco3qNJoCAhw2xLrZO_XpQ,260
|
|
36
|
+
aas_core_codegen/cpp/structure/_generate.py,sha256=wCm_m7iR9Z1Qi2wuHpVInhuECb3z_W9vzRCG3OWR474,46801
|
|
37
|
+
aas_core_codegen/cpp/verification/__init__.py,sha256=y5ascv_4kjq4dRH-TQUoNX41hfJTHzYdBIH6wl0lYA8,214
|
|
38
|
+
aas_core_codegen/cpp/verification/_generate.py,sha256=xo_TD2pg4Ln6KZ8q6QNwjs13b0BIMjvqqvsgCJBaLeU,89458
|
|
39
|
+
aas_core_codegen/cpp/visitation/__init__.py,sha256=mc56M6Yhmn1ITZjGdjlZ_hBl1ENWZYlUztXAuDAdmx4,215
|
|
40
|
+
aas_core_codegen/cpp/visitation/_generate.py,sha256=5ZQ5PAStglQDsOvNWIUroCbFWxiQtzy-eBEUfWMN9fY,14809
|
|
41
|
+
aas_core_codegen/cpp/wstringification/__init__.py,sha256=TMCZ4M1LwVxWofQhr7CIsD-QQSJLRiBVnczaSg0TuMw,235
|
|
42
|
+
aas_core_codegen/cpp/wstringification/_generate.py,sha256=tE0QeTSar2aiP0MyB9Cn8eDKcejJKiLxGRQpW1gZNNU,14361
|
|
43
|
+
aas_core_codegen/cpp/xmlization/__init__.py,sha256=LJFgKhoOyP8pTLFM5cLSxs8hhZkiYn5XGT3_tJemxHg,227
|
|
44
|
+
aas_core_codegen/cpp/xmlization/_generate.py,sha256=9g6RRcinTBuGoj3S8X7UTCrEvk0NIVRmx9l5VejRY58,135695
|
|
45
|
+
aas_core_codegen/csharp/__init__.py,sha256=vjq33DzXmiENd4J_6JyTZ3YSpbrh21sbDTIsuFuSDIs,61
|
|
46
|
+
aas_core_codegen/csharp/common.py,sha256=0l-9d-HW3KZD2FKlzIsoG-Xiz7HqL3MXCXe_lqXp7Jc,6973
|
|
47
|
+
aas_core_codegen/csharp/description.py,sha256=4SlrG71buqI_qD2hhFqlKQ6i6bp1FN_fyMFqaykS1R8,36860
|
|
48
|
+
aas_core_codegen/csharp/main.py,sha256=AmNYD8C78F1nln0mpu3q0eaVhsvMLAHVhjEdGyzjdKE,12485
|
|
49
|
+
aas_core_codegen/csharp/naming.py,sha256=hzN-ecimwa4Hx3jwm_vI_YHPm3WuPpTQK4rd2T4wGf8,4544
|
|
50
|
+
aas_core_codegen/csharp/transpilation.py,sha256=HalWlFgNzCnApMyhla8Atfj8euiyc5vBzMz_5N5IV8o,33202
|
|
51
|
+
aas_core_codegen/csharp/unrolling.py,sha256=9xlBwtYwPW2fPdE3gT_E_0IZcQKO3P-pfhzVzD_noOA,6977
|
|
52
|
+
aas_core_codegen/csharp/constants/__init__.py,sha256=hSqOKocsMBjF51XTca83TBV3jeRNHJ_pePRc0zqatmI,170
|
|
53
|
+
aas_core_codegen/csharp/constants/_generate.py,sha256=O4jE-O2JIwHQCjAolQEqZxtSBwRDCyQeiqyqtH1yi54,11427
|
|
54
|
+
aas_core_codegen/csharp/copying/__init__.py,sha256=xIMfxoKNLkH9GlbSX_w_c-aC0DZdUUP30R_5ADMH4Xc,144
|
|
55
|
+
aas_core_codegen/csharp/copying/_generate.py,sha256=rhVFcnQCY3Q15Y6cHJw8V_nDSsmLF3_dMcAgEaaJ2go,16461
|
|
56
|
+
aas_core_codegen/csharp/enhancing/__init__.py,sha256=xx2Qeadx3daaRn2KxSxye8cgspdBNOYLLxmHj5o6v-k,139
|
|
57
|
+
aas_core_codegen/csharp/enhancing/_generate.py,sha256=QWH1P8fM4kH7S1sWGGX08spu8u1_u91mehIXkKdtKSA,18950
|
|
58
|
+
aas_core_codegen/csharp/jsonization/__init__.py,sha256=p-g1IKv7crnbv-phUEwL1NWCJw3zrXa7OLqJOgrHVw0,166
|
|
59
|
+
aas_core_codegen/csharp/jsonization/_generate.py,sha256=DOeupqS9eXw0MoucT45BPDFfeYsn7bofss4xDOz8EWw,48957
|
|
60
|
+
aas_core_codegen/csharp/reporting/__init__.py,sha256=l2ASkudfHi_Djg6QDN-YFaLo70lBrW18EL3prXXsglU,132
|
|
61
|
+
aas_core_codegen/csharp/reporting/_generate.py,sha256=eHIaKTXOwzQNI8fNB-Rw0L5Ydtp-EbXEO222DyEzzrc,6601
|
|
62
|
+
aas_core_codegen/csharp/stringification/__init__.py,sha256=Hzc-Nb_7AtWcbTRhpRwAZiS040HaGBELiI3TuKWtIS0,154
|
|
63
|
+
aas_core_codegen/csharp/stringification/_generate.py,sha256=DAh-dzOtniU_eaEve9I_HL4eQWrpt1qYODtwsxXZPBQ,6314
|
|
64
|
+
aas_core_codegen/csharp/structure/__init__.py,sha256=PR4vBC0L-1K-RTt2QJqICO9B_1h-bM52A69jQ4_u70w,169
|
|
65
|
+
aas_core_codegen/csharp/structure/_generate.py,sha256=d4BNcXplRTiOyYYD5L7cNBR2_JTbjKLprBG_hos_SX8,43152
|
|
66
|
+
aas_core_codegen/csharp/verification/__init__.py,sha256=oeF9mekadAEJzS7flegbc5tTzU3AJUpVx6MavtIb6g8,187
|
|
67
|
+
aas_core_codegen/csharp/verification/_generate.py,sha256=60mEl6uJ3RcMPtHmjz0_Vd8wjp0OO2TKxcgO8tJBbAU,47507
|
|
68
|
+
aas_core_codegen/csharp/visitation/__init__.py,sha256=A_1uylmnLfzV5v52IvTmJT9CcHWrZ_OqQcLKa3lrLTg,150
|
|
69
|
+
aas_core_codegen/csharp/visitation/_generate.py,sha256=my77b-sY1TKr2tu-gh1iW40L46Ns59BSveGOgb5L7nk,17287
|
|
70
|
+
aas_core_codegen/csharp/xmlization/__init__.py,sha256=AghuDh3w_6liYCrrzhTm1pYI2fLpYLjryZnNsoZkx6o,164
|
|
71
|
+
aas_core_codegen/csharp/xmlization/_generate.py,sha256=tSIc7-N-dS8sC38UX4GgPK6y78jUTau31m9DyY71bDk,57524
|
|
72
|
+
aas_core_codegen/golang/__init__.py,sha256=iQkhdy-nM6iksc9Yg9_lmVwBs-2BQGcH3gEPPCRwhE0,65
|
|
73
|
+
aas_core_codegen/golang/common.py,sha256=84ev8bO494PPan0zOdksanftWPq-YK6AIKQ_BAOyZ9Y,9009
|
|
74
|
+
aas_core_codegen/golang/description.py,sha256=P7DaMPUZz74Fkurw6zdWOgZ-mGQeGjzG3X9ViDkRWDA,17325
|
|
75
|
+
aas_core_codegen/golang/main.py,sha256=hLhKDIGOhjZb5LKetxY866wgLoOo19FNCowvCBAifw0,10987
|
|
76
|
+
aas_core_codegen/golang/naming.py,sha256=OhBh7eFA3XKL281-SrcTONBJa0f8TMIorDYqgTvckP8,11767
|
|
77
|
+
aas_core_codegen/golang/pointering.py,sha256=6KggmATORGOPbjhKJwpyblsUCVVEpPj6xbockfJTgYA,22102
|
|
78
|
+
aas_core_codegen/golang/transpilation.py,sha256=VBvRfAY0lV4BSYmo-Cemlx7-2meEVWua96wwiztgmrY,41208
|
|
79
|
+
aas_core_codegen/golang/unrolling.py,sha256=wRpEhPBEZubwhaMj2dR-vLfIZryFXp7vI7MsarJHJqs,4968
|
|
80
|
+
aas_core_codegen/golang/aas_common/__init__.py,sha256=-IQbEsuvVjA-bOQHBkmqxSLC6xe4nQGx5O1zW6NsfVg,137
|
|
81
|
+
aas_core_codegen/golang/aas_common/_generate.py,sha256=Wu4hUJlbzVy1FusywB_io7n9jhC3u-KhTcvvdZZz73g,3436
|
|
82
|
+
aas_core_codegen/golang/constants/__init__.py,sha256=s1CAFWZ6VrOm1Y0wBhriuwdOTWgHUZgrCbU5RE8EuWU,170
|
|
83
|
+
aas_core_codegen/golang/constants/_generate.py,sha256=wFQfpwGdrA8AwPuto6w5YU_As92fzSIUHzZ1nBuKmOE,10691
|
|
84
|
+
aas_core_codegen/golang/enhancing/__init__.py,sha256=DI5mhN4TN8iZvzSTbLoPwKvxw1FpwOncrrhzyOeiQu0,143
|
|
85
|
+
aas_core_codegen/golang/enhancing/_generate.py,sha256=WYtQdQnsALotZ5NoUfi8gMgeWLbdreSTuLvhUL9D9J8,14357
|
|
86
|
+
aas_core_codegen/golang/jsonization/__init__.py,sha256=NnpK81cHFIEmdruJyDCnXUEtXpKi4OMniUMS3aYx3iM,174
|
|
87
|
+
aas_core_codegen/golang/jsonization/_generate.py,sha256=u3Oa_WmJrlv0mcUlwpcgahSgrak4M1lMejYZNqHSIkg,47310
|
|
88
|
+
aas_core_codegen/golang/reporting/__init__.py,sha256=VkentPa56TwrcsipcdS6xx9SwROt6pPH3MhuVhEXEks,136
|
|
89
|
+
aas_core_codegen/golang/reporting/_generate.py,sha256=oifO2ndOjxmj1Sk1uC1S96kAjxRrHQU6NPrULnx054k,5100
|
|
90
|
+
aas_core_codegen/golang/stringification/__init__.py,sha256=vhdpMlm7Ld_czDGVsmmiv0kiTv0yqbrJ9IxocvGMD4Q,171
|
|
91
|
+
aas_core_codegen/golang/stringification/_generate.py,sha256=nTa_5wcmmn0f1COHJAKZaj48zYn_avu-X_f1uBXhpOo,10195
|
|
92
|
+
aas_core_codegen/golang/structure/__init__.py,sha256=klo8vN0l44OZjGP0M3nzO06gsi3I7ViwQ-OAaZ1F8Fc,196
|
|
93
|
+
aas_core_codegen/golang/structure/_generate.py,sha256=2KImf9KEVgkC00ocwKX3Zg7JBfgcqAs8ndJQ5rwxBwE,46878
|
|
94
|
+
aas_core_codegen/golang/verification/__init__.py,sha256=DEV_F9zuZQPugmdaKmQjEpjrJPTnChTDiWxRVWL5aeM,191
|
|
95
|
+
aas_core_codegen/golang/verification/_generate.py,sha256=jSd1L_AZa8kbRTQf1XUgDvK6FdWGInheEZehTtP3f90,45910
|
|
96
|
+
aas_core_codegen/golang/xmlization/__init__.py,sha256=UTpxEDxqYJWnPcHPw1yGUzzrJbrjBg7yaxcC9IUiJqg,172
|
|
97
|
+
aas_core_codegen/golang/xmlization/_generate.py,sha256=ommTZCG1QedtrzfIFgwJkUpR88RNceOhafMEywSNZ1o,62416
|
|
98
|
+
aas_core_codegen/infer_for_schema/__init__.py,sha256=AlBhLWoVOm0FcNzZ5uhxxbWruLedTyp2L9NnI8ziLkE,652
|
|
99
|
+
aas_core_codegen/infer_for_schema/_inline.py,sha256=7oudRYmXVRwyMurznqgKQ8vA5dXWGFBzmGPGu4CFGBo,27027
|
|
100
|
+
aas_core_codegen/infer_for_schema/_len.py,sha256=dDy7OrVl-iyhkMXbJ0RBZta2c-dPMSF2pIA9uNC4zeI,17677
|
|
101
|
+
aas_core_codegen/infer_for_schema/_pattern.py,sha256=7umUXFNieRF7KB95cO-K4ONrhQpvnhkGEfa03a1sP88,10735
|
|
102
|
+
aas_core_codegen/infer_for_schema/_set.py,sha256=F2ldfUgjdrsicBtI5hDDSJ3hvelBTqmIhyf1u6aBEJw,13324
|
|
103
|
+
aas_core_codegen/infer_for_schema/_stringify.py,sha256=1IQUYb331-Wg3k0mxXk9a57WF6GKIZ1XEmv83Mozbw0,6481
|
|
104
|
+
aas_core_codegen/infer_for_schema/_types.py,sha256=9-50Yn1nhvvFD-7FC8ptc34ANvtRJpql9nDEtDDQUF8,4142
|
|
105
|
+
aas_core_codegen/infer_for_schema/match.py,sha256=fbV6VefFNZcngHFZoAHoXGOxclMI-4N9lmR42N28rI4,3762
|
|
106
|
+
aas_core_codegen/intermediate/__init__.py,sha256=YbIXr5_s97QsBYFQAxZiD8oF1GAZMybNeRzlMUaa0bg,3288
|
|
107
|
+
aas_core_codegen/intermediate/_hierarchy.py,sha256=eNTHeJ1utc0zmN263TEaMVh6qsc7IdR-LW_03X55Wk8,12825
|
|
108
|
+
aas_core_codegen/intermediate/_stringify.py,sha256=MHcTyAL1GeEIw6d19CKAMYsrZhuEP_uPEPcWai6HCAo,33412
|
|
109
|
+
aas_core_codegen/intermediate/_translate.py,sha256=SOcLdvOC765bNhbeJdI9YxZzuKKpgfIH7Ap0KAPCEJ0,184487
|
|
110
|
+
aas_core_codegen/intermediate/_types.py,sha256=YjtMUb-aVFgAoBAkotMRzHG8QFKFgcBSUmReXt56jic,90645
|
|
111
|
+
aas_core_codegen/intermediate/construction.py,sha256=vOMIOYQE5OzguTIKjSPVSVAftUKsGMThdbAIXzX4Gi0,23538
|
|
112
|
+
aas_core_codegen/intermediate/doc.py,sha256=9BbtoMXVZn1UjSmAilDIfPHNg9Y-QruaubpKX3piH6Q,12263
|
|
113
|
+
aas_core_codegen/intermediate/pattern_verification.py,sha256=yriVB_757RImvm5A_P8E-bbx21ZScEldX6cWfnFBgPg,14042
|
|
114
|
+
aas_core_codegen/intermediate/revm.py,sha256=T2DPxASztb6kEBfOhean9g4CU940jVqL4AEA9LWBN0g,34169
|
|
115
|
+
aas_core_codegen/intermediate/type_inference.py,sha256=gOpVXmrMTup9zJbFr1-267sljOtcAuyLjq-GmNBk2G8,77963
|
|
116
|
+
aas_core_codegen/java/__init__.py,sha256=xYNjZ_CAb6ynrYNnIw3xZWBcxjHpDrEGWuqh6BY_dhQ,63
|
|
117
|
+
aas_core_codegen/java/common.py,sha256=7PwOuRXGIib_FcoLER0fOZ-dVDLAeJ170tf8ksWxe8A,5999
|
|
118
|
+
aas_core_codegen/java/description.py,sha256=oBdPWe-gsCVXiq_atBlSmLwJwS3h-FTD3oedhQvWh0I,26961
|
|
119
|
+
aas_core_codegen/java/main.py,sha256=RGj1mOy2mMY2gG90NOlsfJv7bj7WDYmbnA_aV5NB_fY,12949
|
|
120
|
+
aas_core_codegen/java/naming.py,sha256=pCjFN43UJ2hCMAlxaXoF363ObgwSckGDxyRw9_212bU,5302
|
|
121
|
+
aas_core_codegen/java/optional.py,sha256=nIYM7WI-HTMizj6EuJiUZDsovNOWhYDsChseRCr4guE,17614
|
|
122
|
+
aas_core_codegen/java/transpilation.py,sha256=QVeaJ4IyqjeAcxChxWJOmTmAx7MkTFD1utSEi0rnEpA,38418
|
|
123
|
+
aas_core_codegen/java/constants/__init__.py,sha256=3Tf_nACegs4cx5q_pRFubCERoK-UoqCK4RUpxkSjmw8,170
|
|
124
|
+
aas_core_codegen/java/constants/_generate.py,sha256=fFWFXtmXZWGz05uRAnM0J6ST36ELqRs_2ieL0UTOHQw,10128
|
|
125
|
+
aas_core_codegen/java/copying/__init__.py,sha256=TAmPbmietJvpJ5dF0if0cRTGZaH4qTBjglEAbpizrS0,144
|
|
126
|
+
aas_core_codegen/java/copying/_generate.py,sha256=wchrHyXmgY3JcLbQR8lBSLvXb18OrhrtwB4JQ5HAhlY,16534
|
|
127
|
+
aas_core_codegen/java/enhancing/__init__.py,sha256=9QS_T5ulPWkrLjZ_yjwSJ2KjB_2ygCq8cjsmNmWpjrE,139
|
|
128
|
+
aas_core_codegen/java/enhancing/_generate.py,sha256=ymnZq7e5jYXibKWPCHPwBbvW6wOTgNAvRyKvj0iJfYE,23719
|
|
129
|
+
aas_core_codegen/java/generation/__init__.py,sha256=MQyxkZgV4XZXu497jwBMuwBwxlA5lXKSbPrvB3L5U2A,140
|
|
130
|
+
aas_core_codegen/java/generation/_generate.py,sha256=uNQ2HGoqhvAed9CuuIlMdaa3zu7JaB-A8vw11Tp2xBw,7565
|
|
131
|
+
aas_core_codegen/java/jsonization/__init__.py,sha256=918OICbSoYoYV2v0l7RY18-lrJmZ4qvGdvQLtbCvJAc,166
|
|
132
|
+
aas_core_codegen/java/jsonization/_generate.py,sha256=Y0UdvDQz9DHYVY_Vc8gKjkAeU9BFApOqHPD2Em3lCA8,46694
|
|
133
|
+
aas_core_codegen/java/reporting/__init__.py,sha256=LQ1Ofyo5kOJI9pJ_OoqFPKLIk7zlrrPhyLiPPW0qByM,132
|
|
134
|
+
aas_core_codegen/java/reporting/_generate.py,sha256=Bu_C97YnL1G4GgkDmG-aUNQPof4ASC3qyj7nqVm3Hns,6270
|
|
135
|
+
aas_core_codegen/java/stringification/__init__.py,sha256=_eWofcuxLzYmaYauSsJTCSc55mMWlb-jnxedSyEqBQc,154
|
|
136
|
+
aas_core_codegen/java/stringification/_generate.py,sha256=hvbs-pnxWPvtiDmpoyhhE7B-mGfnbUJZxk5jnvano-0,5359
|
|
137
|
+
aas_core_codegen/java/structure/__init__.py,sha256=7Qpo6SNGnQv1_EwKpZgbjYzTlAixteW6bGdfKFqbEVU,169
|
|
138
|
+
aas_core_codegen/java/structure/_generate.py,sha256=IEhXy0DEVHcCQT1uGkZdasrNbgQXQf1GiG3IiaZ9gbY,53847
|
|
139
|
+
aas_core_codegen/java/verification/__init__.py,sha256=k15BVr6J6KAMcybkdAnbrpJ7l1ys6lHZYlFomFRo3XQ,187
|
|
140
|
+
aas_core_codegen/java/verification/_generate.py,sha256=RmHDS7iwW0QAfQlAJ4jTqAsKOJ88_jUBa82e9LkxqKI,49336
|
|
141
|
+
aas_core_codegen/java/visitation/__init__.py,sha256=a6QOjzehHd3n8cDBq-HKNGb-d29JdPufHpfvrpHoTJ0,150
|
|
142
|
+
aas_core_codegen/java/visitation/_generate.py,sha256=RCLoW0TNqAmnn1HbYY49ALKc2omwptbUm2KLphODaNQ,19149
|
|
143
|
+
aas_core_codegen/java/xmlization/__init__.py,sha256=C7dSf0toUEU4AK1RXW375bS4FvQT35smUutgeVLEsB8,164
|
|
144
|
+
aas_core_codegen/java/xmlization/_generate.py,sha256=OQKGNqSVf0_kgOoNev48MnQxh1LldP1-P1S4LADV-1s,70434
|
|
145
|
+
aas_core_codegen/jsonld/__init__.py,sha256=-TKclL2PEqScr5XuLf3d14KGqHxI7Mg1MMH8K3LaWSc,64
|
|
146
|
+
aas_core_codegen/jsonld/main.py,sha256=vQDCEV-t9K2EG2aINR4h2mItkolq6qH8Y-0gy1leSP4,16221
|
|
147
|
+
aas_core_codegen/jsonschema/__init__.py,sha256=Q9V2kYPv5iyRaOWRtfrCbgCYI2hyEeJQXLnELAKL1zw,60
|
|
148
|
+
aas_core_codegen/jsonschema/main.py,sha256=arbn1SidTFa22A9ShVznYDpBmRYJITjgRSZyR-Oso-Y,35728
|
|
149
|
+
aas_core_codegen/opcua/__init__.py,sha256=0iK7YVzUnNAGgibG5WjYH-pdzGGBN8wb_uR2VKbD4IU,75
|
|
150
|
+
aas_core_codegen/opcua/main.py,sha256=M1uXglECGkQjxjcWjIv6f_TDzmOLuBMojM5OIx3H9jY,49869
|
|
151
|
+
aas_core_codegen/opcua/naming.py,sha256=xCAH5yTHdizg4sBoxj3S98x63esNce4ell_yR_TYelw,3776
|
|
152
|
+
aas_core_codegen/parse/__init__.py,sha256=rjsCkjTaG4CUHRm0agnke8im8V_mCWdjBxLvbgDdRGw,1558
|
|
153
|
+
aas_core_codegen/parse/_rules.py,sha256=SY1NjZ_YFLOwS5wm0p_IK78bzfrOd-hIMBz1xUsA4GY,27047
|
|
154
|
+
aas_core_codegen/parse/_stringify.py,sha256=FoZ09L2ZaiwV8hkuIM1SFtUq7BXi0fbK-u6gyQcAaKw,16951
|
|
155
|
+
aas_core_codegen/parse/_translate.py,sha256=63sdD-6Lw0YOGSykBRTumgYkcWbDO9GNo2jSfmaEAAc,122202
|
|
156
|
+
aas_core_codegen/parse/_types.py,sha256=TAKw3vC_y7aC_j1l0msy9N2DDqo86nLkF2Rv--B7f6w,28437
|
|
157
|
+
aas_core_codegen/parse/tree.py,sha256=fI4v5dTdkul34ITXoR3x8muHXECwsIQ9hOOg9nlsq84,44772
|
|
158
|
+
aas_core_codegen/parse/retree/__init__.py,sha256=gxUw59rNdUi2pYRRXRUsz3LPmjvUlnFZkMih4g7bvf4,1154
|
|
159
|
+
aas_core_codegen/parse/retree/_fix.py,sha256=VJYoIptPaKi-x_dy74Ftv0nIgiEjhyANl-HOwhmOQZM,16941
|
|
160
|
+
aas_core_codegen/parse/retree/_parse.py,sha256=W3eJSGAy7PMEGqarsxqh83a5R9e4VUipwi-VHjtfMxg,39584
|
|
161
|
+
aas_core_codegen/parse/retree/_render.py,sha256=LWntGSXxgFpylSo0If_5kJWOrlgDcrr8eZTNnx_6nxw,9228
|
|
162
|
+
aas_core_codegen/parse/retree/_stringify.py,sha256=ntIqR3YtE6kH4LEgFnMgyuRT2wBJX7DOJRMmAlPfGmE,5077
|
|
163
|
+
aas_core_codegen/parse/retree/_types.py,sha256=JpKUETpr0GxErix3MzX18eNoLkTwG_gtgGHNZPQehfY,10808
|
|
164
|
+
aas_core_codegen/parse/retree/_visitor.py,sha256=h6keZGqvqHGP7rPsf1Tg0tuMGOkHLM86tWAiqZ-bfxc,2091
|
|
165
|
+
aas_core_codegen/protobuf/__init__.py,sha256=8bnPLUEJxj0Su6NCckWXvuIpQEvekNRVg7up4tBCMzM,68
|
|
166
|
+
aas_core_codegen/protobuf/common.py,sha256=mspJtgEOomPo8iA38RGDiVYq-gS_mADmzWYYkm7uZfI,7336
|
|
167
|
+
aas_core_codegen/protobuf/description.py,sha256=AjMxmztIlvFIn_k-iVVZXpNwoB3VEl1IFrpHdKBzatc,36841
|
|
168
|
+
aas_core_codegen/protobuf/main.py,sha256=atPd46P-cDGWZuhvCVeNjFYgxQPjrf42HXZRBOYbwV8,4007
|
|
169
|
+
aas_core_codegen/protobuf/naming.py,sha256=XXopJhvbtAk4ESQ10HtmfFk7MaABZF_1WYh-Sb8diIg,4270
|
|
170
|
+
aas_core_codegen/protobuf/structure/__init__.py,sha256=RzyzvhNzaMamRjHRgqkVcjWRExpTokLEzR0ev4e4Q0Y,171
|
|
171
|
+
aas_core_codegen/protobuf/structure/_generate.py,sha256=sjSEcLCpJa_RO3yBflsIvxnQqJ-BXj085W8XCjK3fDo,15175
|
|
172
|
+
aas_core_codegen/python/__init__.py,sha256=23jLXFa1F2XVop-zA747mnzRskVRlL9YP1BMRBVTYZQ,65
|
|
173
|
+
aas_core_codegen/python/common.py,sha256=hLRw57qWhMVSHJTkE2iqT5VLpTSrYYa8nQKyttdgHp0,11671
|
|
174
|
+
aas_core_codegen/python/description.py,sha256=hUxc7HPxvHbNpaUMjlNdPxJQfh0Xr7PLAbrbPZgaDDA,17614
|
|
175
|
+
aas_core_codegen/python/main.py,sha256=R0RDwxAmrVN4GwLO79QXLrzRGJe53NcADaGAo8maGF8,9773
|
|
176
|
+
aas_core_codegen/python/naming.py,sha256=CHh1ooVetqMZ3OtnYBfrUnkDzXIEMbo5njah3hh72yQ,6846
|
|
177
|
+
aas_core_codegen/python/transpilation.py,sha256=MaMxZm3ORPy3vIdy0pu8rfLQ1_e49lx4vx6cwGOu6Q0,32017
|
|
178
|
+
aas_core_codegen/python/unrolling.py,sha256=NOi6KvRDRsaeRJnx0oJ9qKL-GUNfcFM4Rp_-royd5IE,4911
|
|
179
|
+
aas_core_codegen/python/aas_common/__init__.py,sha256=0fq-w47YRiH_NpNmhjxXGBtSWMQPNIEw54V9Z46xeEo,137
|
|
180
|
+
aas_core_codegen/python/aas_common/_generate.py,sha256=Q2JOp4IveB0mwev2dhLaBIVnPcAgZ-pgS4H__XGi-z4,1462
|
|
181
|
+
aas_core_codegen/python/constants/__init__.py,sha256=W9kqfEJ2SaFXXFVQVFUZ8rnGOnn2Wl46C3gp0vXyBI4,174
|
|
182
|
+
aas_core_codegen/python/constants/_generate.py,sha256=5xfJaKGecEVxqNGI9uEDJiEyFNnMyx2d0qmROAciJJg,11356
|
|
183
|
+
aas_core_codegen/python/jsonization/__init__.py,sha256=CGTsXLCfc97hcm23a_g6odjQWCddomr5336Ym4k5h_0,170
|
|
184
|
+
aas_core_codegen/python/jsonization/_generate.py,sha256=9pUV34lUXef4M5C48lcswPvkv4eMp8h-g_Q64hb2zUs,40328
|
|
185
|
+
aas_core_codegen/python/stringification/__init__.py,sha256=bivmP-ZlbMxTN4mBTIZGwXZnqqjFvxL4Alb9Qbar_3E,171
|
|
186
|
+
aas_core_codegen/python/stringification/_generate.py,sha256=8K9L3hzBLxhqMg9rkEDkqD2RQP0P9e8qCX1SBwKO3W8,3483
|
|
187
|
+
aas_core_codegen/python/structure/__init__.py,sha256=pQqWY0Pt0bvysWVnfsbbmKZBsakHnEV4bGPp_NQsOhE,196
|
|
188
|
+
aas_core_codegen/python/structure/_generate.py,sha256=efXDAPu7Hnu7M3Pxkoh-Rwx7Nr9aqeD0z6KDKyqXDT8,54347
|
|
189
|
+
aas_core_codegen/python/verification/__init__.py,sha256=mtTscJQu5y9qdyVipCOEQ6mJYeWGhDVQi1UkDvNeG_M,191
|
|
190
|
+
aas_core_codegen/python/verification/_generate.py,sha256=cvoTG2-LUfechtqEsAWNt1MBT9zvt77-rgvuP0yGyh8,46263
|
|
191
|
+
aas_core_codegen/python/xmlization/__init__.py,sha256=DhgYcvdAvybW_BTpOZ1Wx3DnM2nZXsVuO6HmxTlUOeg,168
|
|
192
|
+
aas_core_codegen/python/xmlization/_generate.py,sha256=34viYDtnIbHXve4pMFF7tcrSONiySB4FNvibIhA2sVA,89223
|
|
193
|
+
aas_core_codegen/python_protobuf/__init__.py,sha256=pHVnScI5sBW5NvBHRdeLtakOcQx2DHIZgVUOuKU9MRg,69
|
|
194
|
+
aas_core_codegen/python_protobuf/main.py,sha256=6UrFbCGiSNTJr4Id1EtKoSn-gtcGqkwVWreCT3q33LE,43550
|
|
195
|
+
aas_core_codegen/python_protobuf/naming.py,sha256=xjXYlpXhW3zZKMheSsoPItPi17migVfPCN42Opxv4aQ,2394
|
|
196
|
+
aas_core_codegen/rdf_shacl/__init__.py,sha256=BcH2BwIumKK6CK-_8E4-Cpc8pNQemrX_QpdsUXGL4qQ,86
|
|
197
|
+
aas_core_codegen/rdf_shacl/_description.py,sha256=mhEOyVaKHUXbR1Udr1EAlVsd7a02E16T3-k1lO4nauU,11887
|
|
198
|
+
aas_core_codegen/rdf_shacl/common.py,sha256=76uEmQTvB9Tw399dNfErGEcxq-OY5bYD4_d_Lub_i-E,7720
|
|
199
|
+
aas_core_codegen/rdf_shacl/main.py,sha256=QOjlSLOtiHEAdc0wzA-M4jBCAY85xEpJwlvp0nz4os8,3301
|
|
200
|
+
aas_core_codegen/rdf_shacl/naming.py,sha256=oCBa7l80PLEz7ok0aAbs_XP2Upvz8LhJJoWUX_axTFs,3877
|
|
201
|
+
aas_core_codegen/rdf_shacl/rdf.py,sha256=IX0DKvk87-ANeCKKsTWM1El8UrVGOZy-FV0b57V4mtE,14821
|
|
202
|
+
aas_core_codegen/rdf_shacl/shacl.py,sha256=-mN6ofFR_DYDE97Np6GzwYEFrYKz9Xk-kfwrvdT-0tA,16353
|
|
203
|
+
aas_core_codegen/smoke/__init__.py,sha256=HBJYnB_QUZjQzkiUJIjFksWye9TBeCoNF4sx6X2h9uY,88
|
|
204
|
+
aas_core_codegen/smoke/main.py,sha256=GkCga6v5fRqwvQ4xzMvzkCFUVFZDtA1HhYvJqF-lS8o,6987
|
|
205
|
+
aas_core_codegen/typescript/__init__.py,sha256=Sjxi-cItjGAYEbzHbcNBcwWWy4OyrA6aaVCM1_vLps0,69
|
|
206
|
+
aas_core_codegen/typescript/common.py,sha256=FZL0Yr3zqrx3PZisa0AurL64nKiFuOiCvOaErA_UMSo,10075
|
|
207
|
+
aas_core_codegen/typescript/description.py,sha256=NqyQ4d37V7gsVFSihMEkbzzxExpvdr9KZYnzU0Sjykk,19208
|
|
208
|
+
aas_core_codegen/typescript/main.py,sha256=OOcSzVBj72_t3657WQTSVs-mRka16Zv2ylMC5Gq8gio,8005
|
|
209
|
+
aas_core_codegen/typescript/naming.py,sha256=CI-53J1ZMLABUO3VWXp9EFIUMqpKQPTxLTZGSzu4sMQ,5132
|
|
210
|
+
aas_core_codegen/typescript/transpilation.py,sha256=oCAl02jSC1NSdViIG9VdXKOKvNBh5PTyE88IosxiqLU,35371
|
|
211
|
+
aas_core_codegen/typescript/unrolling.py,sha256=ly3XyXugEU1nSARolLtNVW0vcGcMmyJlZkV2x4LmZXY,4969
|
|
212
|
+
aas_core_codegen/typescript/aas_common/__init__.py,sha256=3SLYcJ0xromBsYk1k4ikL9WugFhJfRl1N687-uyu4jw,145
|
|
213
|
+
aas_core_codegen/typescript/aas_common/_generate.py,sha256=vEe9lWreC1r27ywQFMqy1gQVWPAs5ufE3a54EiuzG74,13809
|
|
214
|
+
aas_core_codegen/typescript/constants/__init__.py,sha256=oR71DvfsIBOE3yX8LBc86QqBeEBxXzgDaTwB7jXyWhw,178
|
|
215
|
+
aas_core_codegen/typescript/constants/_generate.py,sha256=mMxel6Jz4KcoeCM1uirDSbKeqWNqH0NCCMGJH7gYlXw,11437
|
|
216
|
+
aas_core_codegen/typescript/jsonization/__init__.py,sha256=EEcvyII2AOWYispTLbeZaTq6SQpICUgcbLXanQ80Mtc,178
|
|
217
|
+
aas_core_codegen/typescript/jsonization/_generate.py,sha256=twz-Xt5AcQSvfPML3AnOo8n4z11UeRhX9cgDcd1ZBp8,44757
|
|
218
|
+
aas_core_codegen/typescript/stringification/__init__.py,sha256=ihb5dzhjm06Of8TiCuurisZNrTJSh8aF9J0YQ54k0Gg,179
|
|
219
|
+
aas_core_codegen/typescript/stringification/_generate.py,sha256=LSMMpumor0OXXK1nLcv8i0GwboEM_3mASXbI7haZHlk,10995
|
|
220
|
+
aas_core_codegen/typescript/structure/__init__.py,sha256=oQXDmyeipkis0KeOBKTP79F5C31OsKgHmMZWuyftkfY,204
|
|
221
|
+
aas_core_codegen/typescript/structure/_generate.py,sha256=MaVOPTcMbgWgrtlSxIAsGHd4M3Iuvh_wr5-ugZbxyTM,73981
|
|
222
|
+
aas_core_codegen/typescript/verification/__init__.py,sha256=ElZKzZIVdvwdS0IfAd6RxdU2PeWYuXLmfKBX4Kfw0wo,199
|
|
223
|
+
aas_core_codegen/typescript/verification/_generate.py,sha256=05ZoN-RgRL5cfe8uEDg1YAdOm16cel_SG1mDeFmLMRU,50025
|
|
224
|
+
aas_core_codegen/xsd/__init__.py,sha256=pJD-nmenWPeXsT5ATCbnNmuMdPF4BHMAnxNEvV6tqpY,76
|
|
225
|
+
aas_core_codegen/xsd/main.py,sha256=Fvh6gfR6-1ymmNhlcgci3ZQpChVIaGMoksAj3mpDzxs,42344
|
|
226
|
+
aas_core_codegen/xsd/naming.py,sha256=79tbf5UgmErN4sMSTtFwhiwweCuSO-BzmQ0HaQdwKzc,2302
|
|
227
|
+
aas_core_codegen/yielding/__init__.py,sha256=Z4kasROPDU47z3sUMcLXTV8q1rrjfojScsi9Vu3Fxe4,84
|
|
228
|
+
aas_core_codegen/yielding/flow.py,sha256=dSmH_UpXX0lcfej0IikaNTCAaS1Dnu28UkaIshvucL8,4049
|
|
229
|
+
aas_core_codegen/yielding/linear.py,sha256=tSuEqIWFw3LW4ziDz_RYe8MWi_FVoEWVxjUMjK4fhZs,22858
|
|
230
|
+
aas_core_codegen-0.0.16.dist-info/licenses/AUTHORS,sha256=MMMlPKxHrTmheRhXKt2fz5tRE0DOpXMm5Luk2D-IRtM,748
|
|
231
|
+
aas_core_codegen-0.0.16.dist-info/licenses/LICENSE,sha256=WAZY-cEny3dLK_zSgdc6kH2fm7bZz5i3OEWZCcv9cTk,1167
|
|
232
|
+
dev/continuous_integration/__init__.py,sha256=J4SCNyZ0SPSIvRkO-dDZRCg5n_fGc3J9zO9y_P6dVII,54
|
|
233
|
+
dev/continuous_integration/check_help_in_readme.py,sha256=C2ymVvs_ZWrz53WKISMwSordKSKA_QneortyV0vi-PE,6132
|
|
234
|
+
dev/continuous_integration/check_init_and_pyproject_consistent.py,sha256=pNI-637J9K0JbYccY0qQDSi6ysvHSfXKhi4oIaLTQJw,4723
|
|
235
|
+
dev/continuous_integration/precommit.py,sha256=RTGhL1qV1MITPfcJHtUCw1yLP_flgAdM4iFGwc0UHMY,12272
|
|
236
|
+
dev/dev_scripts/__init__.py,sha256=I8gGD_dDIkwkcGF_gpQbAWK0PU1ssZ7rOAlguJf-7r8,73
|
|
237
|
+
dev/dev_scripts/compare_rendered_regexes_against_source_py.py,sha256=wf_FsNoGYEsiyPDEVamjzPaXfgxBLUc0Wn0GAED78sI,1215
|
|
238
|
+
dev/dev_scripts/copy_to_aas_core3_cpp.py,sha256=AUBHu6iLs6XhzMKmgLbBcyT4GLehg_AavdmwgXlKqog,2768
|
|
239
|
+
dev/dev_scripts/copy_to_aas_core3_java.py,sha256=-hO2H991SuojrcHLeGVSehMAMhOD5rtbQ1v4iZw2xiE,2398
|
|
240
|
+
dev/dev_scripts/download_latest_aas_core_meta_v3.py,sha256=nqUzlZUCqD8mekRJGSydtu-0U2UwVT8EWhfFFvK-DMA,3093
|
|
241
|
+
dev/dev_scripts/draw_bipartite_graph_based_on_lines.py,sha256=2rrtNRO7v0PxD8R1bwRJNAmhwiU7AJhr-zwQyl7kmi4,1112
|
|
242
|
+
dev/dev_scripts/run_tests_with_rerecord.py,sha256=EeUtRdYXKnO6Ik7gGO_whn8GUx3u_KVPEzqTQ9COlJA,2311
|
|
243
|
+
dev/dev_scripts/update_to_aas_core_meta.py,sha256=qBBfljXsm_YVcDTwLh8nG40IVicIktzmXtz0GX2cTPk,4903
|
|
244
|
+
dev/integration_tests/main.py,sha256=hfqlQtT5ParBzR8diuCs9Y4kCz7RehKzhs1_ksO7e6U,8304
|
|
245
|
+
dev/integration_tests/input/meta_model.py,sha256=E-dy89WdU6Hxsa4zOB_4mc2ACHnfb2jWmQVlsDTS6Co,817
|
|
246
|
+
dev/integration_tests/input/jsonschema/boilerplate/main.py,sha256=txvGQ8bJaIQUvdnTBsqqyQAffAd4ayVJKRWldZ1OWTU,1785
|
|
247
|
+
dev/integration_tests/input/python/boilerplate/main.py,sha256=qNMRz3gM60aXm0j6YpDfe3G6NMX9J33uM0zgZ4ubMso,4583
|
|
248
|
+
dev/test_data/csharp/test_structure/concrete_class_with_descendants/meta_model.py,sha256=lMRIENS-gAwLVkkAV0re7zXlNHoNjovIL_kIgYcbn_s,266
|
|
249
|
+
dev/test_data/csharp/test_structure/constructor_without_arguments/all_properties_optional/meta_model.py,sha256=BTa9jErH3MflnOb0iQC2Vhv_s8bmhcoZ1jH4I5WO00A,227
|
|
250
|
+
dev/test_data/csharp/test_structure/constructor_without_arguments/no_properties/meta_model.py,sha256=c_ZqjIC5TsuMtqwx1ojSIW4Pugx9pp9ukVLgd82PedI,90
|
|
251
|
+
dev/test_data/csharp/test_verification/builtin_functions/len/on_list/meta_model.py,sha256=cVuvV5h17dOGARBXNK6HLzgMqj-l23C0HATXBzFE1lc,375
|
|
252
|
+
dev/test_data/csharp/test_verification/builtin_functions/len/on_str/meta_model.py,sha256=L8Lk1_Jw3UYE1Q0itc91pW8Dtgm2zpZCCNoR9nLJUcY,325
|
|
253
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/as_prefix/meta_model.py,sha256=B5xjEDw2_B1ahBi0HHvKycDbYwgBouT-XDJp6DmW-ho,202
|
|
254
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/as_suffix/meta_model.py,sha256=15YnTogGnk07q9LhMA3eSP7MYAvE2Bpxqg9JGgYnRA4,202
|
|
255
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_group_with_quantifier/meta_model.py,sha256=geznl-_kT6e-6DJSw1LMDpotMhNV2vTckDIUSD0gR1g,196
|
|
256
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_the_middle/meta_model.py,sha256=CoJvOI2K1TB4VApNldXdk6i24vveZdci0W3jWmm4Oow,215
|
|
257
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/in_union/meta_model.py,sha256=sdsrKeNp5myuq9capvjxEkrEhX5jTPz-FzbbKXCOSo4,204
|
|
258
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/single_utf32_literal/meta_model.py,sha256=L_ouMzykXHBITXZXEK3fdwBFmHqLG_KMEnQvcb2yQSk,193
|
|
259
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/with_quantifier_within_group/meta_model.py,sha256=QH9gNaDBJkz3YUW1dqAFgz7a1eUfiqDLtDSp7J32eO8,206
|
|
260
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_as_literal/with_quantifier_without_group/meta_model.py,sha256=VYJ9rfEvOPUMO3SqfwRWo9xnDEKE5SyutcZVovoMcdM,194
|
|
261
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/at_the_beginning/meta_model.py,sha256=wbqifPuoAdlK4717VHjyZ2ZijufTiny-b47oQ8C8fds,213
|
|
262
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/at_the_end/meta_model.py,sha256=SCIXHn90qbHB-1kT8Yqj1Xex27Qg5wYPJ_7-yKhZLrc,213
|
|
263
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/in_the_middle/meta_model.py,sha256=TEy2O6e-tD-ulacZrdSBKFCru95jh9Evx_MjcNJKK4Q,213
|
|
264
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/multiple/meta_model.py,sha256=tfVKNvSqeyJEJIdl2ujIRxJ431oVF9JA8mPdSFdJics,218
|
|
265
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/single/meta_model.py,sha256=JpAtmtTjkNYXmp4kkE0SMuOW0bg-QY7ja5h5oOt8KRE,207
|
|
266
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/literal/single_with_quantifier/meta_model.py,sha256=NEZp-SrE3iahW-CtnGqlabArmVSX3vGTlaC1q9kOB9Q,208
|
|
267
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/mixed_with_non_utf32/meta_model.py,sha256=NMzD89PkAvWBo1L9zOImDJbXT8DCxGhC65knWQ9Ts1k,225
|
|
268
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/more_than_two_high_surrogates/meta_model.py,sha256=NsKLwgCfUmCxxZ0uiFu0gNKNqKFemaT_L4TMlZ-FDp8,219
|
|
269
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/multiple_utf32_ranges/meta_model.py,sha256=ZJDzhRd2U7VIqhJnubY50cbrsZBO4OjA3vXL7ICMPxs,242
|
|
270
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/multiple_utf32_ranges_mixed_with_non_utf32/meta_model.py,sha256=uwSzCcdyRTNY8jEsL87HfZVuOPcs9ULxw6hRbAfhxhA,248
|
|
271
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/same_high_surrogate/meta_model.py,sha256=Bu3AAHztpOvpIDYf9YJvRh2SG2bVzpNnaQo5loQau_M,219
|
|
272
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/same_high_surrogate_with_quantifier/meta_model.py,sha256=CkwZchTyzzdvdIR5NDxyAj2jYvMcx_dOIVXEATd5Yi4,220
|
|
273
|
+
dev/test_data/csharp/test_verification/pattern_verification/utf32_in_character_set/range/two_high_surrogates/meta_model.py,sha256=Fa9e_gNHWKgpYwHIs2vrC3-Npssof1Nv9Wzh9soTAxI,219
|
|
274
|
+
dev/test_data/intermediate/expected/class/empty/meta_model.py,sha256=C1x46X-QN8EqGyyCPl5tLbRWsbqD4CfZU6IjC42Xf7c,89
|
|
275
|
+
dev/test_data/intermediate/expected/class/implementation_specific_method/meta_model.py,sha256=4_jtRV6IVzyAZ7Ixu7dkuwubNkJA0FLr-FbA7azqTmo,162
|
|
276
|
+
dev/test_data/intermediate/expected/class/inheritance/meta_model.py,sha256=1aJxwwkuvTkBrxDGv2Zh4zRUYZW9vvYVntbh0bScotM,1173
|
|
277
|
+
dev/test_data/intermediate/expected/class/methods_with_contracts/meta_model.py,sha256=MwGydfTpZPACiKdzSena7dfUZ7g70G9Lrxg1RGTm_0s,333
|
|
278
|
+
dev/test_data/intermediate/expected/class/only_method_no_property/meta_model.py,sha256=rGH9bHN-5t0XqGYgSxBwjVgevZ3pG74nSrxwuHsCedE,133
|
|
279
|
+
dev/test_data/intermediate/expected/class/only_property_no_method/meta_model.py,sha256=pilDpc2z39BzLWUD0k6409xeXxq5Pj4UFp0075ubD44,151
|
|
280
|
+
dev/test_data/intermediate/expected/constant/constant_set/of_enum/meta_model.py,sha256=7VVl3DR2dFlLNgKZ1CibiOSxaoTvThP80mmFxSQlY4I,313
|
|
281
|
+
dev/test_data/intermediate/expected/constant/constant_set/of_str/meta_model.py,sha256=jFUAmGUdlIJrzJTYYZMacJPSfzuIxRvGGL_JCTMz0YU,142
|
|
282
|
+
dev/test_data/intermediate/expected/constant/constant_set/with_description/meta_model.py,sha256=qM0H_w62wzrsw5prPhTBX0GI4ZixNDOFBiuohO3vtoY,183
|
|
283
|
+
dev/test_data/intermediate/expected/constant/constant_set/with_superset_of/meta_model.py,sha256=_qn-cmcULlHkRELIHUuhAAyPPGCAaTAmfvvyOaqT8fI,322
|
|
284
|
+
dev/test_data/intermediate/expected/constant/constant_str/only_value/meta_model.py,sha256=BVXLVTfQS556QC89Wgxjrwohy4B_TGjyvQ5yRro9Ayw,121
|
|
285
|
+
dev/test_data/intermediate/expected/constant/constant_str/with_description/meta_model.py,sha256=O1LU_vCmgg-9q5NOwcASa8XMphhmfb7sUIjHosK47rQ,150
|
|
286
|
+
dev/test_data/intermediate/expected/documentation/docstring_with_special_characters_in_literal/meta_model.py,sha256=AbEl1ieGRFClWQM7qcNS3QJthfm_DFM4A2YsR8FrjCo,626
|
|
287
|
+
dev/test_data/intermediate/expected/documentation/docstring_with_special_characters_outside_literal/meta_model.py,sha256=YEr5kYn4F6voa4ZsBH4OU_HxqO1OUxedNPwkH_AIz5Q,622
|
|
288
|
+
dev/test_data/intermediate/expected/empty/meta_model.py,sha256=ivZcgQPhDkqzxPurTKQkU5HjLmEPUPeTUKnSoVOwnTc,62
|
|
289
|
+
dev/test_data/intermediate/expected/enumeration/meta_model.py,sha256=rPGmUKcXxJOGBWomJR1ns2PlimzUxYWFNj8Dc2_Rb3c,184
|
|
290
|
+
dev/test_data/intermediate/expected/interface/basic/meta_model.py,sha256=690iZU5LwavezG-iBPybPP6r4mHgdfTZLAiN8pylObY,319
|
|
291
|
+
dev/test_data/intermediate/expected/interface/empty/meta_model.py,sha256=6RbdEKBK8pwS3RUV-U0x_XNo2NTRj6qbhDNtHSbi3-o,108
|
|
292
|
+
dev/test_data/intermediate/expected/interface/inheritance/meta_model.py,sha256=6JGmVhHPcSaI_bBwbZRdY8cVYVUFFNd7mjg0rNvKMPo,677
|
|
293
|
+
dev/test_data/intermediate/expected/interface/method_signature/meta_model.py,sha256=34GSk8LURfEDWrvjaPgzcEGs9PY2Db4XhMpkAol1ors,261
|
|
294
|
+
dev/test_data/intermediate/expected/interface/only_constructor/meta_model.py,sha256=aT_dJ76QLVPO5zDbU1AEToigus0R75GfY9bhgTHz2MA,252
|
|
295
|
+
dev/test_data/intermediate/expected/method/non_mutating/implementation_specific/meta_model.py,sha256=U-zbIlBb9ha5pKZm8p3kQY86ZPdSFjvL4kLYmdYTwuc,227
|
|
296
|
+
dev/test_data/intermediate/expected/method/non_mutating/understood/meta_model.py,sha256=nTkZe5qKgVuvpgg6rqh-mcOCer2_SBOMNYdGioECvOA,198
|
|
297
|
+
dev/test_data/intermediate/expected/type_annotation/atomic/meta_model.py,sha256=pilDpc2z39BzLWUD0k6409xeXxq5Pj4UFp0075ubD44,151
|
|
298
|
+
dev/test_data/intermediate/expected/type_annotation/subscripted/class/meta_model.py,sha256=stZYQjBLP_fr9PplU3SU_3-J_pCJBNO8FUPyNaAIsCo,259
|
|
299
|
+
dev/test_data/intermediate/expected/type_annotation/subscripted/primitive/meta_model.py,sha256=RdDYZUSRul4YWn_m5vkrmYzDJ3oEZ1Q6JOTh0Rx26no,173
|
|
300
|
+
dev/test_data/intermediate/unexpected/constant_set/of_enum/enumeration_literals_in_subset_outside_of_superset/meta_model.py,sha256=8QtOmETJNGThpk0rNh2NCm2lT746J33-2qQEqseWUJA,512
|
|
301
|
+
dev/test_data/intermediate/unexpected/constant_set/of_enum/invalid_literal/meta_model.py,sha256=T1n7YXGU6ggTNyoNIE5eoGM_T-79PbSstsKloxjDw5A,272
|
|
302
|
+
dev/test_data/intermediate/unexpected/constant_set/of_enum/mismatch_between_enumeration_and_literal/meta_model.py,sha256=oqaOYVQGA8C3GaDfakaMA8WffqIL9WxDCHRNwUve5zY,702
|
|
303
|
+
dev/test_data/intermediate/unexpected/constant_set/of_enum/mismatch_in_enumerations_between_subset_and_superset/meta_model.py,sha256=2nkjNirJlBZ4iTGEdJVF2adm3NMN7NmIH_cuGolx4NE,495
|
|
304
|
+
dev/test_data/intermediate/unexpected/constant_set/of_str/literals_in_subset_outside_of_superset/meta_model.py,sha256=oPACY4NZ1cytHHIB-aIbffUnb0RRCW0yvTRZ_UhtAGE,295
|
|
305
|
+
dev/test_data/intermediate/unexpected/constant_set/of_str/mismatch_between_type_annotation_and_literals/meta_model.py,sha256=8LGSoqzpSzmwBs1iNQkTujznxwu3ANuRRwNK_YZhfOA,154
|
|
306
|
+
dev/test_data/intermediate/unexpected/constant_set/of_str/superset_and_subset_mismatch_in_type/meta_model.py,sha256=F0c4HZWJvO8NineWU_OgGdxTta42yzVcuYp7ahUvQOU,238
|
|
307
|
+
dev/test_data/intermediate/unexpected/constraints/dangling_constraintref/meta_model.py,sha256=mhIeSjdK1C2H_x5jtQPDJv9_zsO1nBtxWEPTNAqv35Q,252
|
|
308
|
+
dev/test_data/intermediate/unexpected/constraints/duplicate_constraints/meta_model.py,sha256=kS9YWgjnY2WRVOnjY4rvYPMl0vtUCQgLC2LAEYkWvMg,265
|
|
309
|
+
dev/test_data/intermediate/unexpected/documentation/unexpected_documentation_elements/meta_model.py,sha256=8KwTI3vJzNxa08DSjZtYX_4Sr1KHMrUbPboEFQJBmtE,532
|
|
310
|
+
dev/test_data/intermediate/unexpected/invariant/class_invariant_uses_re/meta_model.py,sha256=45s7CTNQHDym07r-A-nGBXmEL6BGaBwJ4SLztd8aGGU,229
|
|
311
|
+
dev/test_data/intermediate/unexpected/invariant/invariant_of_constrained_primitive_uses_re/meta_model.py,sha256=kWQiyk_HiclMa2DiBRX625aVlegcmrIhl_oOOf2QZbY,179
|
|
312
|
+
dev/test_data/intermediate/unexpected/invariant/unexpected_argument_count_to_len/meta_model.py,sha256=jYz_IyrB9kk6MrG8u_6EVLOy66smRbIEFviSaEgQHFo,378
|
|
313
|
+
dev/test_data/intermediate/unexpected/invariant/unhandled_built_in_function/meta_model.py,sha256=KPdQ_d3zAPQGfp2W4bC_sxqrU6AWi_QQLRe2wau_nIc,378
|
|
314
|
+
dev/test_data/intermediate/unexpected/method_definitions/non_constant_default/meta_model.py,sha256=wyGwRXW_naH_Qnn6PzThYFzBgMJsfzYaAw9jFkiEw3Y,152
|
|
315
|
+
dev/test_data/intermediate/unexpected/optional_constructor_arguments_wo_default/default_non_none/meta_model.py,sha256=Rx7lz1-W-KxYh-rZAVMSofHxFtx4AGwmz-UkwbsUHps,376
|
|
316
|
+
dev/test_data/intermediate/unexpected/optional_constructor_arguments_wo_default/no_default/meta_model.py,sha256=Kk1CjSY2ovq50iMzoMC8Q4UP3Aftz1XxVPYvUZ4n_Qc,368
|
|
317
|
+
dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/after_inheritance/meta_model.py,sha256=Ax-7dV6WnwUvwm6HimVpyWVfjNVJuII-3yZ1Fty_PgU,1478
|
|
318
|
+
dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/type_missmatch/meta_model.py,sha256=8MWGc1qoFIDYdxDQLPTswocdig0VSP-TxT-wURSo9t4,173
|
|
319
|
+
dev/test_data/intermediate/unexpected/properties_and_constructor_arguments_do_not_match/within_class/meta_model.py,sha256=3aE2f3xk5hKYfK1uH3a97burVXGvsp8XiVTRygZQT9g,512
|
|
320
|
+
dev/test_data/jsonschema/test_main/regression_when_len_constraints_on_inherited_property/meta_model.py,sha256=oj-NpLvb0tqB4Vbge7IZYBGqlkUVXOzBeaa5F94Wp8o,718
|
|
321
|
+
dev/test_data/opcua/test_main/abstract_and_concrete_classes/meta_model.py,sha256=8Oo7jnqSP55EWLxO77sGoPtJ4TrVNJbZZxb-wPGgNas,888
|
|
322
|
+
dev/test_data/opcua/test_main/classes_with_invariants/meta_model.py,sha256=CcnZ2UY3rUOFreBhM9PDjB0RrS1LIXum735f49rI7Ug,520
|
|
323
|
+
dev/test_data/opcua/test_main/concrete_class_with_descendant/meta_model.py,sha256=jsVdat6d3VCTZ3PpKD_MkGap18uCiCVdTrOEdx9X-yQ,613
|
|
324
|
+
dev/test_data/opcua/test_main/concrete_class_with_enum/meta_model.py,sha256=FSISTYEIIzFJDBF8bYcC7CEd-n8kX2zMed_96HNyF_0,518
|
|
325
|
+
dev/test_data/opcua/test_main/concrete_class_with_list_of_instances/meta_model.py,sha256=x9z6NEC7ml-Ba0WqQzOPLG7TB2UlTdj3HI-iNcb4tLs,444
|
|
326
|
+
dev/test_data/opcua/test_main/concrete_class_with_primitive_attributes/meta_model.py,sha256=rddDIhEte5tRjU7elQzLx2M4SAOeZEEFS7xFATHGiLQ,1305
|
|
327
|
+
dev/test_data/opcua/test_main/concrete_class_with_string/meta_model.py,sha256=Rk-mOyrAVfjvLSr07hGFsYmLGYIAbwzDz5iSWBM7OHE,207
|
|
328
|
+
dev/test_data/opcua/test_main/constrained_primitive/meta_model.py,sha256=D11IXoDxpJkeozk05nlFFNefkngsHYOD19jtXCD72UI,456
|
|
329
|
+
dev/test_data/opcua/test_main/multiple_inheritance/meta_model.py,sha256=wGP04-y2XMnNuYNUUjiFCQJkbI-RLjom8yBOM9mfBD4,576
|
|
330
|
+
dev/test_data/parse/expected/constant/constant_set/of_enum/meta_model.py,sha256=QKg88Wz_NWb16j9ecFvHxGvAC0_vdoe54SmBOeQztAU,317
|
|
331
|
+
dev/test_data/parse/expected/constant/constant_set/of_str/meta_model.py,sha256=jFUAmGUdlIJrzJTYYZMacJPSfzuIxRvGGL_JCTMz0YU,142
|
|
332
|
+
dev/test_data/parse/expected/constant/constant_set/with_description/meta_model.py,sha256=qM0H_w62wzrsw5prPhTBX0GI4ZixNDOFBiuohO3vtoY,183
|
|
333
|
+
dev/test_data/parse/expected/constant/constant_set/with_superset_of/meta_model.py,sha256=_qn-cmcULlHkRELIHUuhAAyPPGCAaTAmfvvyOaqT8fI,322
|
|
334
|
+
dev/test_data/parse/expected/constant/constant_str/only_value/meta_model.py,sha256=BVXLVTfQS556QC89Wgxjrwohy4B_TGjyvQ5yRro9Ayw,121
|
|
335
|
+
dev/test_data/parse/expected/constant/constant_str/with_description/meta_model.py,sha256=O1LU_vCmgg-9q5NOwcASa8XMphhmfb7sUIjHosK47rQ,150
|
|
336
|
+
dev/test_data/parse/expected/enum/ok/meta_model.py,sha256=vTJHGjVnkEjE14hfIIMS0BI7boCNsX-v0QD5Kk0ldrw,248
|
|
337
|
+
dev/test_data/parse/expected/implementation_specific_class/properties_and_methods_in_implementation_specific_class/meta_model.py,sha256=c1BzMBwUcyog293YC3a0WF6TY65y5Evrk8hJnoFhmNg,453
|
|
338
|
+
dev/test_data/parse/expected/inheritance/basic/meta_model.py,sha256=9vXANm2JGqah47aAs-276zrL-DM8Hmm-cpWQBWDXUz4,143
|
|
339
|
+
dev/test_data/parse/expected/inheritance/diamond/meta_model.py,sha256=VvopJ2VKxpY69ARVyn5d2c2P3kedXAlHRKaKMI1NdC0,379
|
|
340
|
+
dev/test_data/parse/expected/inheritance/inheritance_from_concrete_class/meta_model.py,sha256=sQ9o6BmJgae3lmLukphBi_FNo9GFwRF4rbJi0GBfFTI,134
|
|
341
|
+
dev/test_data/parse/expected/invariants/in_relation/meta_model.py,sha256=h4plgEKLzYsaXKqegHaOlvEZtvwXXVX4yWuXuK2kpdI,389
|
|
342
|
+
dev/test_data/parse/expected/method/arguments/meta_model.py,sha256=1ZKCeLFLkr3rxPgLTbnpIi0l3EcyOdhPU_6LSDiiLqc,134
|
|
343
|
+
dev/test_data/parse/expected/method/basic/meta_model.py,sha256=riVITHmbsNGg4aaOlcd2v4Rghq8MzB3yIGWpLGEVigI,126
|
|
344
|
+
dev/test_data/parse/expected/method/contracts/condition_as_keyword_argument/meta_model.py,sha256=yx7Ncm3LXQ2w7X3vesxCRfP6LnI8ZpDKjtZ2Z9YjZ8k,188
|
|
345
|
+
dev/test_data/parse/expected/method/contracts/condition_as_positional_argument/meta_model.py,sha256=t82njHSpOn8OLL4fqJKK3GOgdOajr5SHBOO8luK-hEs,178
|
|
346
|
+
dev/test_data/parse/expected/method/contracts/description_as_keyword_argument/meta_model.py,sha256=ISqW7fgxPhGjnWKIV83DNiHflehj_bED_Q9Q1CQAFxM,207
|
|
347
|
+
dev/test_data/parse/expected/method/contracts/description_as_positional_argument/meta_model.py,sha256=L4JPhxVWkYDY5Gz-lY2toWPKOyqy41kb9B2qoE2nSbY,195
|
|
348
|
+
dev/test_data/parse/expected/method/contracts/multiple_contracts_in_order/meta_model.py,sha256=Yl3DL2Qpf75REfrVxyHvEqGqH84dIJa3jCAvHF0qVhU,526
|
|
349
|
+
dev/test_data/parse/expected/method/contracts/postcondition/basic/meta_model.py,sha256=J7Nw-_LHjX7HlwWUlTPxRvset7nj2SDs8CA0oRW4f9Y,199
|
|
350
|
+
dev/test_data/parse/expected/method/contracts/postcondition/snapshot/with_keyword_arguments/meta_model.py,sha256=svbdIpO10vdUBsuUr2UnOYkg5w4PmeICdoqA5FzitlM,249
|
|
351
|
+
dev/test_data/parse/expected/method/contracts/postcondition/snapshot/with_positional_arguments/meta_model.py,sha256=bgZslT7vaJ-b6ioeAKmWis3mC0kXfvfsoMvp6A53n68,236
|
|
352
|
+
dev/test_data/parse/expected/method/default/meta_model.py,sha256=7x61IoQxlpv153TCM-tSiSI5F2xHTswivmS_V9lw49U,199
|
|
353
|
+
dev/test_data/parse/expected/method/description/meta_model.py,sha256=r59cxTCh_Ncxdss-Fo8VyXEI98hiPiYv9nwwfSvQZso,154
|
|
354
|
+
dev/test_data/parse/expected/method/is_implementation_specific/meta_model.py,sha256=ol--3Q1aIMl01muNhMcuTbZDa3m0nfFGsVr0gnpnNBs,155
|
|
355
|
+
dev/test_data/parse/expected/method/non_mutating/meta_model.py,sha256=nTkZe5qKgVuvpgg6rqh-mcOCer2_SBOMNYdGioECvOA,198
|
|
356
|
+
dev/test_data/parse/expected/method/returns_none/meta_model.py,sha256=5HrS2O1zx4Pl2RtTuxE4Xxgs7eGvG9Dq4EkkIyseyHY,130
|
|
357
|
+
dev/test_data/parse/expected/method/returns_something/meta_model.py,sha256=CEeaUt-pP-aORb7yYBbR21XMIsTRAzyShCHuNOVUE8E,129
|
|
358
|
+
dev/test_data/parse/expected/single_class/description/meta_model.py,sha256=QuclA4ZXnyfJmbqohcORPlvXzpmfPueoBlONIWwRX_E,151
|
|
359
|
+
dev/test_data/parse/expected/single_class/empty/meta_model.py,sha256=c_ZqjIC5TsuMtqwx1ojSIW4Pugx9pp9ukVLgd82PedI,90
|
|
360
|
+
dev/test_data/parse/expected/single_class/property/description/meta_model.py,sha256=aDwprJ-vGRxadEQVas_GRBUO0EmXi0_uliSHBrmEDP0,249
|
|
361
|
+
dev/test_data/parse/expected/single_class/property/mandatory/meta_model.py,sha256=6kvaU45ZCRZeVs50oq8FZw-jpMBx1lnfVSW0OKGX4n8,104
|
|
362
|
+
dev/test_data/parse/expected/single_class/property/optional/meta_model.py,sha256=SVQZN8PcBPsmIcL_r2-Tc8ynevCSVJSBPugGDcINt3E,114
|
|
363
|
+
dev/test_data/parse/expected/single_class/property/recursion_to_entity/meta_model.py,sha256=CSpPKzPw0vggitxzAmgzmYlFd_5RXmBJdvdzvVuvd6c,113
|
|
364
|
+
dev/test_data/parse/unexpected/class_decorators/non_name_decorator/meta_model.py,sha256=JHjMW7_h-OGk1JZYQ-bSdO0DLeGEDuryQLDnAJAyuDQ,118
|
|
365
|
+
dev/test_data/parse/unexpected/class_decorators/unknown_decorator/meta_model.py,sha256=c0jC5e3KGW5HyPrs9L_WrYJhB8UjL95MCBO6tCfXXSE,111
|
|
366
|
+
dev/test_data/parse/unexpected/class_definitions/is_abstract_and_implementation_specific/meta_model.py,sha256=D7XbmSRPWK18ubo3eVTmMVT320JEA3foRCd8B0sD8Ns,125
|
|
367
|
+
dev/test_data/parse/unexpected/class_definitions/unexpected_docstring_before_a_method/meta_model.py,sha256=kK-VMcdebZUDy97laVLcs-V4GJMz8r8fi1Hoe5TNfqo,196
|
|
368
|
+
dev/test_data/parse/unexpected/class_definitions/unexpected_docstring_for_a_pass/meta_model.py,sha256=WRXjtk0rSQaf6mJXXRgpxJOfxJ0JuAR6kIfaj1G9C20,155
|
|
369
|
+
dev/test_data/parse/unexpected/class_definitions/unexpected_double_description_for_a_property/meta_model.py,sha256=OmIFesci9smBnepbH5Xi3G56bUzuvo2HDvkfRlHeuTQ,193
|
|
370
|
+
dev/test_data/parse/unexpected/class_inheritances/inheriting_from_implementation_specific_parent/meta_model.py,sha256=Loqlm68K3yy4MoUGmYSkXUaOdCV9gQ0LyN1jcPe6jC4,469
|
|
371
|
+
dev/test_data/parse/unexpected/class_inheritances/non_name_super_class/meta_model.py,sha256=pgcQy6_AT320e6xokeIoIROMt5STNyyvwYhpyaN5whA,118
|
|
372
|
+
dev/test_data/parse/unexpected/enum/expression_as_assignment_value/meta_model.py,sha256=P2bFsTIv9-E7mTOY6yyqEcTgkVdM5rYXNedAZsPEDu4,117
|
|
373
|
+
dev/test_data/parse/unexpected/enum/non_assignment/meta_model.py,sha256=As_lgvclrZPGTfDIfow_iameT7RwUKNJZP1JGpyVw0o,137
|
|
374
|
+
dev/test_data/parse/unexpected/enum/non_string_literal/meta_model.py,sha256=28SVxqORta0mv2ioAH3D9WUoyOLSaplhLRe_dXfkDSE,108
|
|
375
|
+
dev/test_data/parse/unexpected/enum/unexpected_inheritance/meta_model.py,sha256=gNfMoVpLav-LFhWLTzfSonVVQU4wjvl4SnVOzhy1FYc,141
|
|
376
|
+
dev/test_data/parse/unexpected/method_contracts/contract/non_lambda_condition/meta_model.py,sha256=6A89FjSaZdGMhEIVIUxGEJkygS6MlIi1cbsc7Yp0R50,175
|
|
377
|
+
dev/test_data/parse/unexpected/method_contracts/contract/non_string_literal_description/meta_model.py,sha256=xrDfxYvpm41hQUKx4Shvjq-F4rPD8IQegbbKAVgIMN0,182
|
|
378
|
+
dev/test_data/parse/unexpected/method_contracts/contract/without_any_arguments/meta_model.py,sha256=qLNyW5u37sHGCD0lCRQgfhRC2ig79qDkxEI3VBqGynk,152
|
|
379
|
+
dev/test_data/parse/unexpected/method_contracts/contract/without_condition/meta_model.py,sha256=E1VQ8hE8c9aHYhV3JEhmUfeTvmDE_Asl-aBRVGnhEGc,179
|
|
380
|
+
dev/test_data/parse/unexpected/method_contracts/postcondition/OLD_in_postcondition_without_snapshot/meta_model.py,sha256=NgG5FARMy0sIms54UjhQq3SfW5rDgPu5m43dfhGbxDQ,187
|
|
381
|
+
dev/test_data/parse/unexpected/method_contracts/postcondition/argument_missing_in_function/meta_model.py,sha256=aIKYjiouh1PclNX2BIcp782QBGmPn0oQjeAjDuZ3Ucw,166
|
|
382
|
+
dev/test_data/parse/unexpected/method_contracts/precondition/argument_missing_in_function/meta_model.py,sha256=Fgm15TXIXh9bGmL6vOdlHurLqeZD-lYVtvvO6UUAX5w,167
|
|
383
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/argument_missing_in_function/meta_model.py,sha256=PjD8uO6GnmTTN4Mko8xGCqir1wFMlLZWopOX5ihr7G8,168
|
|
384
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/capture_not_a_lambda/meta_model.py,sha256=ph8oxy3_WmFvggeIIjwA1CEw1mF1VJSgrddrzlz8OR8,182
|
|
385
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/invalid_name/meta_model.py,sha256=QUu_gM_u6YJc_vTxCZiwip3M5gqWdPBxFJJ8VQa3DRc,203
|
|
386
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/name_not_a_string_literal/meta_model.py,sha256=AauDLr3rZ1PZCSCzWiPtGyKc_RtzWsEK2xi9PUMd33M,203
|
|
387
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/without_a_capture/meta_model.py,sha256=nFyraiM-AXFsyoX0Vs8sPqQRY6WG_1d7K0H4a82uXw0,153
|
|
388
|
+
dev/test_data/parse/unexpected/method_contracts/snapshot/without_a_name/meta_model.py,sha256=QqQzjxaRTuaD5K7tWRVDyoV4fliXJK4vJ8VlOp_ZcBk,183
|
|
389
|
+
dev/test_data/parse/unexpected/method_decorators/non_mutating/non_mutating_constructor/meta_model.py,sha256=qX-w3q47vgqG7svas7P3-LHF8kfOApZhvK5i9KxBRl4,144
|
|
390
|
+
dev/test_data/parse/unexpected/method_decorators/non_mutating/non_mutating_verification_function/meta_model.py,sha256=ebb6pyoUKcziZLt3h2pkXiqOuD-dW7akJQ1NG9q0H1w,147
|
|
391
|
+
dev/test_data/parse/unexpected/method_decorators/non_name_decorator/meta_model.py,sha256=-gDzNi6FSQXU4JlNBPeCj66VWiO7gexAuS7N0t-cM4A,158
|
|
392
|
+
dev/test_data/parse/unexpected/method_decorators/unknown_call_decorator/meta_model.py,sha256=Mw2Wv54o9AOkFRi3R3NRFl2ANdlblI7AdrHSf9HIpaI,173
|
|
393
|
+
dev/test_data/parse/unexpected/method_decorators/unknown_name_decorator/meta_model.py,sha256=LM-zghK1hzCQaV-ljJXtDaawq95RuFPPjU8UkFo9rGk,149
|
|
394
|
+
dev/test_data/parse/unexpected/method_definitions/argument_with_final/meta_model.py,sha256=u3l-5czba8IxD1wnBAQj8PKnyde9I3COdn247d0CCzU,151
|
|
395
|
+
dev/test_data/parse/unexpected/method_definitions/argument_without_a_type_annotation/meta_model.py,sha256=uPgcQVUdtNpj9i0-OknAvOkRrV5F-VJG4mlwOtsdJgI,133
|
|
396
|
+
dev/test_data/parse/unexpected/method_definitions/default_for_self/meta_model.py,sha256=HSgBeRjbLJQLy61eYWN1NLp1Hp3KRKbj25JoSha6ad0,136
|
|
397
|
+
dev/test_data/parse/unexpected/method_definitions/dunder/meta_model.py,sha256=1RomfwRB3epGxWESnBJfrXhGrTbNMI3gPyq5Ioc91iQ,139
|
|
398
|
+
dev/test_data/parse/unexpected/method_definitions/init_with_return_type/meta_model.py,sha256=7jVTqpQJH1-OZDmUYW79XUL-nEBtyGW1Q1T2WXHWdHs,137
|
|
399
|
+
dev/test_data/parse/unexpected/method_definitions/with_keyword_only_arguments/meta_model.py,sha256=qtY7Kn5vQc3VrQvziCK4hOXTAPNyU-zKZ530YpA64aI,141
|
|
400
|
+
dev/test_data/parse/unexpected/method_definitions/with_positional_arguments/meta_model.py,sha256=OzFMk-YlgLLlTbXGPDUit_yD7BLn-SwWO1uuYu8oG_4,141
|
|
401
|
+
dev/test_data/parse/unexpected/method_definitions/with_type_annotation_for_self/meta_model.py,sha256=KqBQyzqCJIE6gRqYEu76QtSEt6UbVyvKlZz42JSbgHc,143
|
|
402
|
+
dev/test_data/parse/unexpected/method_definitions/with_variable_arguments/meta_model.py,sha256=08QwJv7bovnaE5znYP5bndVL448HTBQ-MxKZcTl-Q_s,154
|
|
403
|
+
dev/test_data/parse/unexpected/method_definitions/with_variable_keyword_arguments/meta_model.py,sha256=hZeG0iat-rbskngyK-QlA9QnOL0WJ1W9K4b6cJwnxPY,158
|
|
404
|
+
dev/test_data/parse/unexpected/method_definitions/without_arguments/meta_model.py,sha256=L39pEmhv3F2PBKCXWJmV8GzL29FC3GihQs9h1qNTX6M,126
|
|
405
|
+
dev/test_data/parse/unexpected/method_definitions/without_self/meta_model.py,sha256=THTEblZsVbubWz7GJDE6cn_bmpB6r--Bqy4WL7kP394,132
|
|
406
|
+
dev/test_data/parse/unexpected/method_definitions/without_type_annotation_for_result/meta_model.py,sha256=sqFSYDhcTzRp_GJi-AVvuFHwUzmkoZY1p-sZYRB9Oq0,130
|
|
407
|
+
dev/test_data/parse/unexpected/property_definitions/final_without_subscript/meta_model.py,sha256=0kASdtLZUum0YMsHKDsmuxoVmOWblvEB10DTx294Wr8,94
|
|
408
|
+
dev/test_data/parse/unexpected/property_definitions/nested_final/meta_model.py,sha256=04r1tsAukTe38Tmhs9SDhkZ8gjva5vnZa7QvAq8NC98,124
|
|
409
|
+
dev/test_data/parse/unexpected/property_definitions/non_simple/meta_model.py,sha256=1Baoubbdl0VItutdqECkDl1YPi7XqbgoYWiZxgx3eEY,106
|
|
410
|
+
dev/test_data/parse/unexpected/property_definitions/unexpected_assignment/meta_model.py,sha256=U4NqhPtJpK61IHDVVTjLGaQDMeuFPNMzE4pOJ1vbBQw,129
|
|
411
|
+
dev/test_data/parse/unexpected/property_definitions/unexpected_non_name_property/meta_model.py,sha256=nH6j-3_4qcmY6BJmcnGy575z2rGhoz6qdZSagjUSJAc,108
|
|
412
|
+
dev/test_data/parse/unexpected/property_definitions/without_type_annotation/meta_model.py,sha256=OzZOo_0Vnbwt9-6__Y3L2qtqKgKXATW9RExZO5C8z9M,103
|
|
413
|
+
dev/test_data/parse/unexpected/symbol_table/constant_set_with_a_non_set_subset/meta_model.py,sha256=5nzI_Eo3247XusozTjzSyTv8TXkuOg7aXdTbw2sHL0I,184
|
|
414
|
+
dev/test_data/parse/unexpected/symbol_table/dangling_inheritance/meta_model.py,sha256=YpIqKx7l7zoz8F8XWa3xaMRU6CGeGd87JTwy3ZWv4fk,100
|
|
415
|
+
dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_a_property/meta_model.py,sha256=OnZFM9WzyeAeR4t0ixSKOptv_3IwHv-D0ocdgnSr428,97
|
|
416
|
+
dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_an_argument/meta_model.py,sha256=205qXQMfujpPi41adcVq-6U2ujKrU4cszaGjoQT0afU,143
|
|
417
|
+
dev/test_data/parse/unexpected/symbol_table/dangling_reference_in_type_annotation_of_constant_set/meta_model.py,sha256=UzVeEuxJoGlRD_A2pO1GLBXNsjKib7eAaihdC3aiaEE,133
|
|
418
|
+
dev/test_data/parse/unexpected/symbol_table/dangling_subset_in_constant_set/meta_model.py,sha256=5NsXzcM-YOxHGJ8XPnt8_ZG3TGGem48NKGEQakUmPhs,136
|
|
419
|
+
dev/test_data/parse/unexpected/symbol_table/inheritance_from_non_class/meta_model.py,sha256=lHsrAIIJlI4QTK8-Lxa1ixe6wwq_SqFjmR0xyNf1iU8,160
|
|
420
|
+
dev/test_data/parse_retree/expected/character_set/common_escaping/source.py,sha256=T0O7lJvvFHITAcI0l1wWY3J59AqRSzi52drc8Bf6onQ,44
|
|
421
|
+
dev/test_data/parse_retree/expected/character_set/complementing/double_caret/source.py,sha256=AIm3hwZOXvyRXGCaGM-RbDy-yjBssoDV39gwvi3kjH0,7
|
|
422
|
+
dev/test_data/parse_retree/expected/character_set/complementing/multiple_ranges/source.py,sha256=oDRrjVwnTByjw1TeR6UhER70dR_R2j5UXyY14VcJY6M,17
|
|
423
|
+
dev/test_data/parse_retree/expected/character_set/complementing/suffix_dash/source.py,sha256=pUMcKhjoKDKaOn0A0c1-rVTEQKnknqJK4SyG4m65XNk,10
|
|
424
|
+
dev/test_data/parse_retree/expected/character_set/escape_first_caret/source.py,sha256=N00HeKiZ1R5SPGguBJuUV6mo8PJ810qzXqeeKzSXp8k,8
|
|
425
|
+
dev/test_data/parse_retree/expected/character_set/literals_which_need_no_escaping_in_characters_set_but_need_escaping_outside/source.py,sha256=VCpFrASp60QdpeEW-mzl5S2pEAZ4VB-oSAFUCQGlZiA,11
|
|
426
|
+
dev/test_data/parse_retree/expected/character_set/multiple_ranges/source.py,sha256=NulL-qS7ajKGUCGu7qItL9knfJwvKmK409cIld4k3Q0,15
|
|
427
|
+
dev/test_data/parse_retree/expected/character_set/single_literal/source.py,sha256=0GnjrK20EeISB3i8CCpG3EKYyqGy-bUX5OYo1DcJ764,6
|
|
428
|
+
dev/test_data/parse_retree/expected/character_set/single_range/source.py,sha256=6YHVWpKUSKBnznzz9cDgg5ZjNHVVMaTdemaSTq2LwB0,8
|
|
429
|
+
dev/test_data/parse_retree/expected/character_set/unescaped_dash/only_dash/source.py,sha256=a8-UyEwJVB_q75HhrzC6Hm9XginYHsjpKF2qaSvOm1U,6
|
|
430
|
+
dev/test_data/parse_retree/expected/character_set/unescaped_dash/prefix_dash/source.py,sha256=geEHfiNi_GBDmRTb6vxr9lpv4J9myxDvI2C3V6_DjZM,9
|
|
431
|
+
dev/test_data/parse_retree/expected/character_set/unescaped_dash/suffix_dash/source.py,sha256=OnZ2x-cTJ4k-MnVEy0_iyfL84qLLRNcNb8IyssQnUww,7
|
|
432
|
+
dev/test_data/parse_retree/expected/dot/source.py,sha256=Fz-MU4i2gyJTEOUzSNqvt-7bUsMy33hB7hHaMyLca4o,4
|
|
433
|
+
dev/test_data/parse_retree/expected/empty/group/source.py,sha256=DwRzRXGebQJbSZGD_wbQgI81hc_n8QfVYw6104mx1k0,5
|
|
434
|
+
dev/test_data/parse_retree/expected/empty/group_in_a_group/source.py,sha256=Hs8raaYRS-MrAdqksptvzzAguUr8R6gbjsIYEYrfCEI,7
|
|
435
|
+
dev/test_data/parse_retree/expected/empty/group_of_union_of_empty_concatenations/source.py,sha256=oxQnrEJiFpVvt5Gh2pZpnwLAwSInCCmHh5gt6dcz57k,6
|
|
436
|
+
dev/test_data/parse_retree/expected/empty/regex/source.py,sha256=vYW8241OYTp5y2LQkDlGrRDIPmPcdfZ2FMFZwNv00YQ,3
|
|
437
|
+
dev/test_data/parse_retree/expected/empty/union_of_empty_concatenations/source.py,sha256=savDNGyWAaDK9VvxHjAjV96dlQ6fvOs9vBcCb3hcqe8,4
|
|
438
|
+
dev/test_data/parse_retree/expected/escaped_literals/source.py,sha256=bwQ5UBnVa9TpUkcMHPV7kX1jia5xmUioyVjkJQV5vv0,77
|
|
439
|
+
dev/test_data/parse_retree/expected/formatted_value/at_the_beginning/source.py,sha256=-H5ihVlGLpe5x6Tie9pfa0jEhPu83zfKF0sHUC18Ono,9
|
|
440
|
+
dev/test_data/parse_retree/expected/formatted_value/at_the_end/source.py,sha256=PZQSnHTeq1R4XCvQ_4XBjTzbYKR_J_eCc00QkMjx8xI,9
|
|
441
|
+
dev/test_data/parse_retree/expected/formatted_value/in_the_middle/source.py,sha256=20GSk6J0U5nDO2r4kT3tGmy-DDMh2YmwgUA9MyGcrq8,9
|
|
442
|
+
dev/test_data/parse_retree/expected/formatted_value/single_formatted_value/source.py,sha256=Epb73f0ajyM363dn0cjCK45GLt7TERvNA82HXMPljTw,7
|
|
443
|
+
dev/test_data/parse_retree/expected/literal/source.py,sha256=7hldsM0Ul57OkuSsQtkf74fR7iVPjfFwkHzWdNqxLUQ,4
|
|
444
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/at_least_3/source.py,sha256=WXwFwzf4-NeqUHfCp78MjFzq_0dGH02W7sDScBBZ2qg,17
|
|
445
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/at_least_one/source.py,sha256=T6AaD6BjMYXGHMaZUdckp055ZXMLgOdPHldoF1O_4RM,5
|
|
446
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/at_most_3/source.py,sha256=M3G0PV5tSEoyFBr31sTWwGQTUlwu7kuPGDYHJNxcHx8,17
|
|
447
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/exactly_3/source.py,sha256=V_vIP4TgWRUEyskhjqKTL4aFnzmZ0Fe-IuP-U_57odE,13
|
|
448
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/maybe/source.py,sha256=sL66WZn8RxnCQrvyB4C4zCc6zzj5hCF0S-bkG-W3atk,5
|
|
449
|
+
dev/test_data/parse_retree/expected/quantifier/greedy/zero_or_more/source.py,sha256=tPY3KjPkkkgF7IFSpw4tSAMGtRU1XsCLQtzjF7Kgy1I,5
|
|
450
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/at_least_3/source.py,sha256=VB9RiuQOoGAXNhcg5WOiQOZsc8SzD8M_LiDhw_3hiKA,18
|
|
451
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/at_least_one/source.py,sha256=WWCg5M90GGGvDIvYj-O5QkI6inmxvs8gEDrOVe8G7Jc,6
|
|
452
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/at_most_3/source.py,sha256=jggkNA8FLmoNJpRAfcVRCv9k5ewfTxQZKMYORdL-tag,18
|
|
453
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/exactly_3/source.py,sha256=523QkI-_TOIcOvgITNsCGu5BiQc3k6IK3CUz3PmCJ5I,14
|
|
454
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/maybe/source.py,sha256=CaW_zFp1OVidDdE-fcxaA5wSe_NCQ6nw8Cnk6tYUlzE,6
|
|
455
|
+
dev/test_data/parse_retree/expected/quantifier/non_greedy/zero_or_more/source.py,sha256=w3Cb1u9gdkrZW8crrWqrnSRd-BvgQ_CA7FoAVFEZk_8,6
|
|
456
|
+
dev/test_data/parse_retree/expected/quantifier/on_a_character_set/source.py,sha256=4HojRg8RNTHqaOAltTd7kw9sWuKIJyFqkH9Orfp_E6M,9
|
|
457
|
+
dev/test_data/parse_retree/expected/quantifier/on_a_formatted_value/source.py,sha256=9Aq4U9-yVALD3pshRJbs-yxAbA6I2m2g26zpEE87CKU,8
|
|
458
|
+
dev/test_data/parse_retree/expected/quantifier/on_a_group/source.py,sha256=-swDbTbo0It7PzHbK4YP9xul5RGgR-BMCfujIkLRIHE,7
|
|
459
|
+
dev/test_data/parse_retree/expected/quantifier/on_a_literal/source.py,sha256=tPY3KjPkkkgF7IFSpw4tSAMGtRU1XsCLQtzjF7Kgy1I,5
|
|
460
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/double_end_symbol/source.py,sha256=Wygqy0FA4EywFvoHIRQKDXk_8JjG4R5yXbGMv5FUMlM,5
|
|
461
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/double_start_symbol/source.py,sha256=FwUyfhpEcyeBrh7_QVGOyTkn4dsFo0tzaj9kTB73Jnk,5
|
|
462
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/end_symbol_in_the_middle/source.py,sha256=kJSntzzX0ZHDvKRF4Y4XqPZzVJIm87WwaK03EC0k-MU,6
|
|
463
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/only_start_symbol/source.py,sha256=6UVi_ql6zGGX8fXmzDHxVHNUyIFKJ_E8W7cuuSrBc0g,4
|
|
464
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/only_stop_symbol/source.py,sha256=YGqjO_v4HEFuy_WkSpSwMkXONHyhk4mr5MQ8ighvVws,4
|
|
465
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/start_symbol_at_the_beginning/source.py,sha256=jCvWamckfxKbLHyjyFJbtZISijBu5Grv5TlYsKjCz-U,5
|
|
466
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/start_symbol_in_the_middle/source.py,sha256=OFSfmM4A-cgjycTawQ1n0083DiwExlH009GSV_MiNdQ,6
|
|
467
|
+
dev/test_data/parse_retree/expected/start_and_stop_symbols/stop_symbol_at_the_end/source.py,sha256=pAUtgIolmINlX4wY-Jx_azxpJJf2bEvghaqjRrdrntk,5
|
|
468
|
+
dev/test_data/parse_retree/expected/union/of_character_sets/source.py,sha256=5dp_pi0cMCbPzT6GqEjbn3hP4n3KH17VkybPtIk87PM,14
|
|
469
|
+
dev/test_data/parse_retree/expected/union/of_groups/source.py,sha256=wql2TcFGvBatwAGynvxfILAcMIDXsbhVGR7sSOhgwco,10
|
|
470
|
+
dev/test_data/parse_retree/expected/union/of_string_literals/source.py,sha256=MJbdBo9Uv-GSn7DKWEb_c4lu36rEC0jYiCEpqX-0iZ0,6
|
|
471
|
+
dev/test_data/parse_retree/expected/union/within_group/source.py,sha256=A8U9C3aQeX9rgQ92ck7BAonAOr9D8HLyZbTi2gSTbBQ,8
|
|
472
|
+
dev/test_data/parse_retree/expected/whitespace/source.py,sha256=8rLTOnfRCTSyjTuz1pTE0IsevIAuZcHPRAhXlM8N05w,4
|
|
473
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/Uxxxxxxxx_out_of_range/source.py,sha256=-hhBV0X2OGGwc0PVOw3QERg60DpnkSqCED4SG1OFB-I,14
|
|
474
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/only_backslash/source.py,sha256=VHXHq5IN8rFElPUIIiDyIzeaZrFyoo-44AUeEJvf4rs,6
|
|
475
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_Uxxxxxxxx/source.py,sha256=hYL6SY61xUl3RU_pMTXeZazYZ_6zM63i1GMyZ8stFuQ,11
|
|
476
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_uxxxx/source.py,sha256=zewbTjiC8DdPIBiQcTP0vqO4MsOPy3X5mER2iWlojto,9
|
|
477
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/short_x/source.py,sha256=bKhfKwSQqiFYMBoY8ek0DS9qpQbikWETmcQI1HDMfm4,7
|
|
478
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unexpected_escaping/source.py,sha256=xhlRfnm0h79dIWUxgAq0OgunUaOrCT0t1xQAZLVyMvE,6
|
|
479
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/digit/source.py,sha256=lrhAgqMslSSUzjTBJSIgzVNREks3pKe1_F7APep957w,6
|
|
480
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_digit/source.py,sha256=OK82yRJGu1rHqGKRHVXAC4YYWz9CFlCVYhjvcpvoMlY,6
|
|
481
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_whitespace/source.py,sha256=pAiEAU9iSmxAD1uMiZHznT_1ErIA2ybRJJ-XUK1uqSk,6
|
|
482
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/not_word/source.py,sha256=TvGeW6ZiybgT_R9Vt0NFydrHjmevSQs7iKyUrIfBLlQ,6
|
|
483
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/whitespace/source.py,sha256=C0YsHMv81kNfuXHGOJNYqaKouEIc8-3LaLSqQYhvpw4,6
|
|
484
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/character_literal/unhandled/word/source.py,sha256=Jk_t8QfocdV4b2W3HDVB6k2dHJYBThuqT0UclLnj3HM,6
|
|
485
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/Uxxxxxxxx_out_of_range/source.py,sha256=l4VG1Z8KAq9MRT-1PA9IpOZXOxi-Y2ngtQavsIyz6Ik,16
|
|
486
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/only_backslash/source.py,sha256=6upED7m0SML-t53V0XMYCmi2th82Mn1FH1Eh_Arrn58,8
|
|
487
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_Uxxxxxxxx/source.py,sha256=NzE_w7JadnbxuNFxDtlVnefSxMfXoOTkkMu-72mQpt4,13
|
|
488
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_uxxxx/source.py,sha256=la45CpiUIkJyKilwBqnlX0e5kzWgH4E5lJaeU5ktT6E,11
|
|
489
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/short_x/source.py,sha256=h4G0eGswQviGA7ZrB-4yh5rl4qgdI9NAM6wBUB_OiZw,9
|
|
490
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unexpected_escaping/source.py,sha256=SmqR_RfOia68DV1ZN3gMw8fAWTG5I1StbWvIABTw1dQ,8
|
|
491
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/digit/source.py,sha256=VFPkVewSwU-PgKSXddcGK59gasOdEm7Wmdf-rhhjifI,8
|
|
492
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_digit/source.py,sha256=BWAgSCD5wj-prrl7xtwiLO6Epok5264VoA4BzcS3mWY,8
|
|
493
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_whitespace/source.py,sha256=vDv0kbG0P_ispF2l28lXZ3KZ4Mkpj5FrcyILhG9toXM,8
|
|
494
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/not_word/source.py,sha256=7khVuzdYzya4QB8HjN1FjBWZ1TvIvH-QryAPCJvaBVY,8
|
|
495
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/whitespace/source.py,sha256=gaSbI1DUyUwQy-E1k-fVOnTSqwTHzcen6UKK2-9_eNw,8
|
|
496
|
+
dev/test_data/parse_retree/unexpected/improper_escaping/range_character/unhandled/word/source.py,sha256=M832cQ4GMierM2WbNAkrNbHQDJCAJNlRjlMfzfS1X0s,8
|
|
497
|
+
dev/test_data/parse_retree/unexpected/invalid_character_range/source.py,sha256=Hz1EIJCWwst57jJzvhqRM5SsfklV-m28B1MNjE_6vXA,8
|
|
498
|
+
dev/test_data/parse_retree/unexpected/invalid_quantifier/at_least_x/source.py,sha256=RTW2F3V32CmsN97xVq9vnwmhjFRlvJ5ZJDLeHd-TgXo,8
|
|
499
|
+
dev/test_data/parse_retree/unexpected/invalid_quantifier/between_3_and_x/source.py,sha256=RBoSdkQBVsZL6G3hMZrueq_zbyBiqmWLNnI_04lwBrI,9
|
|
500
|
+
dev/test_data/parse_retree/unexpected/invalid_quantifier/exactly_x/source.py,sha256=3kWXudTBwQCpsqzNXTAdXAKNpZE3bV7o-q_nQJOOUlE,7
|
|
501
|
+
dev/test_data/parse_retree/unexpected/unhandled_group_directives/source.py,sha256=fydDOyOEuVrJcizKMx7JYjj2sTIoG2A_hTZmLaJgl8Q,10
|
|
502
|
+
dev/test_data/parse_retree/unexpected/unterminated/character_set/source.py,sha256=33ElO8AszKfZTd7rnstenfzrMTcOghLrGg8H6dmM3yc,7
|
|
503
|
+
dev/test_data/parse_retree/unexpected/unterminated/group/source.py,sha256=C4EeDVhdAbjOAgYXygbx8AlhhTqF0roP9OB-XjjY8aw,13
|
|
504
|
+
dev/test_data/parse_retree/unexpected/unterminated/group_of_union_of_empty_concatenations/source.py,sha256=Vyr6oah8XhMO1t9usXdjvHIh3sziB1nRDtUWbbgaoxU,5
|
|
505
|
+
dev/test_data/parse_retree/unexpected/unterminated/quantifier/source.py,sha256=8-Jas9GqmF4rWz1M_Unlu1Rk7f_SEOZqXaYfM00rTRg,6
|
|
506
|
+
dev/test_data/parse_retree/unexpected/unterminated/quantifier_with_comma/source.py,sha256=hZjEaSJrVdkCEMZ06_dUIP7eBkteJ5ro7rsukcA19ag,6
|
|
507
|
+
dev/test_data/parse_retree/unexpected/unterminated/quantifier_with_number_and_comma/source.py,sha256=olULgVoj8Ks6VTZrilZ9VjvSPg0vc-fzBLosfy2z8UY,7
|
|
508
|
+
dev/test_data/proto/test_main/expected/abstract_and_concrete_classes/meta_model.py,sha256=8Oo7jnqSP55EWLxO77sGoPtJ4TrVNJbZZxb-wPGgNas,888
|
|
509
|
+
dev/test_data/proto/test_main/expected/concrete_class_with_descendants/meta_model.py,sha256=XhVvn-mHaozJFVW_hKLdbnOL_VDGdcb5_ljKWb-xbI8,702
|
|
510
|
+
dev/test_data/proto/test_main/expected/concrete_class_with_enum/meta_model.py,sha256=FSISTYEIIzFJDBF8bYcC7CEd-n8kX2zMed_96HNyF_0,518
|
|
511
|
+
dev/test_data/proto/test_main/expected/concrete_class_with_list_of_instances/meta_model.py,sha256=x9z6NEC7ml-Ba0WqQzOPLG7TB2UlTdj3HI-iNcb4tLs,444
|
|
512
|
+
dev/test_data/proto/test_main/expected/concrete_class_with_primitive_attributes/meta_model.py,sha256=rddDIhEte5tRjU7elQzLx2M4SAOeZEEFS7xFATHGiLQ,1305
|
|
513
|
+
dev/test_data/python_protobuf/test_main/abstract_and_concrete_classes/meta_model.py,sha256=8Oo7jnqSP55EWLxO77sGoPtJ4TrVNJbZZxb-wPGgNas,888
|
|
514
|
+
dev/test_data/python_protobuf/test_main/abstract_and_concrete_classes/expected_output/pbization.py,sha256=_vBQrn3VslMMPkZPrJRR85Tf8NUJQfAcW3CBJERXJOk,14068
|
|
515
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_descendant/meta_model.py,sha256=jsVdat6d3VCTZ3PpKD_MkGap18uCiCVdTrOEdx9X-yQ,613
|
|
516
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_descendant/expected_output/pbization.py,sha256=g2uFhVPolfagCxMtZW_f54fPuiCPUTtIszK2Gy1Msf0,13536
|
|
517
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_enum/meta_model.py,sha256=_ryAN9338J1paPC0Ike2wOiimMge72-in7HxDQKEvbY,517
|
|
518
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_enum/expected_output/pbization.py,sha256=168m5IoGobNdIzqTKcCG2E2jryvVdTiGLjWXDS2NwYE,7487
|
|
519
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_list_of_instances/meta_model.py,sha256=5NCYNHI0Ni9lOBM6X2ptOLmDG8RYAe6OHh5ZCyiWjGk,472
|
|
520
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_list_of_instances/expected_output/pbization.py,sha256=OSDKdl0HK13Smxd8Vn7e5gCggC9n_u_m80PhAa462Qw,7979
|
|
521
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_primitive_attributes/meta_model.py,sha256=Z5U8qtW0_XiT-_lvmEX4_qulgNS-ocbLN3iBOtwRC6k,1304
|
|
522
|
+
dev/test_data/python_protobuf/test_main/concrete_class_with_primitive_attributes/expected_output/pbization.py,sha256=-OPF4Gx30fYMJhsQBWWe8bh3Tv2IiIfP55jOtT_406M,7162
|
|
523
|
+
dev/test_data/rdf_shacl/test_main/expected/regression_when_lang_string_class_is_missing/meta_model.py,sha256=pj78ab4OiZ2q6XQTIKTUhg920balQ1ALjfFstbt4XA8,756
|
|
524
|
+
dev/test_data/rdf_shacl/test_main/expected/regression_when_len_constraints_on_inherited_property/meta_model.py,sha256=BxnmVSZ68_cV0yTn0fyISnPLSTxTvkVc4ULIPckEk04,660
|
|
525
|
+
dev/test_data/rdf_shacl/test_main/unexpected/regression_len_constraint_on_class_property/meta_model.py,sha256=aMRGUsRcYt2J7isEXwcxYd4LCcoho7VYCipLbLLgyus,1591
|
|
526
|
+
dev/test_data/real_meta_models/aas_core_meta.v3.py,sha256=JZKi9RczQd0EcXvgSvNzGPCMrIFEuMw51LElfEoqehI,181596
|
|
527
|
+
dev/test_data/smoke/test_main/unexpected/infer_for_schema_error/meta_model.py,sha256=W09ypnw1FUQY4jjjHj56KOQmXwdtmofdJKcai08JtZU,322
|
|
528
|
+
dev/test_data/smoke/test_main/unexpected/intermediate_error/meta_model.py,sha256=34gm9HjD4kScUn_y-V8WW6qvfF1oCtVy0HA3D6MNuUY,314
|
|
529
|
+
dev/test_data/smoke/test_main/unexpected/parse_error/meta_model.py,sha256=Hj0yZnt6ffVDTwBU_UWODg2n8kJ5Lob6vf3IF7s05bQ,67
|
|
530
|
+
dev/test_data/smoke/test_main/unexpected/pattern_verification_unparsable_regex/direct_match/meta_model.py,sha256=OSpA0zxVc4I8PtXHI-NPyUUDrkDO9z-hRhxYKJGs_oc,193
|
|
531
|
+
dev/test_data/smoke/test_main/unexpected/type_error/meta_model.py,sha256=wvf6bLVxaiCjJgwwbeor8RYX9NaOtLPKCL-qosOjFBw,385
|
|
532
|
+
dev/tests/__init__.py,sha256=Sp0ZvMnGU4SCW1TkgjFYHRS8enGVSRWWf5Qizvbj7FM,85
|
|
533
|
+
dev/tests/common.py,sha256=xNS2prpnFeEBjRfuW0g5m2x1dzr6QESG18jPV-IA_Vo,6593
|
|
534
|
+
dev/tests/description.py,sha256=eHrnbAyrnnWonOU7SxdUNOi8Qq-oA6RuR69UuMmRsPs,829
|
|
535
|
+
dev/tests/test_common.py,sha256=VK5oTFx7Sp8fgty4ltQAMMrgy0shW5csmOlFzUbhwrE,3963
|
|
536
|
+
dev/tests/cpp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
537
|
+
dev/tests/cpp/test_common.py,sha256=pqoSQKdzSAN-RQrpjUNe-DE2yJW-DwRWqrOFRpcSig4,827
|
|
538
|
+
dev/tests/cpp/test_main.py,sha256=8vDXC2PooVatGiiJTPzi_oNdfhN6vwDqtYyG5ZyewkI,5721
|
|
539
|
+
dev/tests/cpp/test_pattern.py,sha256=GbLO8_z1SHF50kRGceei8qnWS5IQ5nRamyBVIgnkd_g,4881
|
|
540
|
+
dev/tests/cpp/test_verification.py,sha256=arN2N5Zh2-G0En7wj1PulJZ3xr1-d00Se_rL2nmym6o,5661
|
|
541
|
+
dev/tests/cpp/test_yielding.py,sha256=ToxerJX6YWYkXbL20hSQcM8mLW2M4PqIZ5vhuBygruw,5833
|
|
542
|
+
dev/tests/csharp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
543
|
+
dev/tests/csharp/live_test_main.py,sha256=3V00-rwNPoEbPH8Lmhyei1G_6PB_tQzF9WV4rjvb-WI,3568
|
|
544
|
+
dev/tests/csharp/test_common.py,sha256=ycaejJ3iWALFMr5BImzUen1tJAVQFmiOliDPn9zlpMY,843
|
|
545
|
+
dev/tests/csharp/test_description.py,sha256=W7qY-4QVMhY95teMm7PoxXAAlFrcayzDrJnrg_K1SWE,18645
|
|
546
|
+
dev/tests/csharp/test_main.py,sha256=FbaX7--g2MaiJFXSZD_08bDq_c2zt8dvhzH2clG7sis,4947
|
|
547
|
+
dev/tests/csharp/test_structure.py,sha256=MD9Q6PRFshBL18HjxS4K9xWludCh4Yscu4UDNpJ41Hk,3556
|
|
548
|
+
dev/tests/csharp/test_verification.py,sha256=mhZjy9EEd7ZaJaoReKOsOnjDTRi3oDR5EhaHQXohXZg,3062
|
|
549
|
+
dev/tests/golang/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
|
+
dev/tests/golang/test_common.py,sha256=LTTkBniDdI5aRNg4lRHFSjKx0GyTAaQlNpHCeTqXlzI,2207
|
|
551
|
+
dev/tests/golang/test_main.py,sha256=uCTerVlndN8tfH_CKugoIffySVgbKP96YvF5Pm1uSDo,4990
|
|
552
|
+
dev/tests/infer_for_schema/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
553
|
+
dev/tests/infer_for_schema/common.py,sha256=FJL-65o6BbUFYoh1Rs1ldYyAfvi_WWcHG0yqohYZXow,1636
|
|
554
|
+
dev/tests/infer_for_schema/test_len_on_properties.py,sha256=bF5zbKExaym2TfmsHilMSfJMjt2BRW7SL7mJ6wr_J-k,29820
|
|
555
|
+
dev/tests/infer_for_schema/test_len_on_self.py,sha256=_buAwXO2ODq7z0zf7jZOL87qrXcx5LAr537fEDq-5vs,17459
|
|
556
|
+
dev/tests/infer_for_schema/test_patterns_on_properties.py,sha256=rWRRbRh_hPss5CWySTnQiodlaTFJXUZvn15OE1Lmbvk,22324
|
|
557
|
+
dev/tests/infer_for_schema/test_patterns_on_self.py,sha256=6xTg-aQTQ22NtxNOu2A6tXdd-xLvjmoNq-taUmUWux8,7943
|
|
558
|
+
dev/tests/infer_for_schema/test_property_in_set_of_enumeration_literals.py,sha256=RPUQpwzzbOu_75zfb_CIUKQsRmBhIgWPvonPKGqcao8,18069
|
|
559
|
+
dev/tests/infer_for_schema/test_property_in_set_of_primitives.py,sha256=mm3oWAtk2A7PA-gqN6j8soIDg-69MMXVfkjw3eW4yjc,16235
|
|
560
|
+
dev/tests/intermediate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
561
|
+
dev/tests/intermediate/test_constructor.py,sha256=m3_AqVt6X-r6zUINmSMjxNWBdqEZow2HG09-RGizlMA,22074
|
|
562
|
+
dev/tests/intermediate/test_hierarchy.py,sha256=wdVEHWKAp9bJkj_ru7KtM8vzkuUN4SXfpOAo8ApmhMo,6951
|
|
563
|
+
dev/tests/intermediate/test_revm.py,sha256=4IvrQJtKpshrgrKy8i5AV7aYXqtbrbrAqxWZZQPaki4,5152
|
|
564
|
+
dev/tests/intermediate/test_translate.py,sha256=1mjpTu_7PdiF3QgxWianrg8Gl-bfX5AL-YixjiG59bk,12597
|
|
565
|
+
dev/tests/intermediate/test_type_inference.py,sha256=QjAwqR06R3T_BNIbbGmGzHtx5ByFNHERz67by4avBJk,11063
|
|
566
|
+
dev/tests/intermediate/test_types.py,sha256=CZeD-fg3hOcWY5MO3zNWcS7gylbzL5aXhIeuTCtc5TE,4607
|
|
567
|
+
dev/tests/java/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
568
|
+
dev/tests/java/test_common.py,sha256=KkN4UcFNcYYH5jGv31euxuhh2zNZ4yk9v_xQdTlp2NI,506
|
|
569
|
+
dev/tests/java/test_description.py,sha256=EghPTniak2cVJOGXLqz0CrtG0h0yKlw8hl0QRQZ8JRo,3655
|
|
570
|
+
dev/tests/java/test_main.py,sha256=I7j4WmUx6xnbP8-mCZ_yorzK-dnIZ9dzPlJBq70guYs,8084
|
|
571
|
+
dev/tests/jsonld_context/test_main.py,sha256=-c6vQBjVSWPbb2oNyxW7VSoPBhdnjWrNYlX2UKNQPTI,2997
|
|
572
|
+
dev/tests/opcua/__init__.py,sha256=T4W8_TZhD4XBphAD0D76VCDwoLV8rIR2bmTAKwIon8E,151
|
|
573
|
+
dev/tests/opcua/test_main.py,sha256=uzKOu1onIgRlUL-OGxAAeYY9BhWZJCrB3yjZQx4VVdM,4153
|
|
574
|
+
dev/tests/our_jsonschema/__init__.py,sha256=T4W8_TZhD4XBphAD0D76VCDwoLV8rIR2bmTAKwIon8E,151
|
|
575
|
+
dev/tests/our_jsonschema/test_main.py,sha256=OAGIlVsl1IpkyTqI0bO-lwyLxnmhEFWC9aklXU8CVUM,9089
|
|
576
|
+
dev/tests/parse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
|
+
dev/tests/parse/test_parse.py,sha256=BP7vNRlmJTeBhrEkZpB3OqmIqbNpD85S2qfeIpDp2kw,17512
|
|
578
|
+
dev/tests/parse/test_retree.py,sha256=ZWy2ByZ59hsW4TJEvw5ubZJKPjum7aUBETZ8lp-qqJE,9790
|
|
579
|
+
dev/tests/proto/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
580
|
+
dev/tests/proto/test_main.py,sha256=evh_fYfgY7X620zjHleMN9uMK1qjrYy1j6P9DY0MRGQ,4137
|
|
581
|
+
dev/tests/python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
582
|
+
dev/tests/python/test_common.py,sha256=Rdo2BMr0io_AztkHFN1ZWtOGRFc2y52UWJ_MgYJRn-Y,4101
|
|
583
|
+
dev/tests/python/test_main.py,sha256=SfS3tlChr5LuZUV6OWSOaY4giSNvzFOW4SxLX6l8XqI,4795
|
|
584
|
+
dev/tests/python/test_xml_playground.py,sha256=9QfvrtxQXJh5aEDJnEhxackn_-ynEdCFRyjRxpe0-Xk,6934
|
|
585
|
+
dev/tests/python_protobuf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
586
|
+
dev/tests/python_protobuf/test_main.py,sha256=A38nG_CLo-rIUbTsNXWKt2G1WD3JBjDy-jXSDs09PSA,4136
|
|
587
|
+
dev/tests/rdf_shacl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
588
|
+
dev/tests/rdf_shacl/test_common.py,sha256=m-3kgnr0SJ1wCFewB1M7eXwogj-HatQ39g1NYCBATmA,931
|
|
589
|
+
dev/tests/rdf_shacl/test_description.py,sha256=vmJeiLVcFxL6Ts99sGYNGmJl0eD-EQHUx4H5mjsZfko,7496
|
|
590
|
+
dev/tests/rdf_shacl/test_main.py,sha256=AKIS0ziFYuw8faKdwPWf3WJ8-7n6WN5GMwh4fE3_SRU,7331
|
|
591
|
+
dev/tests/smoke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
592
|
+
dev/tests/smoke/test_main.py,sha256=B5JwRDML0sZ0NbTnbvyllWQCbfPMGWbcdP3UZto_ghE,2788
|
|
593
|
+
dev/tests/typescript/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
594
|
+
dev/tests/typescript/test_common.py,sha256=sIIsTQMwq-iKXAUfx0iarJioDZ0yCLrU9qi8FCxzrsQ,3119
|
|
595
|
+
dev/tests/typescript/test_main.py,sha256=E_pJlDhQm_NR-56sKZVH_qmzx3_anUCgt265n1WUwgA,4752
|
|
596
|
+
dev/tests/xsd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
597
|
+
dev/tests/xsd/test_main.py,sha256=ekhnafOrTlP3sS5Zk3PAV5_QwvGbMxaF76EKEEB0gZc,8599
|
|
598
|
+
dev/tests/yielding/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
+
dev/tests/yielding/test_linear.py,sha256=gjfrVm29_NyUqR9MJ5p4vNT_qEW5LCzI5UZdsic_mEg,16682
|
|
600
|
+
aas_core_codegen-0.0.16.dist-info/METADATA,sha256=LWN_zzSkJRjiTG9wck9o5hX6tjkqtgZWvUzllHfXGqU,7263
|
|
601
|
+
aas_core_codegen-0.0.16.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
602
|
+
aas_core_codegen-0.0.16.dist-info/entry_points.txt,sha256=LxR4fYEJgMolkJKtt6jprMzraJzTwoT7l72xuWuYiLY,136
|
|
603
|
+
aas_core_codegen-0.0.16.dist-info/top_level.txt,sha256=mcn2FIS04g-O2WLn8kyLkaJHpB8mqv92D2UsB-3BIsc,21
|
|
604
|
+
aas_core_codegen-0.0.16.dist-info/RECORD,,
|