-
Notifications
You must be signed in to change notification settings - Fork 3
/
refscript.cabal
263 lines (252 loc) · 9.44 KB
/
refscript.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
name: refscript
version: 0.2.0
Copyright: 2010-14 Regents of the University of California
build-type: Custom
synopsis: Refinement Types for TypeScript
Description: Refinement Types for TypeScript
homepage: https://github.com/UCSD-PL/refscript
license: BSD3
license-file: LICENSE
author: Panagiotis Vekris, Ranjit Jhala
maintainer: Ranjit Jhala <[email protected]>
category: Language
cabal-version: >=1.18
data-files: README.md,
include/prelude.d.ts
ext/tsc-bin/built/local/tsc-refscript.js
Source-Repository this
Tag: 0.1
Type: git
Location: https://github.com/UCSD-PL/refscript
Source-Repository head
Type: git
Location: https://github.com/UCSD-PL/refscript
Executable rsc
Default-language:
Haskell2010
build-depends: base
, data-default
, containers
, pretty
, split
, vector
, bytestring
, text
, aeson
, hashable
, data-default
, directory
, unordered-containers
, filepath
, ansi-terminal
, process
, mtl >= 2.2.1
, syb
, cmdargs
, liquid-fixpoint
, parsec
, transformers
, fgl
, intern
, deepseq
, text-format
, array
, attoparsec
, ascii-progress >= 0.3
, refscript
-- ghc-options: -W -O2
Main-is: Rsc.hs
hs-source-dirs: src
other-modules: Language.Rsc.AST
, Language.Rsc.AST.Annotations
, Language.Rsc.AST.Check
, Language.Rsc.AST.Syntax
, Language.Rsc.Annotations
, Language.Rsc.ClassHierarchy
, Language.Rsc.CmdLine
, Language.Rsc.Core.EitherIO
, Language.Rsc.Core.Env
, Language.Rsc.Core.Files
, Language.Rsc.Environment
, Language.Rsc.Errors
, Language.Rsc.Liquid.Alias
, Language.Rsc.Liquid.CGMonad
, Language.Rsc.Liquid.Checker
, Language.Rsc.Liquid.Constraints
, Language.Rsc.Constraints
, Language.Rsc.Liquid.Environment
, Language.Rsc.Liquid.Qualifiers
, Language.Rsc.Liquid.Types
, Language.Rsc.Liquid.Refinements
, Language.Rsc.Locations
, Language.Rsc.Lookup
, Language.Rsc.Misc
, Language.Rsc.Names
, Language.Rsc.Parser
, Language.Rsc.Parser.Annotations
, Language.Rsc.Parser.Common
, Language.Rsc.Parser.Declarations
, Language.Rsc.Parser.Lexer
, Language.Rsc.Parser.Types
, Language.Rsc.Pretty
, Language.Rsc.Pretty.Annotations
, Language.Rsc.Pretty.Common
, Language.Rsc.Pretty.Errors
, Language.Rsc.Pretty.ClassHierarchy
, Language.Rsc.Pretty.Symbols
, Language.Rsc.Pretty.Module
, Language.Rsc.Pretty.Syntax
, Language.Rsc.Pretty.Types
, Language.Rsc.Program
, Language.Rsc.Symbols
, Language.Rsc.Module
, Language.Rsc.SSA.SSA
, Language.Rsc.SSA.SSAMonad
, Language.Rsc.SystemUtils
, Language.Rsc.Transformations
, Language.Rsc.Traversals
, Language.Rsc.TypeUtilities
, Language.Rsc.Typecheck.Checker
, Language.Rsc.Typecheck.Environment
, Language.Rsc.Typecheck.Sub
, Language.Rsc.Typecheck.Subst
, Language.Rsc.Typecheck.TCMonad
, Language.Rsc.Typecheck.Types
, Language.Rsc.Typecheck.Unify
, Language.Rsc.Types
, Language.Rsc.Visitor
, Paths_refscript
Library
Default-language: Haskell2010
-- ghc-options: -threaded -- -W -O2
-- ghc-options: -threaded -Werror -W -fno-warn-missing-methods
build-depends: base
, containers
, pretty
, split
, vector
, bytestring
, text
, aeson
, hashable
, data-default
, directory
, unordered-containers
, filepath
, ansi-terminal
, process
, mtl >= 2.2.1
, syb
, cmdargs
, liquid-fixpoint
, parsec
, transformers
, fgl
, intern
, deepseq
, text-format
, array
, attoparsec
, ascii-progress >= 0.3
hs-source-dirs: src
Exposed-Modules: Paths_refscript,
Language.Rsc.AST,
Language.Rsc.AST.Annotations,
Language.Rsc.AST.Check,
Language.Rsc.AST.Syntax,
Language.Rsc.ClassHierarchy,
Language.Rsc.Core.EitherIO,
Language.Rsc.Constraints,
Language.Rsc.Environment,
Language.Rsc.Liquid.Alias,
Language.Rsc.Liquid.Constraints,
Language.Rsc.Liquid.Environment,
Language.Rsc.Locations,
Language.Rsc.Names,
Language.Rsc.Module,
Language.Rsc.Symbols,
Language.Rsc.Parser.Annotations,
Language.Rsc.Parser.Common,
Language.Rsc.Parser.Declarations,
Language.Rsc.Parser.Lexer,
Language.Rsc.Parser.Types,
Language.Rsc.Pretty,
Language.Rsc.Pretty.Annotations,
Language.Rsc.Pretty.Module,
Language.Rsc.Pretty.Symbols,
Language.Rsc.Pretty.ClassHierarchy,
Language.Rsc.Pretty.Common,
Language.Rsc.Pretty.Errors,
Language.Rsc.Errors,
Language.Rsc.Core.Files,
Language.Rsc.Types,
Language.Rsc.Core.Env,
Language.Rsc.Misc,
Language.Rsc.Annotations,
Language.Rsc.CmdLine,
Language.Rsc.SSA.SSAMonad,
Language.Rsc.SSA.SSA,
Language.Rsc.Parser,
Language.Rsc.Lookup,
Language.Rsc.Typecheck.Unify,
Language.Rsc.Typecheck.Types,
Language.Rsc.Typecheck.TCMonad,
Language.Rsc.Typecheck.Subst,
Language.Rsc.Typecheck.Checker,
Language.Rsc.Liquid.Checker,
Language.Rsc.Liquid.Types,
Language.Rsc.Liquid.Refinements,
Language.Rsc.Liquid.CGMonad,
Language.Rsc.Liquid.Qualifiers,
Language.Rsc.Pretty.Syntax,
Language.Rsc.Pretty.Types,
Language.Rsc.Program,
Language.Rsc.SystemUtils,
Language.Rsc.Transformations,
Language.Rsc.Traversals,
Language.Rsc.TypeUtilities,
Language.Rsc.Typecheck.Environment,
Language.Rsc.Typecheck.Sub,
Language.Rsc.Visitor
test-suite test
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -O2 -threaded
main-is: test.hs
build-depends: base,
directory,
filepath,
process,
tasty >= 0.10,
tasty-hunit,
tasty-rerun >= 1.1,
text
test-suite bench
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -O2 -threaded
main-is: bench.hs
build-depends: base,
directory,
filepath,
process,
tasty >= 0.10,
tasty-hunit,
tasty-rerun >= 1.1,
text
test-suite regression
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -O2 -threaded
main-is: test.hs
build-depends: base,
directory,
filepath,
process,
tasty >= 0.10,
tasty-hunit,
tasty-rerun >= 1.1,
text