Exemple #1
0
 def __str__(self):
     res = "BananaFile { "
     res += 'components: { '
     res += strut.dict_to_str(self.components)
     res += ' }, '
     res += 'statements: ' + self.statements_to_str()
     res += 'connections: { '
     res += str(self.connections)
     res += " } }"
     return res
Exemple #2
0
 def __str__(self):
     res = "BananaFile { "
     res += 'components: { '
     res += strut.dict_to_str(self.components)
     res += ' }, '
     res += 'statements: ' + self.statements_to_str()
     res += 'connections: { '
     res += str(self.connections)
     res += " } }"
     return res
Exemple #3
0
 def __str__(self):
     return "JsonObj< {} >".format(strut.dict_to_str(self.props))
Exemple #4
0
 def __str__(self):
     return strut.dict_to_str(self._variables)
Exemple #5
0
 def __str__(self):
     return "JsonObj< {} >".format(strut.dict_to_str(self.props))
Exemple #6
0
 def __str__(self):
     if self.strict_checking:
         return "TypeStruct < {} >".format(strut.dict_to_str(self.props))
     else:
         return "TypeObject < {} >".format(strut.dict_to_str(self.props))
 def __str__(self):
     if self.strict_checking:
         return "TypeStruct < {} >".format(strut.dict_to_str(self.props))
     else:
         return "TypeObject < {} >".format(strut.dict_to_str(self.props))
 def __str__(self):
     return strut.dict_to_str(self._variables)