(stone_elem)
| 1814 | |
| 1815 | @staticmethod |
| 1816 | def param_name(stone_elem): |
| 1817 | assert isinstance(stone_elem, (ApiNamespace, Field)), repr(stone_elem) |
| 1818 | if isinstance(stone_elem, UnionField): |
| 1819 | return camelcase(stone_elem.name + '_value') |
| 1820 | else: |
| 1821 | return camelcase(stone_elem.name) |
| 1822 | |
| 1823 | def stone_fq_name(self, stone_elem, containing_data_type=None): |
| 1824 | assert isinstance(stone_elem, StoneType), repr(stone_elem) |
no test coverage detected