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