aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* linting warning shadowingYuchen Pei2022-08-191-1/+1
|
* linting disambiguateYuchen Pei2022-08-191-1/+5
|
* removed a redundant importYuchen Pei2022-08-191-1/+0
|
* removing more (commented out) debugging thingsYuchen Pei2022-08-181-33/+0
|
* removing a debugging functionYuchen Pei2022-08-181-5/+0
|
* more linting of disambiguatingYuchen Pei2022-08-182-20/+18
|
* linting preprocessor and ghcutilsYuchen Pei2022-08-182-46/+50
|
* formatting preprocessorYuchen Pei2022-08-181-119/+137
|
* lintingYuchen Pei2022-08-183-57/+40
| | | | - disambiguate things
* removing CPP from Types and brittany formatting itYuchen Pei2022-08-181-404/+433
|
* minor fixesYuchen Pei2022-06-131-4/+2
|
* clean up typecheckedsourceYuchen Pei2022-06-101-37/+17
| | | | | - fill in holes by returning nothing - commenting out some debugging imports
* removed some redundant pattern matchingsYuchen Pei2022-06-101-4/+0
|
* Fixing some typechecked "holes"Yuchen Pei2022-06-101-6/+98
| | | | | | | | two "holes" - Expanded - ConPat also added some pprTrace for debugging
* removed all CPP macros, and formatted code with brittanyYuchen Pei2022-06-085-3136/+2874
|
* clean up comments etc.Yuchen Pei2022-06-081-98/+1
|
* Clean up codeYuchen Pei2022-06-083-284/+35
|
* fixing HsPragE hole in typecheckedsourceYuchen Pei2022-06-081-9/+5
|
* fixing path resolutionYuchen Pei2022-06-081-2/+4
|
* Fixing problem with indexing a project with multiple packagesYuchen Pei2022-06-071-8/+40
| | | | | | | - it will only index the first package with the same source dir as the -p option, or if no such package exists, index the first package - it will concat map all the modules of all the units of the package to index
* fixing distdirYuchen Pei2022-06-071-57/+66
|
* fixing selectorDocsYuchen Pei2022-06-062-44/+44
|
* packageinfo doneYuchen Pei2022-06-061-74/+76
|
* moduleinfo doneYuchen Pei2022-06-062-63/+41
|
* fixing moduleinfoYuchen Pei2022-06-031-42/+54
|
* typecheckedsources no more warnings except two holesYuchen Pei2022-06-031-211/+49
|
* typecheckedsources no more errors except holesYuchen Pei2022-06-031-428/+224
|
* fixing typecheckedSourceYuchen Pei2022-06-031-93/+104
|
* renamed source doneYuchen Pei2022-06-031-142/+56
|
* keep on hacking renamedYuchen Pei2022-06-022-148/+43
|
* renamed sourceYuchen Pei2022-06-021-58/+26
|
* getting rid of all ghcutils.hs warnings except twoYuchen Pei2022-06-021-90/+41
| | | | | 1. ambiguous names in HCE types 2. orphan ord instances
* fixed ghcutils except warningsYuchen Pei2022-06-021-45/+34
|
* even more ghcutils fixesYuchen Pei2022-06-021-128/+74
|
* more fixes to ghcutilsYuchen Pei2022-06-021-28/+24
|
* fixing more ghcutilsYuchen Pei2022-06-011-106/+63
|
* fixing patsynYuchen Pei2022-05-311-15/+27
|
* porting to ghc9.2.2: fixing ghcutilsYuchen Pei2022-05-261-95/+140
|
* porting to ghc9.2.2: fixing types.hsYuchen Pei2022-05-161-5/+9
|
* Make it compile with GHC-8.8.1 (Stackage nightly-2019-09-28)alexwl2019-09-293-33/+75
|
* Add check for .cabal filealexwl2019-09-021-8/+30
|
* Delete trailing whitespace (#42)Avi Dessauer2019-08-217-284/+284
|
* Fail immediately when a GHC mismatch is detected. Closes #40.alexwl2019-08-031-10/+8
|
* Code cleanup: fix warningsalexwl2019-05-175-32/+59
|
* Add support for GHC 8.6.5alexwl2019-05-081-1/+6
|
* Fix GHC version checkalexwl2019-04-281-51/+16
|
* Add GHC version checkalexwl2019-03-271-2/+72
|
* Add GHC command line options to the debug outputalexwl2019-01-171-2/+4
|
* Add support for GHC 8.6.3alexwl2018-12-235-115/+803
|
* Replace Vector.fromList with Vector.fromListNalexwl2018-12-131-1/+1
| | | | Vector.fromListN allocates less memory and allows to remove the call to Vector.force before compaction ('compact $ Vector.fromList [1,2,3]' crashes, 'compact $ Vector.fromListN 3 [1,2,3]' doesn't crash)