()
| 64 | ) |
| 65 | |
| 66 | func (s borderStyle) String() string { |
| 67 | switch s { |
| 68 | case borderBox: |
| 69 | return "box" |
| 70 | case borderRoundBox: |
| 71 | return "roundbox" |
| 72 | case borderOutline: |
| 73 | return "outline" |
| 74 | case borderRoundOutline: |
| 75 | return "roundoutline" |
| 76 | case borderSeparators: |
| 77 | return "separators" |
| 78 | default: |
| 79 | return fmt.Sprintf("borderStyle(%d)", s) |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | var gOpts struct { |
| 84 | anchorfind bool |
nothing calls this directly
no outgoing calls
no test coverage detected