-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebdsl-model.cabal
198 lines (188 loc) · 7.1 KB
/
webdsl-model.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
cabal-version: 3.8
name: webdsl-model
version: 0.1.0.0
-- A short (one-line) description of the package.
-- synopsis:
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: Aleksander Wolska
maintainer: [email protected]
-- A copyright notice.
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
library
exposed-modules:
Actions.Effects,
Actions.Framework,
Actions.FrameworkIO,
Actions.Arith,
Actions.Bool,
Actions.Str,
Actions.Syntax,
Actions.Handlers.Cond,
Actions.Handlers.Entity,
Actions.Handlers.Env,
Actions.Handlers.Heap,
Actions.Handlers.Return,
Actions.Modules.Arith.Denotation,
Actions.Modules.Arith.Syntax,
Actions.Modules.Bool.Denotation,
Actions.Modules.Bool.Syntax,
Actions.Modules.Col.Denotation,
Actions.Modules.Col.Syntax,
Actions.Modules.Entity.Denotation,
Actions.Modules.Entity.Syntax,
Actions.Modules.Eval.Denotation,
Actions.Modules.Eval.Syntax,
Actions.Modules.Expr.Denotation,
Actions.Modules.Expr.Syntax,
Actions.Modules.Fun.Denotation,
Actions.Modules.Fun.Syntax,
Actions.Modules.Phases.Syntax,
Actions.Modules.Phases.Denotation,
Actions.Modules.Stmt.Denotation,
Actions.Modules.Stmt.Syntax,
Actions.Modules.Str.Denotation,
Actions.Modules.Str.Syntax,
Actions.Values,
Definitions.Entity.Syntax,
Definitions.Entity.Denotation,
Definitions.Entity.Framework,
Definitions.Fun.Syntax,
Definitions.Fun.Denotation,
Definitions.Fun.Framework,
Definitions.GlobalVars.Syntax,
Definitions.GlobalVars.Denotation,
Definitions.GlobalVars.Effects,
Definitions.GlobalVars.ActionsFramework,
Definitions.GlobalVars.TemplatesFramework,
Definitions.Pages.Syntax,
Definitions.Pages.Denotation,
Definitions.Pages.Framework,
Definitions.Templates.Syntax,
Definitions.Templates.Denotation,
Definitions.Templates.Framework,
Definitions.Program.Syntax,
Definitions.Program.Denotation,
Definitions.Program.Effects,
Definitions.Program.Handlers,
Definitions.Syntax,
PhasesFramework.Program,
PhasesFramework.Framework,
PhasesFramework.Handlers,
PhasesFramework.Databind,
PhasesFramework.Validate,
PhasesFramework.Action,
Templates.Framework,
Templates.FrameworkIO,
Templates.Effects,
Templates.Handlers.Env,
Templates.Handlers.Forms,
Templates.Handlers.Render,
Templates.Handlers.Layout,
Templates.Modules.Attributes.Syntax,
Templates.Modules.Attributes.Denotation,
Templates.Modules.Forms.Syntax,
Templates.Modules.Forms.Denotation,
Templates.Modules.Forms.PhasesDenotation,
Templates.Modules.Layout.Syntax,
Templates.Modules.Layout.Denotation,
Templates.Modules.Lift.Syntax,
Templates.Modules.Lift.Denotation,
Templates.Modules.Page.Syntax,
Templates.Modules.Page.Denotation,
Templates.Modules.Page.PhasesDenotation,
Templates.Modules.Phases.Syntax,
Templates.Modules.Phases.Denotation,
Templates.Modules.Render.Syntax,
Templates.Modules.Render.Denotation,
Templates.Syntax,
Utils,
-- Arith.Syntax, Arith.Denotation,
-- Attributes.Syntax, Attributes.Denotation, Attributes.Effects, Attributes.Handlers,
-- Layout.Syntax,Layout.Denotation, Layout.Effects, Layout.Handlers,
-- Page.Syntax, Page.Denotation,
-- Stmt.Syntax, Stmt.Denotation, Stmt.Effects, Stmt.Handlers,
Syntax,
-- Template.Syntax,
-- Render.Syntax, Render.Denotation,
Utils.Free, Utils.Handler, Utils.Composition,
Utils.Fix, Utils.Denote, Utils.Environment
-- Modules included in this executable, other than Main.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base >=4.18.2.1,
aeson,
bytestring,
containers,
directory,
extra,
tagsoup,
uuid,
utf8-string,
http-types,
hs-source-dirs: src
default-language: Haskell2010
default-extensions: AllowAmbiguousTypes,
DeriveFunctor,
DeriveGeneric,
EmptyCase,
FlexibleContexts,
FlexibleInstances,
FunctionalDependencies,
GADTs,
GeneralizedNewtypeDeriving,
InstanceSigs,
LambdaCase,
MultiParamTypeClasses,
RankNTypes,
ScopedTypeVariables,
TypeApplications,
TypeOperators,
UndecidableInstances
--this might couse problems
test-suite webdsl-tests
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules: Actions.ArithTest,
Actions.ArithBoolTest,
Actions.BoolTest,
Actions.ColTest,
TestSyntax,
Actions.EntityTest,
Actions.ExprTest,
Actions.EvalTest,
Actions.FunTest,
Actions.GlobalVarTest,
Actions.LoopTest,
Actions.StmtTest,
Actions.StrTest,
Templates.FormsTest,
Templates.GlobalVarTest,
Templates.LayoutTest,
Templates.PageTest,
Templates.PhasesTest,
Templates.TemplateTest,
Templates.XmlTest,
ActionsTest,
TemplatesTest
build-depends: base ^>=4.18.2.1,
HUnit ^>=1.6,
containers,
directory,
webdsl-model
hs-source-dirs: test
default-language: Haskell2010
default-extensions: FlexibleContexts,
FlexibleInstances,
InstanceSigs,
MultiParamTypeClasses,
TypeOperators,
TypeApplications
ghc-options: -Wno-missing-fields