aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/language/compiler/analysis/primitive.lux
blob: 34690690977b714673ba14b79bb0b5d5cb2e391a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
(.module:
  [lux (#- nat int rev)
   [control monad]
   [macro]]
  [// (#+ Analysis Operation)
   [".A" type]
   ["/." //]])

## [Analysers]
(do-template [<name> <type> <tag>]
  [(def: #export (<name> value)
     (-> <type> (Operation Analysis))
     (do ///.Monad<Operation>
       [_ (typeA.infer <type>)]
       (wrap (#//.Primitive (<tag> value)))))]

  [bit  Bit  #//.Bit]
  [nat  Nat  #//.Nat]
  [int  Int  #//.Int]
  [rev  Rev  #//.Rev]
  [frac Frac #//.Frac]
  [text Text #//.Text]
  )

(def: #export unit
  (Operation Analysis)
  (do ///.Monad<Operation>
    [_ (typeA.infer Any)]
    (wrap (#//.Primitive #//.Unit))))