(spec FieldSpec)
| 610 | } |
| 611 | |
| 612 | func fieldDeclaredNullable(spec FieldSpec) bool { |
| 613 | if spec.Type == nil { |
| 614 | return false |
| 615 | } |
| 616 | return spec.Type.Nullable |
| 617 | } |
| 618 | |
| 619 | func fieldDeclaredTrackRef(spec FieldSpec, xlang bool, defaultTrackRef bool) bool { |
| 620 | if spec.Type == nil { |
no outgoing calls
no test coverage detected