(method)
| 209 | return { mapByGroup: mapByGroup, outList: outList }; |
| 210 | } |
| 211 | function normalizeMethod(method) { |
| 212 | if (method == null) { |
| 213 | return 'FIRST'; |
| 214 | } |
| 215 | var methodInternal = method.toUpperCase(); |
| 216 | methodInternal = hasOwn(METHOD_ALIAS, methodInternal) |
| 217 | ? METHOD_ALIAS[methodInternal] |
| 218 | : methodInternal; |
| 219 | assert(hasOwn(METHOD_INTERNAL, methodInternal), "Illegal method " + method + "."); |
| 220 | return methodInternal; |
| 221 | } |
| 222 | var createCollectionResultLine = function (upstream, dataIndex, collectionDimInfoList, groupByDimInfo, groupByVal) { |
| 223 | var newLine = []; |
| 224 | for (var i = 0; i < collectionDimInfoList.length; i++) { |
no test coverage detected
searching dependent graphs…