()
| 848 | } |
| 849 | |
| 850 | func (wb *WindowBase) path() string { |
| 851 | buf := bytes.NewBuffer(nil) |
| 852 | |
| 853 | wb.writePath(buf) |
| 854 | |
| 855 | return buf.String() |
| 856 | } |
| 857 | |
| 858 | // WindowBase simply returns the receiver. |
| 859 | func (wb *WindowBase) AsWindowBase() *WindowBase { |
no test coverage detected