Coverage for skema/program_analysis/CAST2FN/model/cast/goto.py: 66%
58 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-04-30 17:15 +0000
1# coding: utf-8
3"""
4 SKEMA Common Abstract Syntax Tree (CAST)
6 This document outlines the structure of the CAST that will be used as a generic representation of the semantics of a program written in any language. This will be used when creating functions networks from programs using the SKEMA Program Analysis pipeline. __Generating Class Structure__ To automatically generate Python or Java models corresponding to this document, you can use [swagger-codegen](https://swagger.io/tools/swagger-codegen/). We can use this to generate client code based off of this spec that will also generate the class structure. 1. Install via the method described for your operating system [here](https://github.com/swagger-api/swagger-codegen#Prerequisites). Make sure to install a version after 3.0 that will support openapi 3. 2. Run swagger-codegen with the options in the example below. The URL references where the yaml for this documentation is stored on github. Make sure to replace CURRENT_VERSION with the correct version. To generate Java classes rather, change the `-l python` to `-l java`. Change the value to the `-o` option to the desired output location. ``` swagger-codegen generate -l python -o ./client -i https://raw.githubusercontent.com/ml4ai/automates-v2/master/docs/source/cast_v{CURRENT_VERSION}.yaml ``` 3. Once it executes, the client code will be generated at your specified location. For python, the classes will be located in `$OUTPUT_PATH/swagger_client/models/`. For java, they will be located in `$OUTPUT_PATH/src/main/java/io/swagger/client/model/` # noqa: E501
8 OpenAPI spec version: 1.2.6
10 Generated by: https://github.com/swagger-api/swagger-codegen.git
11"""
13import pprint
14import re # noqa: F401
16import six
17from skema.program_analysis.CAST2FN.model.cast.ast_node import AstNode # noqa: F401,E501
19class Goto(AstNode):
20 """NOTE: This class is auto generated by the swagger code generator program.
22 Do not edit the class manually.
23 """
24 """
25 Attributes:
26 swagger_types (dict): The key is attribute name
27 and the value is attribute type.
28 attribute_map (dict): The key is attribute name
29 and the value is json key in definition.
30 """
31 swagger_types = {
32 'label': 'str',
33 'expr': 'AstNode'
34 }
35 if hasattr(AstNode, "swagger_types"):
36 swagger_types.update(AstNode.swagger_types)
38 attribute_map = {
39 'label': 'label',
40 'expr': 'expr'
41 }
42 if hasattr(AstNode, "attribute_map"):
43 attribute_map.update(AstNode.attribute_map)
45 def __init__(self, label=None, expr=None, *args, **kwargs): # noqa: E501
46 """Goto - a model defined in Swagger""" # noqa: E501
47 self._label = None
48 self._expr = None
49 self.discriminator = None
50 if label is not None:
51 self.label = label
52 if expr is not None:
53 self.expr = expr
54 AstNode.__init__(self, *args, **kwargs)
56 @property
57 def label(self):
58 """Gets the label of this Goto. # noqa: E501
60 The name of the Label the goto jumps to. # noqa: E501
62 :return: The label of this Goto. # noqa: E501
63 :rtype: str
64 """
65 return self._label
67 @label.setter
68 def label(self, label):
69 """Sets the label of this Goto.
71 The name of the Label the goto jumps to. # noqa: E501
73 :param label: The label of this Goto. # noqa: E501
74 :type: str
75 """
77 self._label = label
79 @property
80 def expr(self):
81 """Gets the expr of this Goto. # noqa: E501
84 :return: The expr of this Goto. # noqa: E501
85 :rtype: AstNode
86 """
87 return self._expr
89 @expr.setter
90 def expr(self, expr):
91 """Sets the expr of this Goto.
94 :param expr: The expr of this Goto. # noqa: E501
95 :type: AstNode
96 """
98 self._expr = expr
100 def to_dict(self):
101 """Returns the model properties as a dict"""
102 result = {}
104 for attr, _ in six.iteritems(self.swagger_types):
105 value = getattr(self, attr)
106 if isinstance(value, list):
107 result[attr] = list(map(
108 lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
109 value
110 ))
111 elif hasattr(value, "to_dict"):
112 result[attr] = value.to_dict()
113 elif isinstance(value, dict):
114 result[attr] = dict(map(
115 lambda item: (item[0], item[1].to_dict())
116 if hasattr(item[1], "to_dict") else item,
117 value.items()
118 ))
119 else:
120 result[attr] = value
121 if issubclass(Goto, dict):
122 for key, value in self.items():
123 result[key] = value
125 return result
127 def to_str(self):
128 """Returns the string representation of the model"""
129 return pprint.pformat(self.to_dict())
131 def __repr__(self):
132 """For `print` and `pprint`"""
133 return self.to_str()
135 def __eq__(self, other):
136 """Returns true if both objects are equal"""
137 if not isinstance(other, Goto):
138 return False
140 return self.__dict__ == other.__dict__
142 def __ne__(self, other):
143 """Returns true if both objects are not equal"""
144 return not self == other