(context *FormattingContext)
| 197 | } |
| 198 | |
| 199 | func isNotTypeAnnotationContext(context *FormattingContext) bool { |
| 200 | return !isTypeAnnotationContext(context) |
| 201 | } |
| 202 | |
| 203 | func isTypeAnnotationContext(context *FormattingContext) bool { |
| 204 | contextKind := context.contextNode.Kind |
nothing calls this directly
no test coverage detected