(field)
| 1928 | |
| 1929 | @staticmethod |
| 1930 | def has_value(field): |
| 1931 | assert isinstance(field, Field), repr(field) |
| 1932 | return not is_void_type(field.data_type) |
| 1933 | |
| 1934 | def field_is_optional(self, field): |
| 1935 | assert isinstance(field, Field), repr(field) |
no outgoing calls
no test coverage detected