aboutsummaryrefslogtreecommitdiff
path: root/new-luxc/source/luxc/lang/analysis.lux
blob: d9064604ad2da3db1491ad1aed2f760b5d8ffd80 (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 Analysis (List [lp;Pattern Analysis]))
  (#Function Scope Analysis)
  (#Apply Analysis Analysis)
  (#Procedure Ident (List Analysis))
  (#Relative Ref)
  (#Absolute Ident))