diff --git a/SCC-OUTPUT-REPORT.html b/SCC-OUTPUT-REPORT.html index 5ff75266..88c64310 100644 --- a/SCC-OUTPUT-REPORT.html +++ b/SCC-OUTPUT-REPORT.html @@ -13,13 +13,13 @@ Go 27 - 9585 + 9589 1464 447 - 7674 + 7678 1413 - 255732 - 4127 + 255968 + 4131 processor/workers_test.go @@ -63,13 +63,13 @@ processor/processor.go - 676 + 678 142 104 - 430 + 432 94 - 19510 - 440 + 19596 + 442 main.go @@ -130,6 +130,16 @@ 37 4585 97 + + processor/structs.go + + 201 + 21 + 18 + 162 + 17 + 6033 + 141 cmd/badges/main_test.go @@ -140,16 +150,6 @@ 10 4088 106 - - processor/structs.go - - 199 - 21 - 18 - 160 - 17 - 5883 - 139 processor/workers_regression_test.go @@ -240,16 +240,6 @@ 0 2209 35 - - processor/cocomo_test.go - - 37 - 8 - 4 - 25 - 6 - 686 - 23 processor/bloom.go @@ -260,6 +250,16 @@ 2 1062 29 + + processor/cocomo_test.go + + 37 + 8 + 4 + 25 + 6 + 686 + 23 processor/helpers_test.go @@ -294,15 +294,15 @@ Total 27 - 9585 + 9589 1464 447 - 7674 + 7678 1413 - 255732 - 4127 + 255968 + 4131 - Estimated Cost to Develop (organic) $229,545
Estimated Schedule Effort (organic) 7.86 months
Estimated People Required (organic) 2.59
+ Estimated Cost to Develop (organic) $229,670
Estimated Schedule Effort (organic) 7.86 months
Estimated People Required (organic) 2.59
diff --git a/processor/processor.go b/processor/processor.go index 024b3629..130b7fc4 100644 --- a/processor/processor.go +++ b/processor/processor.go @@ -443,7 +443,9 @@ func processLanguageFeature(name string, value Language) { LanguageFeatures[name] = LanguageFeature{ Complexity: complexityTrie, MultiLineComments: mlCommentTrie, + MultiLine: value.MultiLine, SingleLineComments: slCommentTrie, + LineComment: value.LineComment, Strings: stringTrie, Tokens: tokenTrie, Nested: value.NestedMultiLine, diff --git a/processor/structs.go b/processor/structs.go index 2dfffeae..d3ed13bb 100644 --- a/processor/structs.go +++ b/processor/structs.go @@ -43,7 +43,9 @@ type Language struct { type LanguageFeature struct { Complexity *Trie MultiLineComments *Trie + MultiLine [][]string // in case someone needs the actual value SingleLineComments *Trie + LineComment []string // in case someone needs the actual value Strings *Trie Tokens *Trie Nested bool