|
| 1 | +SymbolTable( |
| 2 | + our_types=[ |
| 3 | + ConcreteClass( |
| 4 | + name='SomeContainerClass', |
| 5 | + inheritances=[], |
| 6 | + inheritance_id_set=..., |
| 7 | + ancestors=[], |
| 8 | + ancestor_id_set=..., |
| 9 | + is_implementation_specific=False, |
| 10 | + interface=None, |
| 11 | + descendant_id_set=..., |
| 12 | + descendants=[], |
| 13 | + concrete_descendant_id_set=..., |
| 14 | + concrete_descendants=[], |
| 15 | + properties=[ |
| 16 | + Property( |
| 17 | + name='x', |
| 18 | + type_annotation=ListTypeAnnotation( |
| 19 | + items=PrimitiveTypeAnnotation( |
| 20 | + a_type='STR', |
| 21 | + parsed=...), |
| 22 | + parsed=...), |
| 23 | + description=None, |
| 24 | + specified_for='Reference to ConcreteClass SomeContainerClass', |
| 25 | + parsed=...)], |
| 26 | + methods=[], |
| 27 | + constructor=Constructor( |
| 28 | + name='__init__', |
| 29 | + arguments=[ |
| 30 | + Argument( |
| 31 | + name='x', |
| 32 | + type_annotation=ListTypeAnnotation( |
| 33 | + items=PrimitiveTypeAnnotation( |
| 34 | + a_type='STR', |
| 35 | + parsed=...), |
| 36 | + parsed=...), |
| 37 | + default=None, |
| 38 | + parsed=...)], |
| 39 | + returns=None, |
| 40 | + description=None, |
| 41 | + contracts=Contracts( |
| 42 | + preconditions=[], |
| 43 | + snapshots=[], |
| 44 | + postconditions=[]), |
| 45 | + parsed=..., |
| 46 | + arguments_by_name=..., |
| 47 | + is_implementation_specific=False, |
| 48 | + statements=[ |
| 49 | + textwrap.dedent("""\ |
| 50 | + AssignArgument( |
| 51 | + name='x', |
| 52 | + argument='x', |
| 53 | + default=None)""")], |
| 54 | + inlined_statements=[ |
| 55 | + textwrap.dedent("""\ |
| 56 | + AssignArgument( |
| 57 | + name='x', |
| 58 | + argument='x', |
| 59 | + default=None)""")]), |
| 60 | + invariants=[], |
| 61 | + serialization=Serialization( |
| 62 | + with_model_type=False), |
| 63 | + description=None, |
| 64 | + parsed=..., |
| 65 | + properties_by_name=..., |
| 66 | + property_id_set=..., |
| 67 | + methods_by_name=..., |
| 68 | + method_id_set=..., |
| 69 | + invariant_id_set=...)], |
| 70 | + our_types_topologically_sorted=[ |
| 71 | + 'Reference to our type SomeContainerClass'], |
| 72 | + enumerations=[], |
| 73 | + constrained_primitives=[], |
| 74 | + classes=[ |
| 75 | + 'Reference to our type SomeContainerClass'], |
| 76 | + concrete_classes=[ |
| 77 | + 'Reference to our type SomeContainerClass'], |
| 78 | + constants=[], |
| 79 | + constants_by_name=..., |
| 80 | + verification_functions=[], |
| 81 | + verification_functions_by_name=..., |
| 82 | + meta_model=MetaModel( |
| 83 | + description=None, |
| 84 | + version='dummy', |
| 85 | + xml_namespace='https://dummy.com')) |
0 commit comments