aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/lux/tool/compiler/phase/extension/analysis.lux
blob: 15e525d5d105ba607f1aea587ba23126358b1c61 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(.module:
  [lux #*
   [data
    [collection
     ["." dictionary]]]]
  [////
   [default
    [evaluation (#+ Eval)]]
   [analysis (#+ Bundle)]]
  [/
   ["." common]
   ["." host]])

(def: #export (bundle eval)
  (-> Eval Bundle)
  (dictionary.merge host.bundle
                    (common.bundle eval)))