blob: 3eabd1d625dc5b99e91880efe42907f7098d9e55 (
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 (List [lp;Pattern Synthesis]))
(#Function Scope Synthesis)
(#Call Synthesis (List Synthesis))
(#Procedure Ident (List Synthesis))
(#Relative Ref)
(#Absolute Ident))
|