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