()
| 172 | } |
| 173 | |
| 174 | func (f *funcType) prefixStream() string { |
| 175 | s := "stream" |
| 176 | if isUpper(f.name[0]) { |
| 177 | s = "Stream" |
| 178 | } |
| 179 | return s |
| 180 | } |
| 181 | |
| 182 | func getCallName(ce *ast.CallExpr) (string, string, error) { |
| 183 | callPrefix := "" |
no test coverage detected