File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
name : lichen
2
- version : 0.2.6
2
+ version : 0.2.7
3
3
synopsis : Plagiarism Detection and Other Static Analysis
4
4
description : Please see README.md
5
5
homepage : https://github.com/Submitty/AnalysisTools
@@ -65,7 +65,7 @@ library
65
65
executable plagiarism
66
66
hs-source-dirs : app/plagiarism
67
67
main-is : Main.hs
68
- ghc-options : -O2 -Wall
68
+ ghc-options : -O2 -Wall -threaded -rtsopts -with-rtsopts=-N
69
69
build-depends : base
70
70
, lichen
71
71
default-language : Haskell2010
@@ -81,7 +81,7 @@ executable count
81
81
executable diagnostics
82
82
hs-source-dirs : app/diagnostics
83
83
main-is : Main.hs
84
- ghc-options : -O2 -Wall
84
+ ghc-options : -O2 -Wall -threaded -rtsopts -with-rtsopts=-N
85
85
build-depends : base
86
86
, lichen
87
87
default-language : Haskell2010
Original file line number Diff line number Diff line change @@ -52,5 +52,7 @@ counterChoice d Nothing = d
52
52
counterChoice _ (Just " token" ) = counterToken
53
53
counterChoice _ (Just " node" ) = counterNode
54
54
counterChoice _ (Just " call" ) = counterCall
55
+ counterChoice _ (Just " func" ) = counterCall
56
+ counterChoice _ (Just " function" ) = counterCall
55
57
counterChoice _ (Just " depth" ) = counterDepth
56
58
counterChoice _ _ = counterDummy
You can’t perform that action at this time.
0 commit comments