blob: 71073f901ac0f5e092ebf1d41aa4149d17d51c37 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
(;module:
lux
(lux (data [product]))
(.. ["lp" pattern]))
(type: #export #rec Analysis
#Unit
(#Bool Bool)
(#Nat Nat)
(#Int Int)
(#Deg Deg)
(#Real Real)
(#Char Char)
(#Text Text)
(#Variant Nat Bool Analysis)
(#Tuple (List Analysis))
(#Case (List [lp;Pattern Analysis]))
(#Function Scope Analysis)
(#Apply Analysis Analysis)
(#Procedure Ident (List Analysis))
(#Relative Ref)
(#Absolute Ident))
|